@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
}

@media (max-width: 769px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media (min-width: 770px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
}

.container {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 769px) {
  .container {
    width: 90%;
  }
}

main {
  width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 250px);
}

img {
  width: 100%;
}

a:hover {
  cursor: pointer;
}

header {
  width: 100%;
  background-color: #FFF;
  position: fixed;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
header .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
header .header__inner {
  display: flex !important;
  flex-flow: row nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  align-items: stretch;
  height: 96px;
  background-color: #FFF;
}
@media (max-width: 769px) {
  header .header__inner {
    padding: 40px 0;
  }
}
header .header__inner > li {
  width: 155px;
  color: #441313;
  text-align: center;
  border-right: none;
  height: 100%;
  padding-top: 18px;
  position: relative;
}
header .header__inner > li:not(:first-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #441313;
  transition: width .25s ease;
}
header .header__inner > li:hover::before {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 100%;
  height: 22px;
}
header .header__inner > li:not(:first-child):hover::after {
  width: 100%;
}
@media (max-width: 769px) {
  header .header__inner > li {
    border-top: 1px solid #FFF;
    border-right: none;
    width: 80%;
    margin: 0 auto;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    padding-top: 0;
  }
}
header .header__inner > li a {
  color: #441313;
}
header .header__inner > li a:hover {
  opacity: 0.7;
}
header .header__inner > li:first-child {
  width: 220px;
  background-color: #FFF;
  border-left: none;
  border-right: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
}
@media (max-width: 769px) {
  header .header__inner > li:first-child {
    width: 47%;
    padding-top: 0;
    padding-bottom: 20px;
    border-left: none;
    border-top: none;
  }
}
header .header__inner > li:last-of-type {
  margin-right: 50px;
}
@media (max-width: 769px) {
  header .header__inner > li:last-of-type {
    border-bottom: 1px solid #FFF;
  }
}
header .header__inner > li h1 {
  width: 145px;
  margin: 0 auto;
}
@media (max-width: 769px) {
  header .header__inner > li h1 {
    width: auto;
    border-left: none;
  }
}
header .header__inner > li a {
  font-size: 15px;
}
@media (max-width: 769px) {
  header .header__inner > li a {
    font-size: 18px;
  }
}
header .header__inner > li a span {
  font-size: 10px;
  font-family: "Lato", sans-serif;
  color: #999;
}
@media (max-width: 769px) {
  header .header__inner > li a span {
    font-size: 13px;
    color: #D4B8B8;
  }
}
header .header__inner .contact-btn {
  background-color: #FFF;
  border-radius: 30px;
  display: flex;
  width: 250px;
  margin: 15px 20px;
  justify-content: space-around;
  align-items: center;
  color: #441313;
}
@media (max-width: 769px) {
  header .header__inner .contact-btn {

	padding: 16px 0;
    width: 80%;

	margin: 14px 0 18px;
  }
}
header .header__inner .contact-btn:hover {
  background-color: #441313;
  color: #FFF;
  border: 1px solid #FFF;
  padding: -1px;
}
header .header__inner .copyright {
  font-size: 10px;
  color: #FFF;
  font-family: "Lato", sans-serif;
}

header .header__inner > li:first-child a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}
header .header__inner > li:first-child a img {
  max-width: 100%;
  height: auto;
  display: block;
  padding: 16px;
}
header .header__inner > li a i:first-child {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: #441313;
}
header .header__inner .header__inner--small {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #FFF !important;
  border: 1px solid #e8d8d8;
  box-shadow: 0 6px 20px rgba(0,0,0,.10);
  border-radius: 8px;
  min-width: 260px;
  z-index: 200;
  padding: 4px 0;
  overflow: hidden;
}
header .header__inner .header__inner--small::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 50px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid #e8d8d8;
}
header .header__inner .header__inner--small::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 52px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 7px solid #FFF;
}
header .header__inner > li:hover .header__inner--small {
  display: block;
}
.header__inner--small li {
  width: 100% !important;
  background-color: #FFF !important;
  text-align: left;
  border-bottom: 1px solid #f0e8e8;
  padding: 0 !important;
  padding-top: 0 !important;
}
.header__inner--small li:last-child {
  border-bottom: none;
}
.header__inner--small li a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px !important;
  color: #441313 !important;
  font-size: 14px !important;
  font-weight: 600;
  white-space: nowrap;
  background-color: #FFF !important;
  opacity: 1 !important;
}
.header__inner--small li a i {
  display: inline !important;
  font-size: 11px !important;
  color: #9b7b7b !important;
  margin-bottom: 0 !important;
}
.header__inner--small li:hover {
  background-color: #faf4f4 !important;
}
.header__inner--small li:hover a {
  background-color: #faf4f4 !important;
}

header .sp .header__nav {
  display: flex;
  background-color: #FFF;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  width: 100%;
}
header .sp .header__logo {
  width: 92px;
}
header .sp .header__logo img {
  margin-left: 4px;
  height: 36px;
  width: auto;
}

header .sp #header__toggle {
  position: fixed;

  right: 5%;
  z-index: 100;
  width: 25px;
  height: 19px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
header .sp #header__toggle span {
  position: absolute;
  left: 0;
  width: 25px;
  height: 2px;
  background-color: #441313;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
header .sp #header__toggle span:nth-of-type(1) {
  top: 0;
}
header .sp #header__toggle span:nth-of-type(2) {
  top: 8px;
}
header .sp #header__toggle span:nth-of-type(3) {
  bottom: 0;
}
header .sp #header__toggle.is-open span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  background-color: #FFF;
}
header .sp #header__toggle.is-open span:nth-of-type(2) {
  opacity: 0;
}
header .sp #header__toggle.is-open span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(-9deg);
  transform: translateY(-9px) rotate(-45deg);
  background-color: #FFF;
}
header .sp .header__inner {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #441313;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s linear;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
header .sp .header__inner.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
header .sp .header__inner > li:first-child {
  background-color: transparent;
}
header .sp .header__inner > li:first-child img {
  transform: scale(1.2);
  transform-origin: center center;
}
header .sp .header__inner li {
  color: #FFF;
}
header .sp .header__inner li a {
  color: #FFF !important;
}
header .sp .header__inner li a span {
  color: rgba(255,255,255,0.6) !important;
}
header .sp .header__inner li a i {
  color: #FFF !important;
}
header .header-under {
  border-bottom: solid 1px #441313;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 2;
  height: 48px;
  background: #FFF;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.bread-list {
  margin-top: 12px;
}
.bread-list ul {
  display: flex;
	flex-wrap: wrap;
}

.bread-list li:last-child {
    flex: 1;
    min-width: 0;
}

.bread-list ul li {
  font-size: 12px;
}
.bread-list ul li:after {
  content: "　>　";
}
.bread-list ul li:last-child:after {
  content: none;
}

h2.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 26px;
  font-weight: 900;
  color: #441313;
  letter-spacing: .05em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
}
h2.section-title::before,
h2.section-title::after {
  content: "";
  flex: 1;
  max-width: 70px;
  height: 2px;
  background: #441313;
  display: block;
  border: none;
  margin: 0;
}
@media (max-width: 769px) {
  h2.section-title {
    font-size: 20px;
    gap: 12px;
    margin-bottom: 30px;
  }
  h2.section-title::before,
  h2.section-title::after {
    max-width: 40px;
  }
}

h1.page-title {
  font-size: 48px;
  font-weight: 900;
  padding: 0 40px 12px;
  text-align: center;
  line-height: 1.15;
  color: #2c0e0e;
  letter-spacing: .06em;
}
@media (max-width: 769px) {
  h1.page-title {
    font-size: 28px;
    line-height: 1.3;
    padding: 0 10px 8px;
  }
}
h1.page-title span {
  font-size: 10px;
  font-family: "Lato", sans-serif;
  line-height: 12px;
}

#top .mv {
  background-image: url(../img/mv_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 724px;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 769px) {
  #top .mv {
    margin-top: 0px;
  }
}
@media (max-width: 540px) {
  #top .mv {
    background-image: url(../img/mv_bg_sp.png);
    background-size: contain;
    background-position: top center;
    height: auto;
  }
}
#top .mv__catch .mv__catch-area {
  width: 47%;
  margin: 0 0 0 auto;
  padding: 100px 0;
}
@media (max-width: 769px) {
  #top .mv__catch .mv__catch-area {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
  }
}
@media (max-width: 540px) {
  #top .mv__catch .mv__catch-area {
    position: inherit;
    transform: translateY(0);
    width: 95%;
    margin: 0 auto;
    padding: 220px 0 0px;
  }
}
#top .mv__catch .mv__catch-area .mv__catch-top {
  background-color: #441313;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 7px;
}
#top .mv__catch .mv__catch-area .mv__catch-top h2 {
  font-size: 22px;
  font-weight: bold;
  color: #FFF;
}
@media (max-width: 769px) {
  #top .mv__catch .mv__catch-area .mv__catch-top h2 {
    font-size: 18px;
  }
}
#top .mv__catch .mv__catch-area .mv__catch-top div {
  width: 30px;
}
@media (max-width: 769px) {
  #top .mv__catch .mv__catch-area .mv__catch-top div {
    width: 25px;
  }
}
#top .mv__catch .mv__catch-area ul {
  padding: 15px 0;
}
#top .mv__catch .mv__catch-area ul li {
  font-size: 40px;
  font-weight: bold;
  line-height: 60px;
}
@media (max-width: 769px) {
  #top .mv__catch .mv__catch-area ul li {
    font-size: 28px;
    line-height: 41px;
  }
}
#top .mv__catch .mv__catch-area ul li::before {
  content: "";
  background-image: url(../img/list-dotted.png);
  background-size: 22px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 22px 24px;
}
@media (max-width: 769px) {
  #top .mv__catch .mv__catch-area ul li::before {
    background-size: 16px;
    padding: 16px;
  }
}
#top .mv__catch .mv__catch-area .mv__catch-bottom {
  padding: 15px 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  transform: scale(1.1);
  transform-origin: left center;
}
#top .mv__catch .mv__catch-area .mv__catch-bottom h2 {
  text-align: left;
}
#top .mv__catch .mv__catch-area .mv__catch-bottom .mv__char-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  width: 1.35em;
  height: 1.35em;
  padding: 6px;
  background-color: #fefdfd;
  transform: scale(0.95);
}
#top .mv__catch .mv__catch-area .mv__catch-bottom .cycle {
  background-color: #441313;
  border-radius: 50%;
  width: 97px;
  height: 97px;
  position: relative;
}
@media (max-width: 769px) {
  #top .mv__catch .mv__catch-area .mv__catch-bottom .cycle {
    width: 70px;
    height: 70px;
  }
}
#top .mv__catch .mv__catch-area .mv__catch-bottom .cycle p {
  color: #FFF;
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 769px) {
  #top .mv__catch .mv__catch-area .mv__catch-bottom .cycle p {
    font-size: 18px;
    width: 100%;
  }
}
#top .mv__catch .mv__catch-area .mv__catch-bottom h2 {
  font-size: 30px;
  color: #441313;
  font-weight: bold;
}
@media (max-width: 769px) {
  #top .mv__catch .mv__catch-area .mv__catch-bottom h2 {
    font-size: 20px;
  }
}
#top .mv__catch .mv__catch-area .mv__catch-bottom h2 span {
  font-weight: 900;
}

#top mark.mv__mark,
#top .mv__catch .mv__catch-area .mv__catch-bottom h2 mark.mv__mark {
  background-color: #441313 !important;
  color: #FFF;
  display: block;
  padding: 2px 8px;
  font-size: 24px;
}
@media (max-width: 769px) {
  #top mark.mv__mark,
  #top .mv__catch .mv__catch-area .mv__catch-bottom h2 mark.mv__mark {
    font-size: 14px;
  }
}
#top .mv__catch .mv__catch-area .mv__catch-bottom h2 .mv__mark-span {
  display: block;
  font-size: 84px !important;
  white-space: nowrap;
}
#top .mv__catch .mv__catch-area .mv__catch-bottom h2 .mv__mark-span .mv__mark-sub {
  font-size: 54px !important;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 10px;
  margin-left: 6px;
}
#top .mv__catch .mv__catch-area .mv__catch-bottom h2 .mv__catch-tagline {
  display: block;
  width: 230px;
  margin-bottom: 0px;
  margin-left: -20px;
  filter: drop-shadow(-1px -1px 0 #FFF)
          drop-shadow(1px -1px 0 #FFF)
          drop-shadow(-1px 1px 0 #FFF)
          drop-shadow(1px 1px 0 #FFF);
}
@media (max-width: 769px) {
  #top .mv__catch .mv__catch-area .mv__catch-bottom h2 .mv__mark-span {
    font-size: 22px !important;
  }
  #top .mv__catch .mv__catch-area .mv__catch-bottom h2 .mv__mark-span .mv__mark-sub {
    font-size: 18px !important;
  }
}
@media (max-width: 540px) {
  #top .mv__catch .mv__catch-area .mv__catch-bottom h2 .mv__catch-tagline {
    width: 135px;
    margin-left: 0;
  }
  #top .mv__catch .mv__catch-area .mv__catch-bottom h2 .mv__mark-span .mv__mark-sub {
    margin-left: 0;
  }
  #top .mv__catch .mv__catch-area .mv__catch-bottom {
    transform-origin: center center;
    justify-content: center;
  }
  #top .mv__catch .mv__catch-area .mv__catch-bottom .cycle {
    width: 58px;
    height: 58px;
  }
  #top .mv__catch .mv__catch-area .mv__catch-bottom .cycle p {
    font-size: 14px;
  }
  #top .mv__catch .mv__catch-area .mv__catch-bottom h2 {
    font-size: 16px;
    text-shadow: -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px 1px 0 #FFF, 0 -1px 0 #FFF, 0 1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  }
  #top mark.mv__mark,
  #top .mv__catch .mv__catch-area .mv__catch-bottom h2 mark.mv__mark {
    font-size: 20px;
    text-shadow: none;
  }
  #top .mv__catch .mv__catch-area .mv__catch-bottom h2 .mv__mark-span {
    font-size: 50px !important;
  }
  #top .mv__catch .mv__catch-area .mv__catch-bottom h2 .mv__mark-span .mv__mark-sub {
    font-size: 34px !important;
    margin-bottom: 5px;
    margin-left: 0;
  }
}
#top .mv__news {
  background-color: rgba(68, 19, 19, 0.6);
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  height: 70px;
}
@media (max-width: 769px) {
  #top .mv__news {
    bottom: -100px;
    height: 100px;
  }
}
#top .mv__news a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 769px) {
  #top .mv__news a {
    width: 95%;
  }
}
#top .mv__news a p {
  color: #FFF;
  font-size: 15px;
  text-align: left;
}
@media (max-width: 769px) {
  #top .mv__news a p {
    font-size: 14px;
    line-height: 25px;
  }
}
#top .mv__news a p:first-child {
  border-right: 1px solid #FFF;
  padding: 5px 40px 5px 0px;
}
@media (max-width: 769px) {
  #top .mv__news a p:first-child {
    padding: 5px 25px 5px 0px;
  }
}
#top .mv__news a p:last-child {
  padding: 5px 0px 5px 40px;
}
@media (max-width: 769px) {
  #top .mv__news a p:last-child {
    padding: 5px 0px 5px 25px;
  }
}
#top .mv__news a:hover {
  opacity: 0.5;
}

#top .test-area {
  padding: 40px 0;
  background-color: #F5F5F5;
}
@media (max-width: 769px) {
  #top .test-area {
    padding: 150px 0 70px;
  }
}
#top .test-area .container {
  background: #FFF;
  padding: 40px 70px;
}
@media (max-width: 769px) {
  #top .test-area .container {
    padding: 30px 15px;
  }
}
#top .test-area .container h2 {
  font-size: 32px;
  text-align: center;
  font-weight: bold;
  color: #441313;
  margin-bottom: 45px;
}
@media (max-width: 769px) {
  #top .test-area .container h2 {
    font-size: 21px;
    margin-bottom: 23px;
  }
}
#top .test-area__box {
  width: 100%;
  margin-top: 60px;
  background: #F6F3F3;
}
#top .test-area__box h3 {
  color: #FFF;
  font-size: 20px;
  padding: 12px 0;
  background: #441313;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 769px) {
  #top .test-area__box h3 {
    font-size: 15px;
  }
}
#top .test-area__box-inner {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top .test-area__box-inner .schedule {
  width: 45%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 769px) {
  #top .test-area__box-inner .schedule {
    flex-wrap: wrap;
    width: 100%;
  }
}
#top .test-area__box-inner .schedule .next-date {
  background: #FFF;
  height: 120px;
  width: 55%;
}
@media (max-width: 769px) {
  #top .test-area__box-inner .schedule .next-date {
    width: 100%;
    margin-bottom: 10px;
    height: auto;
  }
}
#top .test-area__box-inner .schedule .next-date .title {
  background: #441313;
  padding: 10px 0;
  color: #FFF;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 769px) {
  #top .test-area__box-inner .schedule .next-date .title {
    padding: 5px 0;
  }
}
#top .test-area__box-inner .schedule .next-date .date {
  display: flex;
  height: 80px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  background: #FFF;
}
#top .test-area__box-inner .schedule .next-date .date .cycle {
  background-color: #441313;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  position: relative;
}
#top .test-area__box-inner .schedule .next-date .date .cycle p {
  color: #FFF;
  font-size: 14px;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#top .test-area__box-inner .schedule .next-date .date p {
  font-size: 12px;
  font-weight: bold;
}
#top .test-area__box-inner .schedule .next-date .date p span {
  font-size: 34px;
}
#top .test-area__box-inner .schedule .closing-date {
  background: #FFF;
  width: 40%;
  height: 120px;
}
@media (max-width: 769px) {
  #top .test-area__box-inner .schedule .closing-date {
    width: 100%;
    height: auto;
  }
}
#top .test-area__box-inner .schedule .closing-date .title {
  background: #E6E6E6;
  padding: 10px 0;
  color: #441313;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 769px) {
  #top .test-area__box-inner .schedule .closing-date .title {
    padding: 5px 0;
  }
}
#top .test-area__box-inner .schedule .closing-date .date {
  padding: 10px 0;
  height: 80px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top .test-area__box-inner .schedule .closing-date .date p {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
#top .test-area__box-inner .schedule .closing-date .date p span {
  font-size: 34px;
}
#top .test-area__box-inner .summary {
  width: 53%;
}
@media (max-width: 769px) {
  #top .test-area__box-inner .summary {
    width: 100%;
    margin-top: 20px;
  }
}
#top .test-area__box-inner .summary .title {
  font-size: 15px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: solid 2px #441313;
}
#top .test-area__box-inner .summary .target {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
#top .test-area__box-inner .summary .target span {
  background: #441313;
  padding: 5px 10px;
  color: #FFF;
  font-size: 15px;
}
#top .test-area__box-inner .summary .target p {
  font-size: 15px;
}
#top .test-area__box-inner .summary .text {
  padding-top: 10px;
  font-size: 15px;
  line-height: 25px;
}
#top .test-area__box-inner .contact-btn {
  background-color: #441313;
  border-radius: 22px;
  margin: 30px auto 0;
  text-align: center;
  width: 420px;
  display: block;
  color: #FFF;
  padding: 12px 0;
  position: relative;
}
@media (max-width: 769px) {
  #top .test-area__box-inner .contact-btn {
    border-radius: 50px;
    width: 100% !important;
    padding: 15px 0;
  }
}
#top .test-area__box-inner .contact-btn:hover {
  background-color: #FFF;
  color: #441313;
  border: 1px solid #441313;
  padding: 11px 0;
}
#top .test-area__box-inner .contact-btn p {
  text-align: center;
}
@media (max-width: 769px) {
  #top .test-area__box-inner .contact-btn p {
    font-size: 14px;
  }
}
#top .test-area__box-inner .contact-btn i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

#top .news {
  padding: 65px 0 100px;
}
#top .news .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 769px) {
  #top .news .container {
    flex-wrap: wrap;
  }
}
#top .news h2 {
  font-size: 18px;
  text-align: left;
  width: 30%;
}
@media (max-width: 769px) {
  #top .news h2 {
    width: 100%;
  }
}
#top .news h2 span {
  font-size: 10px;
  font-family: "Lato", sans-serif;
}
#top .news ul {
  width: 55%;
}
@media (max-width: 769px) {
  #top .news ul {
    width: 100%;
    margin-top: 25px;
  }
}
#top .news ul li {
  border-bottom: solid 1px #E6E6E6;
  padding: 15px 0;
}
#top .news ul li a {
  display: flex;
  justify-content: space-between;
  gap: 20%;
}
@media (max-width: 769px) {
  #top .news ul li a {
    align-items: center;
  }
}
#top .news ul li a:hover {
  opacity: 0.5;
}
#top .news ul li a p {
  font-size: 15px;
}
#top .news ul li a p:first-child {
  width: 25%;
}
#top .news ul li a p:last-child {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  width: 70%;
}
#top .news .more {
  width: 15%;
  margin-bottom: -40px;
  align-self: flex-end;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 769px) {
  #top .news .more {
    width: 100%;
    text-align: right;
  }
}
#top .news .more:hover {
  opacity: 0.5;
}

#exam-page main {
  margin-top: 120px;
}
@media (max-width: 769px) {
  #exam-page main {
    margin-top: 96px;
  }
}

#exam-page .about {
  padding: 60px 0 80px;
  background: #FFF;
  position: relative;
  overflow: hidden;
}
#exam-page .about::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 360px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 72'%3E%3Cpath d='M30 4L54 16V40C54 55 42 66 30 70C18 66 6 55 6 40V16L30 4Z' fill='%23441313'/%3E%3Cpath d='M30 4L54 16V40C54 55 42 66 30 70C18 66 6 55 6 40V16L30 4Z' fill='none' stroke='%23fff' stroke-width='1.5' opacity='.5'/%3E%3Cpath d='M30 10L48 20V38C48 51 40 60 30 64C20 60 12 51 12 38V20L30 10Z' fill='none' stroke='%23fff' stroke-width='1' opacity='.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .07;
  pointer-events: none;
  z-index: 0;
}
#exam-page .about .container {
  text-align: center;
  max-width: 720px;
  position: relative;
  z-index: 1;
}
#exam-page .about .container p {
  text-align: center;
  font-size: 15px;
  margin-top: 14px;
  line-height: 1.8;
  color: #888;
}
/* サブタイトル（h1直後の最初のp） */
#exam-page .about .container h1 + p {
  font-size: 17px;
  color: #441313;
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width: 769px) {
  #exam-page .about .container p {
    font-size: 14px;
  }
  #exam-page .about .container h1 + p {
    font-size: 15px;
  }
}
#exam-page .about .container .subject {
  color: #FFF;
  background-color: #441313;
  display: inline-block;
  padding: 6px 24px;
  font-size: 16px;
  font-weight: 700;
  margin: 16px auto 0;
  border-radius: 999px;
  letter-spacing: .05em;
}
@media (max-width: 769px) {
  #exam-page .about .container .subject {
    font-size: 14px;
    padding: 5px 18px;
  }
}

#exam-page .feature {
  padding: 70px 0 90px;
  background-color: #F4F4F4;
}
@media (max-width: 769px) {
  #exam-page .feature {
    padding: 0 0 45px;
  }
}
#exam-page .feature__list {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 769px) {
  #exam-page .feature__list {
    flex-wrap: wrap;
    gap: 30px;
  }
}
#exam-page .feature__list li {
  width: 32%;
  background-size: 320px;
  background-repeat: no-repeat;
  height: 320px;
  position: relative;
  background-size: cover;

}
@media (max-width: 769px) {
  #exam-page .feature__list li {
    width: 100%;
  }
}
#exam-page .feature__list li:first-child {
  background-image: url(../img/feature1.png);
}
#exam-page .feature__list li:nth-child(2) {
  background-image: url(../img/feature2.png);
}
#exam-page .feature__list li:last-child {
  background-image: url(../img/feature3.png);
}
#exam-page .feature__list li p {
  font-size: 24px;
  line-height: 37px;
  color: #FFF;
  padding: 35px 30px;
}
#exam-page .feature__list li .modal-btn {
  width: 38px;
  position: absolute;
  bottom: 16px;
  right: 25px;
}
#exam-page .feature__list li .js-modal__inner {
  position: fixed;
  width: 910px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}
@media (max-width: 769px) {
  #exam-page .feature__list li .js-modal__inner {
    width: 80%;
    transform: translate(-50%, -50%);
    left: 50%;
  }
}
#exam-page .feature__list li .js-modal__inner .feature__inner {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 50px;
}
@media (max-width: 769px) {
  #exam-page .feature__list li .js-modal__inner .feature__inner {
    flex-wrap: wrap;
    width: 100%;
  }
}
#exam-page .feature__list li .js-modal__inner .feature__inner .image {
  min-width: 320px;
}
@media (max-width: 769px) {
  #exam-page .feature__list li .js-modal__inner .feature__inner .image {
    width: 100%;
    min-width: auto;
  }
}
#exam-page .feature__list li .js-modal__inner .feature__inner p {
  font-size: 15px;
  line-height: 35px;
  color: #FFF;
  padding: 0;
  width: 680px;
}
@media (max-width: 769px) {
  #exam-page .feature__list li .js-modal__inner .feature__inner p {
    font-size: 14px;
    line-height: 25px;
    width: 100%;
  }
}
#exam-page .feature__list li .js-modal__inner .js-modal__close {
  width: 38px;
  position: absolute;
  top: -50px;
  right: -50px;
}
@media (max-width: 769px) {
  #exam-page .feature__list li .js-modal__inner .js-modal__close {
    right: 0px;
  }
}
@media (max-width: 769px) {
  #exam-page .feature__list li .js-modal__inner {
    flex-wrap: wrap;
  }
}
#exam-page .feature__list li .js-modal__inner.modal-open {
  opacity: 1;
  visibility: visible;
}
#exam-page .feature .js-modal__overlay {
  height: 100%;
  background: #441313;
  position: fixed;
  inset: 0;
  margin: 0 auto;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#exam-page .feature .js-modal__overlay.modal-open {
  opacity: 1;
  visibility: visible;
}

#exam-page .sheet {
  padding: 50px 0 70px;
  background-color: #f5f3f3;
}
@media (max-width: 769px) {
  #exam-page .sheet {
    padding: 40px 0 50px;
  }
}
/* === sheet POINT cards — 縦並び・横分割レイアウト === */
#exam-page .sheet__area {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

#exam-page .sheet__box {
  width: 100%;
  border: 2px solid #e0d4d2;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(68,19,19,.09);
  overflow: hidden;
}

/* 内部2分割：テキストLEFT ＋ 画像RIGHT */
#exam-page .sheet__box-inner {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
}

/* 画像エリア */
#exam-page .sheet__box-img {
  width: 44%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
#exam-page .sheet__box-img img {
  width: calc(100% - 32px);
  height: auto;
  margin: 16px;
  object-fit: unset;
  display: block;
  border-radius: 6px;
  border: 2px solid #e0d4d2;
}
#exam-page .sheet__box-img .subject-3 {
  position: absolute;
  top: 0; left: 0;
  background: #441313;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  z-index: 1;
}

/* テキストエリア */
#exam-page .sheet__box-text {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* POINT N バッジ */
#exam-page .sheet__box .point-label {
  display: inline-block;
  width: auto;
  background: #441313;
  color: #FFF;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 4px;
  letter-spacing: .12em;
  margin-bottom: 14px;
}

/* タイトル */
#exam-page .sheet__box h3 {
  color: #441313;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 16px;
  padding: 0 0 14px;
  border-bottom: 2px solid #f0e8e8;
  text-align: left;
  min-height: unset;
  display: block;
  width: auto;
  justify-content: unset;
  align-items: unset;
}
@media (min-width: 769px) {
  #exam-page .sheet__box h3 br {
    display: none;
  }
}

/* 説明文 */
#exam-page .sheet__box .text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  padding: 0;
}

/* fukidashi（診断シート項目） */
#exam-page .sheet__box .fukidashi {
  background: #f6f3f3;
  position: relative;
  margin: 14px 0 0;
  padding: 13px 14px 13px 22px;
  border-radius: 8px;
  border-left: 3px solid #441313;
}
#exam-page .sheet__box .fukidashi .cycle {
  background: #441313;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  color: #FFF;
  position: absolute;
  top: -10px; left: -13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  padding: 0;
}
#exam-page .sheet__box .fukidashi div h4 {
  font-size: 15px;
  font-weight: 700;
  color: #2c0e0e;
}
#exam-page .sheet__box .fukidashi div p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin-top: 5px;
}

/* SP */
@media (max-width: 769px) {
  #exam-page .sheet__box-inner {
    flex-direction: column;
    min-height: unset;
  }
  /* sheet__box-text を透過させて子要素を flex item に昇格 */
  #exam-page .sheet__box-text {
    display: contents;
  }
  /* 並び順: point(1) → h3(2) → img(3) → text(4) */
  #exam-page .sheet__box .point-label {
    order: 1;
    font-size: 12px;
    margin: 20px 18px 10px;
    display: inline-block;
    width: fit-content;
  }
  #exam-page .sheet__box h3 {
    order: 2;
    font-size: 20px;
    margin: 0 18px 14px;
    padding-bottom: 12px;
  }
  #exam-page .sheet__box-img {
    order: 3;
    width: 100%;
    height: auto;
    margin: 16px 0;
  }
  #exam-page .sheet__box-img img {
    width: calc(100% - 32px);
    height: auto;
    margin: 0 16px;
    object-fit: unset;
    border: 2px solid #e0d4d2;
    border-radius: 6px;
  }
  #exam-page .sheet__box .text {
    order: 4;
    font-size: 14px;
    padding: 14px 18px 26px;
  }
}
.marker_yellow {
  background-color: #FFFF66;
}

#exam-page .jitsuryoku {
  padding: 0 0 90px;
  background-color: #F4F4F4;
}
#exam-page .jitsuryoku p {
  font-size: 15px;
  line-height: 37px;
  text-align: center;
}
@media (max-width: 769px) {
  #exam-page .jitsuryoku p {
    font-size: 14px;
    line-height: 25px;
  }
}
#exam-page .jitsuryoku div {
  width: 660px;
  margin: 50px auto 0;
}
@media (max-width: 769px) {
  #exam-page .jitsuryoku div {
    width: 100%;
  }
}

#exam-page .section-title {
  text-align: center;
  padding-top: 80px;
}
@media (max-width: 769px) {
  #exam-page .section-title {
    padding-top: 35px;
  }
}
#exam-page .section-title h2 {
  font-size: 27px;
  line-height: 40px;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 769px) {
  #exam-page .section-title h2 {
    font-size: 25px;
    line-height: 33px;
    margin-bottom: 35px;
  }
}
#exam-page .section-title h2::after {
  content: "";
  position: absolute;
  border: solid 4px #E33F7B;
  text-align: center;
  width: 90px;
  display: inline-block;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 769px) {
  #exam-page .section-title h2::after {
    border: solid 2px #E33F7B;
    width: 75px;
    bottom: -15px;
  }
}
#exam-page .section-title p {
  font-size: 17px;
  line-height: 26px;
  text-align: center;
}
@media (max-width: 769px) {
  #exam-page .section-title p {
    font-size: 14px;
    line-height: 23px;
  }
}

#exam-page .flow {
  padding: 60px 0 90px;
}
@media (max-width: 769px) {
  #exam-page .flow__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#exam-page .flow__step-bar {
  display: flex;
  width: 100%;
  height: 36px;
  align-items: center;
  position: relative;
  margin-bottom: 16px;
}
/* 横線 */
#exam-page .flow__step-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #c8b0b0;
  transform: translateY(-50%);
  z-index: 0;
}
/* 中央ドット */
#exam-page .flow__step-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: #441313;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (max-width: 769px) {
  #exam-page .flow__step-bar {
    display: none;
  }
}
#exam-page .flow__step-bar div {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* step-bar 画像は非表示（CSS置換） */
#exam-page .flow__step-bar div img {
  display: none;
}
/* 左端ドット */
#exam-page .flow__step-bar div:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 9px;
  background: #441313;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
/* STEP1 バッジ */
#exam-page .flow__step-bar div:first-child::after {
  content: "STEP1";
  position: relative;
  z-index: 2;
  background: #441313;
  color: #FFF;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 20px;
  border-radius: 999px;
  letter-spacing: .1em;
}
/* STEP2 バッジ */
#exam-page .flow__step-bar div:last-child::before {
  content: "STEP2";
  position: relative;
  z-index: 2;
  background: #441313;
  color: #FFF;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 20px;
  border-radius: 999px;
  letter-spacing: .1em;
}
/* 右端ドット */
#exam-page .flow__step-bar div:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 9px;
  height: 9px;
  background: #441313;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#exam-page .flow__list-pc {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  counter-reset: flow-step;
}
@media (max-width: 769px) {
  #exam-page .flow__list-pc {
    flex-wrap: wrap;
    gap: 20px;
  }
}
#exam-page .flow__list-pc li {
  width: 23%;
  display: flex;
  flex-direction: column;
  background: #faf6f4;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding-top: 48px;
  counter-increment: flow-step;
}
#exam-page .flow__list-pc li::before {
  content: counter(flow-step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  min-width: 50px;
  height: 42px;
  padding: 0 12px;
  background: #441313;
  color: #FFF;
  border-radius: 0 0 8px 0;
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -.02em;
}
@media (max-width: 769px) {
  #exam-page .flow__list-pc li {
    width: 100%;
    margin-top: 0;
  }
}
#exam-page .flow__list-pc li > p {
  font-size: 18px;
  font-weight: 800;
  padding: 14px 14px 14px;
  text-align: center;
  color: #2c0e0e;
  border-bottom: 1px solid #ecddd8;
  margin-bottom: 0;
  line-height: 1.5;
}
@media (max-width: 769px) {
  #exam-page .flow__list-pc li > p {
    font-size: 16px;
  }
}
#exam-page .flow__list-pc li .flow__box {
  background: transparent;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 14px 18px;
}
#exam-page .flow__list-pc li .flow__box .image {
  width: 76px;
  margin: 4px auto 2px;
}
#exam-page .flow__list-pc li .flow__box p {
  font-size: 12px;
  line-height: 1.75;
  font-weight: normal;
  color: #555;
}
#exam-page .flow__list-pc li .flow__box > p {
  padding: 0;
  text-align: left;
}
#exam-page .flow__list-pc li .flow__box p span {
  font-size: 11px;
  line-height: 1.5;
  padding-top: 4px;
  display: inline-block;
}
@media (max-width: 769px) {
  #exam-page .flow__list-pc li .flow__box p {
    font-size: 14px;
  }
}
#exam-page .flow__list-pc li .flow__box a {
  width: 100%;
  background: #441313;
  border-radius: 999px;
  display: block;
  margin: auto 0 0;
  text-decoration: none;
  transition: opacity .2s;
}
#exam-page .flow__list-pc li .flow__box a:hover {
  opacity: .82;
}
#exam-page .flow__list-pc li .flow__box a p {
  font-weight: 700;
  color: #FFF;
  padding: 10px 8px;
  font-size: 12px;
  text-align: center;
  line-height: 1.4;
  color: #FFF;
}
@media (max-width: 769px) {
  #exam-page .flow__list-pc li .flow__box a p {
    font-size: 14px;
    padding: 13px 8px;
  }
}
#exam-page .flow__list-pc li:last-child .flow__box {
  justify-content: flex-start;
}
#exam-page .flow__list-pc li .js-modal__inner {
  position: fixed;

	width:100%;


	margin-top: 100px;

	top:0;
  left: 50%;

	transform: translate(-50%, 0%);
  z-index: 21;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}
@media (max-width: 769px) {
  #exam-page .flow__list-pc li .js-modal__inner {

	  margin-top: 40px;
  }
}
#exam-page .flow__list-pc li .js-modal__inner .flow__inner {
  position: relative;
  gap: 50px;

	    width: 700px;
    margin-inline: auto;
	    margin-top: 40px;

  max-height: calc(100dvh - 200px);
  overflow-y: auto;
  padding-inline: 20px;
}
@media (max-width: 769px) {
  #exam-page .flow__list-pc li .js-modal__inner .flow__inner {
  gap: 0px;
	  height: 80dvh;

	  padding-inline:20px;
    overflow: scroll;
	  width:100%;
}
}

#exam-page .flow__list-pc li .js-modal__inner  h3 {
  text-align: center;
  font-size: 28px;
  line-height: 35px;

    color: #FFF;
	padding-top:10px;
	padding-bottom: 10px;
	background:#441313;


}

@media (max-width: 769px) {

	#exam-page .flow__list-pc li .js-modal__inner  h3 {

	font-size: 20px;
		margin-top:26px;
}
}

#exam-page .flow__list-pc li .js-modal__inner  h4 {
  text-align: center;
  font-size: 20px;
  line-height: 26px;

    color: #FFF;
	padding-top:10px;
	padding-bottom: 10px;
	background:#441313;

}

@media (max-width: 769px) {
	#exam-page .flow__list-pc li .js-modal__inner  h4 {
	font-size: 20px;
		margin-top:0px;
		width:100%;
			display:flex;
	align-items:center;
		justify-content:center;
		padding-block:10px;
		height:fit-content;
}
}

#exam-page .flow__list-pc li .js-modal__inner .flow__inner p {

	font-size: 18px;
  line-height: 27px;

	color: #333;
  padding: 0;
  text-align: left;
}
#exam-page .flow__list-pc li .js-modal__inner .flow__inner h4 + p {
  margin-top: 16px;
}
#exam-page .flow__list-pc li .js-modal__inner .flow__inner p span {

}
#exam-page .flow__list-pc li .js-modal__inner .flow__inner .image {
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 769px) {
#exam-page .flow__list-pc li .js-modal__inner .flow__inner .image {
  width: 100%;
  margin-top: 40px;
	}}

#exam-page .flow__list-pc li .js-modal__inner .flow__inner .wh-box {
  background-color: #FFF;
  width: 100%;



	padding-block: 20px 50px;

}
@media (max-width: 769px) {
#exam-page .flow__list-pc li .js-modal__inner .flow__inner .wh-box {
	padding: 50px 20px;
}
}
#exam-page .flow__list-pc li .js-modal__inner .flow__inner .wh-box p {
  color: #000;
}
#exam-page .flow__list-pc li .js-modal__inner .flow__inner .wh-box p span {


	color: #333;


  text-decoration: none;

  line-height: 27px;
}
#exam-page .flow__list-pc li .js-modal__inner .js-modal__close {
  width: 38px;
  position: absolute;


	top: 10px;

	right: 14%;

}
@media (max-width: 769px) {
#exam-page .flow__list-pc li .js-modal__inner .js-modal__close {
    width: 28px;
    position: absolute;


	        top: 40px;
        right: 20px;

}
}
@media (max-width: 769px) {
  #exam-page .flow__list-pc li .js-modal__inner {
    flex-wrap: wrap;
  }
}
#exam-page .flow__list-pc li .js-modal__inner.modal-open {
  opacity: 1;
  visibility: visible;
}
#exam-page .flow__list-sp {
  display: none;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
@media (max-width: 769px) {
  #exam-page .flow__list-sp {
    display: flex;
  }
}
#exam-page .flow__list-sp .step-number {
  width: 60px;
  background-color: #441313;
  text-align: center;
  font-size: 18px;
  color: #FFF;
  padding-top: 30px;
  position: relative;
}
#exam-page .flow__list-sp .step-number::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 0px;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid #441313;
}
#exam-page .flow__list-sp .step {
  width: 75%;
}
#exam-page .flow__list-sp .step li {
  width: 100%;

}
#exam-page .flow__list-sp .step li:last-child {
  margin-top: 30px;
}
#exam-page .flow__list-sp .step li p {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 23px;
  text-align: center;
}
#exam-page .flow__list-sp .step li .flow__box {
  background-color: #F2F2F2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 16px;
}
#exam-page .flow__list-sp .step li .flow__box .image {
  width: 100px;
  margin: 0 auto;
}
#exam-page .flow__list-sp .step li .flow__box p {
  font-size: 15px;
  line-height: 23px;
  font-weight: normal;
}
#exam-page .flow__list-sp .step li .flow__box p span {
  font-size: 12px;
  line-height: 17px;
  padding-top: 10px;
  display: inline-block;
}
#exam-page .flow__list-sp .step li .flow__box a {
  width: 90%;
  background-color: #441313;
  border-radius: 30px;
  display: block;
  margin: 0 auto;
}
#exam-page .flow__list-sp .step li .flow__box a p {
  font-weight: bold;
  color: #FFF;
  padding: 12px 0 13px;
}
#exam-page .flow__list-sp .step li:last-child .flow__box {
  justify-content: center;
}
#exam-page .flow__list-sp .step li .js-modal__inner {
  position: fixed;
  width: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 80%;
}
#exam-page .flow__list-sp .step li .js-modal__inner .flow__inner {
  position: relative;
  gap: 50px;
  height: 100vh;
  padding: 40px 0;
  overflow-y: scroll;
}
#exam-page .flow__list-sp .step li .js-modal__inner .flow__inner h3 {
  text-align: center;
  font-size: 18px;
  line-height: 35px;

	color: #333;
  padding-bottom: 0px;
}
#exam-page .flow__list-sp .step li .js-modal__inner .flow__inner p {
  font-size: 14px;
  line-height: 25px;

	color: #333;
  padding: 0;
  text-align: left;
}
#exam-page .flow__list-sp .step li .js-modal__inner .flow__inner p span {
  text-decoration: underline;
  font-size: 15px;
  line-height: 27px;
}
#exam-page .flow__list-sp .step li .js-modal__inner .flow__inner .image {
  width: 100%;
  margin-top: 40px;
}
#exam-page .flow__list-sp .step li .js-modal__inner .flow__inner .wh-box {
  background-color: #FFF;
  width: 100%;
  padding: 20px;
}
#exam-page .flow__list-sp .step li .js-modal__inner .flow__inner .wh-box p {
  color: #000;
}
#exam-page .flow__list-sp .step li .js-modal__inner .flow__inner .wh-box p span {
  color: #E80000;
  text-decoration: none;
  font-size: 14px;
  line-height: 25px;
}
#exam-page .flow__list-sp .step li .js-modal__inner .js-modal__close {
  width: 38px;
  position: absolute;
  top: 2%;
  right: -8%;
}
@media (max-width: 769px) {
  #exam-page .flow__list-sp .step li .js-modal__inner {
    flex-wrap: wrap;
  }
}
#exam-page .flow__list-sp .step li .js-modal__inner.modal-open {
  opacity: 1;
  visibility: visible;
}
#exam-page .flow .js-modal__overlay {
  height: 100%;

	background: #FFF;
  position: fixed;
  inset: 0;
  margin: 0 auto;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#exam-page .flow .js-modal__overlay.modal-open {
  opacity: 1;
  visibility: visible;
}

#exam-page .schedule {
  padding: 60px 0 80px;
  background-color: #F4F4F4;
}
#exam-page .schedule p {
  text-align: center;
  position: relative;
}
@media (max-width: 769px) {
  #exam-page .schedule p {
    font-size: 14px;
    line-height: 25px;
  }
}
#exam-page .schedule__table .js-accordion-title--test i {
  position: absolute;
  color: #FFF;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 5%;
}
#exam-page .schedule__table .js-accordion-title--test .fa-chevron-down {
  display: block;
}
#exam-page .schedule__table .js-accordion-title--test .fa-chevron-up {
  display: none;
}
#exam-page .schedule__table .js-accordion-title--test.open {
  transition: all 1.5s;
}
#exam-page .schedule__table .js-accordion-title--test.open .fa-chevron-down {
  display: none;
}
#exam-page .schedule__table .js-accordion-title--test.open .fa-chevron-up {
  display: block;
}

#exam-page .schedule__table .js-accordion-title--test span {
  font-size: 15px;
}

#exam-page .schedule__menu {
  display: none;
}
#exam-page .schedule__menu ul {
  width: 32%;
}
#exam-page .schedule__menu ul p {
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  padding: 17px 0;
  margin-bottom: 19px;
}
@media (max-width: 769px) {
  #exam-page .schedule__menu ul p {
    font-size: 13px;
  }
}
#exam-page .schedule__menu ul:first-child p {
  background-color: #441313;
}
#exam-page .schedule__menu ul:nth-of-type(2) p {
  background-color: #734E4E;
}
#exam-page .schedule__menu ul:last-child p {
  background-color: #441313;
}
#exam-page .schedule__menu ul li {
  position: relative;
  margin-top: 6px;
}
#exam-page .schedule__menu ul li a {
  background-color: #FFF;
  text-align: center;
  width: 100%;
  display: block;
  padding: 10px;
}
#exam-page .schedule__menu ul li:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  color: #A7A7A7;
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  right: 20px;
  top: 13px;
}
@media (max-width: 769px) {
  #exam-page .schedule__menu ul li:after {
    right: 10px;
  }
}
#exam-page .schedule__table {
  margin-top: 24px;
}
#exam-page .schedule__table p {
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  padding: 16px 24px;
  margin-bottom: 0;
  text-align: left;
  border-radius: 8px;
}
@media (max-width: 769px) {
  #exam-page .schedule__table p {
    font-size: 14px;
  }
  #exam-page .schedule__table .js-accordion-title--test {
    position: relative;
    padding-left: 60px;
  }
  #exam-page .schedule__table .js-accordion-title--test::before {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0;
    vertical-align: unset;
  }
}
#exam-page .schedule__table--3 p {
  background-color: #441313;
}
#exam-page .schedule__table--2 p {
  background-color: #441313;
}
#exam-page .schedule__table--1 p {
  background-color: #441313;
}
#exam-page .schedule__table .table-wrap {
  padding-top: 20px;
}
@media (max-width: 769px) {
  #exam-page .schedule__table .table-wrap {
    overflow-x: scroll;
  }
}

/* 試験当日の注意事項エリア（実施日／申込締切／集合・解散／連絡先／コピー）：4.png デザイン */
#exam-page .test-day-notes {
  margin-bottom: 24px;
  text-align: left;
}
/* 親の .schedule__table p（白文字・パディング）を打ち消す土台 */
#exam-page .test-day-notes p {
  color: #441313;
  background: none;
  padding: 0;
  border-radius: 0;
  text-align: left;
  font-weight: 500;
  margin: 0;
}

/* 上段：模試実施日／申込締切日 の2カード */
#exam-page .test-day-notes .tdn-cards {
  display: flex;
  gap: 20px;
}
#exam-page .test-day-notes .tdn-card {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #faf4f1;
  border: 1px solid #efe2dd;
  border-radius: 14px;
  padding: 18px 26px;
}
/* 2日開催のときは実施日カードの横幅をやや広げ、日付を1行に収める */
#exam-page .test-day-notes .tdn-card--wide {
  flex: 1.7;
}
#exam-page .test-day-notes .tdn-card__icon,
#exam-page .test-day-notes .tdn-time__icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #6b3838;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
#exam-page .test-day-notes .tdn-card__body {
  min-width: 0;
  padding-left: 20px;
  border-left: 1px solid #e7d8d3;
}
#exam-page .test-day-notes .tdn-card__label {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 700;
  color: #441313;
}
#exam-page .test-day-notes .tdn-card__label span {
  font-size: 12px;
  font-weight: 500;
  color: #8a6f6f;
}
#exam-page .test-day-notes .tdn-card__value {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: #441313;
  line-height: 1.2;
  white-space: nowrap;
}
#exam-page .test-day-notes .tdn-num {
  font-size: 32px;
  font-weight: 900;
  padding: 0 2px;
}
#exam-page .test-day-notes .tdn-sep {
  padding: 0 4px;
}

/* コピー下の本文表（固定ページ本文をそのまま表示） */
#exam-page .test-day-notes .tdn-table {
  margin-top: 20px;
  overflow-x: auto;
}
#exam-page .test-day-notes .tdn-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
#exam-page .test-day-notes .tdn-table th,
#exam-page .test-day-notes .tdn-table td {
  border: 1px solid #e6dddd;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
}
#exam-page .test-day-notes .tdn-table th {
  background: #faf4f1;
  font-weight: 700;
  color: #441313;
  white-space: nowrap;
}
#exam-page .test-day-notes .tdn-table p {
  margin: 0;
}

/* 下段：集合／解散／連絡先 の3項目 */
#exam-page .test-day-notes .tdn-times {
  display: flex;
  margin-top: 24px;
}
#exam-page .test-day-notes .tdn-times--divided {
  padding-top: 26px;
  border-top: 1px dashed #d8c5bf;
}
#exam-page .test-day-notes .tdn-time {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
#exam-page .test-day-notes .tdn-time + .tdn-time {
  border-left: 1px solid #e7d8d3;
}
#exam-page .test-day-notes .tdn-time__label {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 700;
  color: #441313;
}
#exam-page .test-day-notes .tdn-time__value {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  color: #441313;
  line-height: 1.1;
  white-space: nowrap;
}
#exam-page .test-day-notes .tdn-time--contact .tdn-time__value {
  font-size: 26px;
}

/* コピー（自由入力） */
#exam-page .test-day-notes .tdn-copy {
  margin: 16px 0 0;
  text-align: center;
  font-size: 15px;
  color: #9a8b8b;
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 769px) {
  #exam-page .test-day-notes .tdn-cards {
    flex-direction: column;
    gap: 12px;
  }
  #exam-page .test-day-notes .tdn-card {
    padding: 14px 18px;
    gap: 14px;
  }
  #exam-page .test-day-notes .tdn-card__icon,
  #exam-page .test-day-notes .tdn-time__icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
  #exam-page .test-day-notes .tdn-card__body {
    padding-left: 14px;
  }
  #exam-page .test-day-notes .tdn-card__value {
    font-size: 16px;
  }
  /* 2日開催はモバイルでもう少し小さくして1行に収める */
  #exam-page .test-day-notes .tdn-card--wide .tdn-card__value {
    font-size: 15px;
  }
  #exam-page .test-day-notes .tdn-num {
    font-size: 22px;
  }
  #exam-page .test-day-notes .tdn-times {
    flex-direction: column;
    gap: 0;
    margin-top: 18px;
  }
  #exam-page .test-day-notes .tdn-times--divided {
    padding-top: 18px;
  }
  #exam-page .test-day-notes .tdn-time {
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 0;
  }
  #exam-page .test-day-notes .tdn-time + .tdn-time {
    border-left: none;
    border-top: 1px solid #eee3df;
  }
  #exam-page .test-day-notes .tdn-time__value {
    font-size: 24px;
  }
  #exam-page .test-day-notes .tdn-time--contact .tdn-time__value {
    font-size: 22px;
  }
}

/* 「診断シート返却・面談会場」の見出しと、会場一覧／フォールバック文言との余白 */
#exam-page .flow__inner h3 + .venue,
#exam-page .flow__inner h3 + .venue-note {
  margin-top: 20px;
}
#exam-page .venue-note {
  text-align: center;
  color: #441313;
  font-size: 15px;
}
#exam-page .schedule__table table {
  width: 100%;
  background-color: #FFF;
}
@media (max-width: 769px) {
  #exam-page .schedule__table table {
    width: 1000px;
  }
}
#exam-page .schedule__table table tr th {
  padding: 20px;
  font-size: 15px;
  border: 4px solid #F2F2F2;
  text-align: center;
  vertical-align: middle;
  width: 20%;
}
#exam-page .schedule__table table tr td {
  padding: 20px;
  font-size: 15px;
  line-height: 22px;
  border: 4px solid #F2F2F2;
}
#exam-page .schedule__table table tr td li {
  padding-top: 15px;
}

/* ② アコーディオンバー左アイコン */
#exam-page .schedule__table .js-accordion-title--test::before {
  content: "\f19d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  line-height: 32px;
  text-align: center;
  font-size: 14px;
  color: #FFF;
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ① 受験料・受験科目エリア */
#exam-page .schedule__fee {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px auto 10px;
  flex-wrap: wrap;
  background: #FFF;
  border: 2px solid #e0d0d0;
  border-radius: 10px;
  padding: 18px 40px;
  width: 60%;
  justify-content: center;
}
#exam-page .schedule__fee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin: 0 auto;
}
#exam-page .schedule__fee-divider {
  width: 1px;
  height: 48px;
  background: #d4c0c0;
  flex-shrink: 0;
}

/* 模試スケジュール：案内エリア（案内文＋誘導リンク） */
#exam-page .schedule__notice {
  max-width: 760px;
  margin: 48px auto 48px;
  text-align: center;
}
#exam-page .schedule__notice p {
  text-align: center;
  color: #333;
}
#exam-page .schedule__notice .schedule__notice-lead {
  font-size: 16px;
  font-weight: 700;
  color: #441313;
  margin: 0 0 6px;
}
#exam-page .schedule__notice .schedule__notice-text {
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 16px;
}
#exam-page .schedule__notice .schedule__notice-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  background: #441313;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: .3s;
}
#exam-page .schedule__notice .schedule__notice-btn:hover {
  opacity: .85;
  transform: translateY(-1px);
}
#exam-page .schedule__notice .schedule__notice-btn i {
  font-size: 13px;
}
@media (max-width: 769px) {
  #exam-page .schedule__notice {
    margin: 32px auto 32px;
  }
  #exam-page .schedule__notice .schedule__notice-text {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }
  #exam-page .schedule__notice .schedule__notice-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}
#exam-page .schedule__fee-block {
  margin: 28px 0 10px;
  text-align: center;
}
#exam-page .schedule__fee-block + .schedule__fee-block {
  margin-top: 16px;
}
#exam-page .schedule__fee-block .schedule__fee {
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
}
#exam-page .schedule__fee .fee-badge {
  display: inline-block;
  background: #441313;
  color: #FFF;
  border-radius: 999px;
  padding: 3px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  width: fit-content;
  text-align: center;
  position: static;
}
#exam-page .schedule__fee .fee-label {
  display: inline-block;
  background: #441313;
  color: #FFF;
  border-radius: 999px;
  padding: 3px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  width: fit-content;
  text-align: center;
  position: static;
}
#exam-page .schedule__fee .fee-grade {
  display: inline-block;
  background: transparent;
  color: #441313;
  border: 1.5px solid #441313;
  border-radius: 999px;
  padding: 3px 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  width: fit-content;
  text-align: center;
  position: static;
  margin: 0 auto 4px;
  flex-basis: 100%;
}
#exam-page .schedule__fee .fee-amount {
  font-size: 26px;
  font-weight: 900;
  color: #2c0e0e;
  line-height: 1.2;
  text-align: left;
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  position: static;
}
#exam-page .schedule__fee .fee-tax {
  font-size: 16px;
  font-weight: normal;
}
#exam-page .schedule__fee .fee-subjects {
  font-size: 24px;
  font-weight: 900;
  color: #2c0e0e;
  line-height: 1.2;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 0;
  position: static;
}
#exam-page .schedule__fee .fee-note {
  font-size: 13px;
  font-weight: normal;
}
@media (max-width: 769px) {
  #exam-page .schedule__fee {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 90%;
    padding: 16px 20px;
  }
  #exam-page .schedule__fee .fee-amount {
    font-size: 22px;
  }
  #exam-page .schedule__fee-item {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  #exam-page .schedule__fee-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #d4c0c0;
    margin: 12px 0;
  }
  #exam-page .schedule__fee .fee-subjects {
    white-space: nowrap;
    font-size: 20px;
  }
}

#exam-page .venue p {
  font-size: 12px;
  text-align: center;
}
#exam-page .venue ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 769px) {
  #exam-page .venue ul {
    flex-wrap: wrap;
    margin-top: 20px;
  }
}
#exam-page .venue ul li {
  width: 47%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  background: #FFF;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 3px 14px rgba(68,19,19,.07);
  border: 1px solid #ecddd8;
}
@media (max-width: 769px) {
  #exam-page .venue ul li {
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
  }
}
#exam-page .venue ul li .venue__info {
  width: 255px;
}
@media (max-width: 769px) {
  #exam-page .venue ul li .venue__info {
    flex: 1;
    width: auto;
    min-width: 0;
  }
}
#exam-page .venue ul li .venue__info h4 {
  background-color: #441313;
  color: #FFF;
  padding: 10px;
  display: inline-block;
}
@media (max-width: 769px) {
  #exam-page .venue ul li .venue__info h4 {
    font-size: 14px;
    padding: 5px 10px;
  }
}
#exam-page .venue ul li .venue__info p {
    font-size: 13px !important;
    line-height: 1.6;
    color: #666;
    text-align: left;
    margin-top: 6px;
    background-color: rgba(0,0,0,0) !important;
    padding: 0;
    margin-bottom: 0;
    font-weight: normal;
}
@media (max-width: 769px) {
  #exam-page .venue ul li .venue__info p {
    font-size: 12px;
    line-height: 17px;
    margin-top: 8px;
  }
}
#exam-page .venue ul li .venue__info p.name {
  font-size: 18px !important;
  font-weight: bold;
}
@media (max-width: 769px) {
  #exam-page .venue ul li .venue__info p.name {
    font-size: 14px !important;
  }
}
#exam-page .venue ul li .venue__info a {
  display: inline-flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  background-color: rgba(69, 18, 19, 0.75);
  color: #FFF;
  padding: 6px 12px;
  border-radius: 50px;
}
@media (max-width: 769px) {
  #exam-page .venue ul li .venue__info a {
    margin-top: 8px;
  }
}
#exam-page .venue ul li .venue__info a i {
  font-size: 10px;
  color: #FFF;
}
#exam-page .venue ul li .venue__info a p {
  font-size: 12px;
  margin: 0;
  color: #FFF !important;
}
#exam-page .venue ul li .map {
  width: 200px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 769px) {
  #exam-page .venue ul li .map {
    width: 130px !important;
    height: auto;
    min-height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    margin-top: 0;
  }
}
#exam-page .venue ul li .map iframe {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: block;
}

/* 面談会場（個別面談会場モーダル内）専用の調整 */
/* .flow__list-pc li::before のナンバリングが、モーダル内にネストされた
   .venue ul li にも descendant セレクタで当たってしまうため無効化 */
#exam-page .flow__list-pc .venue ul li {
  counter-increment: none;
}
#exam-page .flow__list-pc .venue ul li::before {
  content: none;
}
/* マップの右側に余白ができないよう、情報エリアと同じ横幅まで広げる */
#exam-page .venue--meeting ul li {
  flex-direction: column;
}
#exam-page .venue--meeting ul li .venue__info {
  width: 100%;
}
#exam-page .venue--meeting ul li .map {
  width: 100%;
}

#news main {
  margin-top: 120px;
}
@media (max-width: 769px) {
  #news main {
    margin-top: 96px;
  }
}

#exam-page .user-voice {
  padding: 0 0 90px;
}
#exam-page .user-voice .section-title div {
  width: 62px;
  margin: 0 auto;
}
#exam-page .user-voice .section-sub-title {
  text-align: center;
}
#exam-page .user-voice__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
	    align-items: center;
}
@media (max-width: 769px) {
  #exam-page .user-voice__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 769px) {
  #exam-page .user-voice__inner--bottom {
    flex-direction: column-reverse
  }
}
#exam-page .user-voice__inner .image {
  width: 18%;
}
@media (max-width: 769px) {
  #exam-page .user-voice__inner .image {
        width: 35%;
    text-align: center;
    margin: 0 auto;
  }
}
#exam-page .user-voice__inner .image p {
  font-weight: bold;
  margin-top: 10px;
	text-align: center;
}
#exam-page .user-voice__inner .comment {
  width: 77%;
  font-size: 18px;
  background-color: #F6F3F3;
  padding: 25px;
  position: relative;
}
@media (max-width: 769px) {
  #exam-page .user-voice__inner .comment {
    width: 100%;
    margin-top: 30px;
    font-size: 15px;
  }
}
#exam-page .user-voice__inner .comment--right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #F6F3F3;
}
@media (max-width: 769px) {
  #exam-page .user-voice__inner .comment--right:before {
    top: 0px;
    left: 50%;
    transform: translateX(-50%)rotate(225deg);
    border-bottom: 15px solid #F6F3F3;
  }
}
#exam-page .user-voice__inner .comment--left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #F6F3F3;
}
@media (max-width: 769px) {
  #exam-page .user-voice__inner .comment--left:before {
    top: 0px;
    left: 50%;
    transform: translateX(-50%)rotate(135deg);
    border-bottom: 15px solid #F6F3F3;
  }
}
#exam-page .user-voice__inner .comment h4 {
  font-weight: 900;
  padding-bottom: 8px;
}
#exam-page .user-voice__inner .comment p {
  border-top: 2px solid #2a0a0a;
  padding-top: 8px;
  width: 100%;
  overflow-wrap: break-word;
	line-height: 25px;
}

.footer-request-btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #441313;
    padding: 20px;
    text-align: center;
    z-index: 20;
}
@media (max-width: 769px) {
	.footer-request-btn {
		padding: 10px 20px;
	}}
.footer-request-btn p {
    color: #FFF;
}
@media (max-width: 769px) {
	.footer-request-btn p {
		font-size: 13px;

	}
}
@media (max-width: 769px) {
	.footer-request-btn-text{
		display:none;
	}
}
.footer-request-btn a {
    background-color: #FFF;
    border-radius: 35px;
    display: inline-block;
    padding: 14px 30px;
    margin-top: 10px;
	border: 2px solid #441313;
}
@media (max-width: 769px) {
  .footer-request-btn a {
    margin-top: 0;
    display: block;
    width: 100%;
  }
}
.footer-request-btn a p {
    color: #441313;
    font-weight: bold;
}
.footer-request-btn a:hover {
    background-color: #441313;
	border: 2px solid #FFF;
}
.footer-request-btn a:hover p {
    color: #FFF;
}

#news .news {
  padding: 40px 0;
  margin-top: 40px;
}
@media (max-width: 769px) {
  #news .news {
    padding: 30px 0;

    margin-top: 10px;
  }
}
#news .news .category-area {
  display: flex;
  justify-content: flex-start;
	flex-wrap:wrap;


	gap: 10px;
}
@media (max-width: 769px) {
  #news .news .category-area {

    gap: 10px;
  }
}
#news .news .category-area a {
  font-size: 18px;
  color: #441313;
  padding-bottom: 17px;

	    border: 1px solid #441313;
    border-radius: 5px;
    color: #441313;
    padding: 2px 22px 6px;
	transition:all 0.3s;

}
@media (max-width: 769px) {
  #news .news .category-area a {

  font-size: calc(12px + (14 - 12) * ((100vw - 320px) / (767 - 320)));

  }
}
#news .news .category-area a:hover {


	background:#441313;
	color:#FFF;

}

#news .category-area a.current {
   background:#441313;
	color:#FFF;
}
#news .news .news__area {
  margin-top: 20px;
}
#news .news .news__area li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 18px 0;
  border-top: solid 1px #E2E2E2;
}
#news .news .news__area li a:hover {
  opacity: 0.5;
}
@media (max-width: 769px) {
  #news .news .news__area li {
    flex-wrap: wrap;
  }
}
#news .news .news__area li p {
  font-size: 15px;
}
@media (max-width: 769px) {
  #news .news .news__area li p {
    font-size: 14px;
  }
}
#news .news .news__area li .news__date {

  min-width: 130px;
  text-align: center;
  color: #777777;
}
@media (max-width: 769px) {
  #news .news .news__area li .news__date {
	min-width: 0;
	flex-shrink: 0;
    width: 80px;
    text-align: left;
  }
}
#news .news .news__area li .news__cat {
  width: 110px;

  background-color: #441313;
  padding: 8px;
  color: #FFF;
  text-align: center;
  margin-right: 35px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 5px;
}
@media (max-width: 769px) {
  #news .news .news__area li .news__cat {
    width: 90px;
    font-size: 12px;
    padding: 5px;
  }
}
@media (max-width: 769px) {
  #news .news .news__area li .news__title {
    margin-top: 10px;
    width: 100%;

	font-size: 16px;
    line-height: 25px;
  }
}
#news .news .pagination {
  margin-top: 60px;
  text-align: center;
}
#news .news .pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 30px;
}
#news .news .pagination .wp-pagenavi span, #news .news .pagination .wp-pagenavi a {
  font-size: 18px;
  padding-bottom: 17px;
}
#news .news .pagination .wp-pagenavi a:hover {
  padding-bottom: 14px;
  border-bottom: solid 3px #441313;
}

#single-news main {
  margin-top: 120px;
}
@media (max-width: 769px) {
  #single-news main {
    margin-top: 96px;
  }
}

#single-news {
    background-color: #F4F4F4;
}

#single-news .single-news {
margin-top: 50px;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #F4F4F4;
}
@media (max-width: 769px) {
  #single-news .single-news {
    margin-top: 25px;
  }
}
#single-news .single-news .container {
    background-color: #FFF;
    padding: 40px 15px;
}
@media (max-width: 769px) {
#single-news .single-news .container {
    width: 100%;
}
}
#single-news .single-news .date-cat {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 769px) {
	#single-news .single-news .date-cat {
  margin-bottom: 0px;
}

}
#single-news .single-news .date-cat .news__date {
  text-align: center;
	font-size:14px;
}
@media (max-width: 769px) {
  #single-news .single-news .date-cat .news__date {
    text-align: left;
	  font-size:12px;
  }
}
#single-news .single-news .date-cat .news__cat {
  background-color: #441313;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  border-radius: 5px;
  padding: 6px 22px 6px;
}
@media (max-width: 769px) {
  #single-news .single-news .date-cat .news__cat {
    font-size: 10px;
    padding: 5px;
  }
}
#single-news .single-news__contents h2 {
	color: #441313;
	font-size: 18px;
	font-weight: bold;
  line-height: 35px;
}

#single-news .single-news__contents h3 {
  font-size: 16px;
	  font-size: 18px;
  font-weight: bold;
  line-height: 35px;
}
@media (max-width: 769px) {
	#single-news .single-news__contents h2 {
	font-size: 17px;
  line-height: 32px;
}

  #single-news .single-news__contents h3 {
	  font-size: 18px;
    line-height: 25px;
  }
}
#single-news .single-news__contents p {
  font-size: 16px;
	line-height: 30px !important;
}
@media (max-width: 769px) {
  #single-news .single-news__contents p {
    font-size: 14px;
	  line-height: 30px !important;
  }
}

#single-news .single-news__contents li {
    list-style: disc;
	    margin-left: 20px;
	line-height: 30px !important;
}

@media (max-width: 769px) {
#single-news .single-news__contents li {
	line-height: 25px !important;
  }
}
#single-news .single-news__contents a {
	color: #441313;
	border-bottom: solid 1px #441313;
}
.wp-block-button .wp-block-button__link.is-style-outline, .wp-block-button.is-style-outline>.wp-block-button__link {
    border: 2px solid !important;
}

#contact main {
  margin-top: 120px;
}
@media (max-width: 769px) {
  #contact main {
    margin-top: 96px;
  }
}

#contact .contact {
  padding-top: 80px;
  min-height: calc(100vh - 500px);
}
@media (max-width: 769px) {
  #contact .contact {
    min-height: calc(100vh - 400px);
    padding-top: 30px;
  }
}
#contact .contact__inner {
  padding: 80px 0;
  background-color: #F4F4F4;
}
@media (max-width: 769px) {
  #contact .contact__inner {
    padding: 30px 0;
  }
}
#contact .contact__inner .page-lead {
  text-align: center;
  font-size: 15px;
  line-height: 35px;
}
@media (max-width: 769px) {
  #contact .contact__inner .page-lead {
    font-size: 14px;
    line-height: 25px;
    width: 90%;
    margin: 0 auto;
  }
}
#contact .contact__inner .page-lead a {
  color: #441313;
  border-bottom: solid 1px #441313;
}
#contact .contact__inner .container {
  background-color: #FFF;
  margin-top: 60px;
  padding: 80px;
}
@media (max-width: 769px) {
  #contact .contact__inner .container {
    padding: 20px;
  }
}
#contact .contact__form .form-item {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
}
@media (max-width: 769px) {
  #contact .contact__form .form-item {
    flex-wrap: wrap;
  }
}
#contact .contact__form .form-item p {
  font-size: 15px;
  text-align: left;
}
@media (max-width: 769px) {
  #contact .contact__form .form-item p {
    font-size: 14px;
  }
}
#contact .contact__form .form-item p span {
  color: #FFF;
  font-size: 12px;
  background-color: #E80000;
  padding: 3px 8px;
  margin-right: 13px;
  text-align: center;
}
#contact .contact__form .form-item .form-title {
  width: 30%;
}
@media (max-width: 769px) {
  #contact .contact__form .form-item .form-title {
    width: 100%;
    margin-bottom: 10px;
  }
}
#contact .contact__form .form-item .form-input {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  width: 70%;
}
@media (max-width: 769px) {
  #contact .contact__form .form-item .form-input {
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
  }
}
#contact .contact__form .form-item .form-input div {
  display: flex;
  position: relative;
}
@media (max-width: 769px) {
  #contact .contact__form .form-item .form-input div {
    flex-wrap: wrap;
    width: 100%;
  }
}
#contact .contact__form .form-item .form-input div p {
  position: absolute;
  left: -38px;
}
@media (max-width: 769px) {
  #contact .contact__form .form-item .form-input div p {
    position: relative;
    left: 0;
    display: block;
    margin-bottom: 5px;
  }
}
#contact .contact__form .form-item input, #contact .contact__form .form-item textarea {
  border: solid 1px #E2E2E2;
  padding: 15px;
  width: 100%;
}
#contact .contact__form .form-item textarea {
  height: 340px;
}
#contact .contact__form .form-item input[type=checkbox] {
  width: auto;
  margin-right: 10px;
}
#contact .contact__form .send_btn {
  width: 255px;
  padding: 20px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 32px;
  border: solid 2px #441313;
  background-color: #FFF;
  cursor: pointer;
}
#contact .contact__form .send_btn:hover {
  color: #FFF;
  border: solid 2px #FFF;
  background-color: #441313;
}
#contact .contact__form .send_btn .wpcf7-spinner {
  margin: 0;
}

#faq main {
  margin-top: 120px;
}
@media (max-width: 769px) {
  #faq main {
    margin-top: 96px;
  }
}

#faq .page-lead {
  text-align: center;
  font-size: 15px;
  line-height: 35px;
  margin-top: 30px;
}
@media (max-width: 769px) {
  #faq .page-lead {
    font-size: 14px;
    line-height: 25px;
    width: 90%;
    margin: 30px auto 0;
  }
}
#faq .page-lead a {
  color: #441313;
  border-bottom: solid 1px #441313;
}
#faq .faq__contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
#faq .faq__contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #441313;
  border-radius: 6px;
  padding: 14px 20px;
  color: #441313;
  font-weight: 700;
  text-decoration: none;
  min-width: 240px;
}
#faq .faq__contact a span {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#faq .faq__contact a span strong {
  font-size: 17px;
  letter-spacing: .04em;
}
#faq .faq__contact a:hover {
  background-color: #faf4f4;
}
@media (max-width: 769px) {
  #faq .faq__contact {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
  }
  #faq .faq__contact a {
    width: 100%;
    min-width: unset;
  }
}
#faq .faq {
  padding-bottom: 80px;
  margin-top: 30px;
}
#faq .faq__inner {
  margin-top: 40px;
}
#faq .faq .qa__box {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
}
#faq .faq .js-accordion-title--qa {
  position: relative;
  background-color: #FFF;
  margin-top: 0;
  font-size: 17px;
  text-align: left;
  padding: 18px 64px 18px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
@media (max-width: 769px) {
  #faq .faq .js-accordion-title--qa {
    font-size: 14px;
    line-height: 1.6;
    padding: 14px 52px 14px 14px;
    gap: 10px;
  }
}
#faq .faq .js-accordion-title--qa .qa__q {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: #441313;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
}
#faq .faq .js-accordion-title--qa .qa__q img {
  display: none;
}
#faq .faq .js-accordion-title--qa .qa__q::before {
  content: "Q";
}
#faq .faq .js-accordion-title--qa p {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}
#faq .faq .js-accordion-title--qa i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: #441313;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 10;
}
#faq .faq .js-accordion-title--qa .fa-plus {
  display: flex;
}
#faq .faq .js-accordion-title--qa .fa-minus {
  display: none;
}
#faq .faq .js-accordion-title--qa.open {
  transition: background-color .3s;
}
#faq .faq .js-accordion-title--qa.open .fa-plus {
  display: none;
}
#faq .faq .js-accordion-title--qa.open .fa-minus {
  display: flex;
}
#faq .faq .js-accordion-inner--qa {
  background-color: #FAF4F4;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1.5px solid #ddd;
}
@media (max-width: 769px) {
  #faq .faq .js-accordion-inner--qa {
    font-size: 14px;
    padding: 14px;
    gap: 10px;
  }
}
#faq .faq .js-accordion-inner--qa .qa__a {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: #8B6565;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
}
#faq .faq .js-accordion-inner--qa .qa__a img {
  display: none;
}
#faq .faq .js-accordion-inner--qa .qa__a::before {
  content: "A";
}
#faq .faq .js-accordion-inner--qa p {
  flex: 1;
  text-align: left;
  line-height: 1.8;
  margin: 0;
  background: transparent;
  padding: 0;
}
#faq .faq .js-accordion-inner--qa i {
  display: none;
}

#sitemap main {
  margin-top: 120px;
}
@media (max-width: 769px) {
  #sitemap main {
    margin-top: 96px;
  }
}

#sitemap .page-lead {
  text-align: center;
  font-size: 15px;
  line-height: 35px;
  margin-top: 30px;
}
#sitemap .sitemap {
  padding: 80px 0;
  background-color: #F4F4F4;
  margin-top: 70px;
}
@media (max-width: 769px) {
  #sitemap .sitemap {
    padding: 30px 0;
    margin-top: 30px;
  }
}
#sitemap .sitemap .container {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 769px) {
  #sitemap .sitemap .container {
    flex-wrap: wrap;
  }
}
#sitemap .sitemap__list {
  width: 32%;
}
@media (max-width: 769px) {
  #sitemap .sitemap__list {
    width: 100%;
    margin-bottom: 70px;
  }
}
#sitemap .sitemap__list h2 {
  font-size: 24px;
  border-bottom: 4px solid #441313;
  padding-bottom: 15px;
}
@media (max-width: 769px) {
  #sitemap .sitemap__list h2 {
    font-size: 20px;
  }
}
#sitemap .sitemap__list ul li a {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-top: 20px;
}
#sitemap .sitemap__list ul li a:hover {
  opacity: 0.5;
}

#common main {
  margin-top: 120px;
}
@media (max-width: 769px) {
  #common main {
    margin-top: 96px;
  }
}

#common .common {
  padding: 80px 0;
  background-color: #F4F4F4;
  margin-top: 70px;
}
@media (max-width: 769px) {
  #common .common {
    padding: 30px 0;
    margin-top: 30px;
  }
}
#common .common h3 {
  font-size: 15px;
  font-weight: bold;
  line-height: 35px;
  margin-top: 20px;
}
@media (max-width: 769px) {
  #common .common h3 {
    font-size: 14px;
    line-height: 25px;
  }
}
#common .common p {
  font-size: 15px;
  line-height: 35px;
  margin-top: 10px;
}
@media (max-width: 769px) {
  #common .common p {
    font-size: 14px;
    line-height: 25px;
  }
}

footer {
  background-color: #441313;
  z-index: 30;
	padding: 20px 0;
}
@media (max-width: 769px) {
  footer {
    height: auto;
  }
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
	position: relative;
}
@media (max-width: 769px) {
  footer .container {
    width: 90%;
    align-items: center;
    gap: 15%;
    flex-wrap: wrap;

	  padding-bottom: 40px;
  }
}

footer .container .footer__logo {
  width: 40%;
}
@media (max-width: 769px) {
  footer .container .footer__logo {
    width: 45%;
  }
}
footer .container .footer__logo img {
  width: 260px;
}

@media (max-width: 769px) {
footer .container .footer__logo img {
  width: 240px;
 }
}

footer .container .footer__logo .info {
	    color: #FFF;
    font-size: 15px;
    line-height: 23px;
    margin-top: 30px;
}
@media (max-width: 769px) {
	footer .container .footer__logo .info {
    font-size: 12px;
}
}
footer .container .footer__menu {
  min-width: 55%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  gap: 30px;
}
@media (max-width: 769px) {
  footer .container .footer__menu {
    width: 40%;
    min-width: auto;
    justify-content: space-between;

  }
}

@media (max-width: 769px) {
	footer .container .footer__menu {
			padding-top:50px;
	}
}

@media (max-width: 548px) {
	footer .container .footer__menu {
			padding-top:24px;
	}
}

footer .container .footer__menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
}
@media (max-width: 769px) {
  footer .container .footer__menu ul {
    gap: 10px;
  }
}
footer .container .footer__menu ul li {
  color: #FFF;
  font-size: 15px;
  width: 30%;
  text-align: right;
}
@media (max-width: 769px) {
  footer .container .footer__menu ul li {
    width: 100%;
    font-size: 12px;
    text-align: left;
  }
}
footer .container .footer__menu ul li:hover {
  opacity: 0.5;
}
footer .container .copyright {
  font-size: 12px;
  color: #919191;
  text-align: right;
	    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 769px) {
  footer .container .copyright {
    width: 100%;
    font-size: 10px;
    text-align: center;
    margin-top: 25px;
  }
}

.wp-pagenavi span.current {
  background-color: transparent;
  color: #441313;
  border: none;
  border-bottom: solid 3px #441313;
}

#single-news .single-news__contents {
  padding-inline: 40px;
}

@media (max-width: 769px) {
  #single-news .single-news__contents {
    padding-inline: 0px;
	  padding-top:30px
  }
}

.header__logo-drawer {
  width: 80%;
}

    #single-news .single-news__contents h2 {
        font-size: 20px;
        line-height: 32px;
        background-color: #F2EDED;
        border-left: 4px solid #441313;
        padding-left: 6px;
		padding-block:4px;

        color: #000;
    }
#single-news .single-news__contents .has-background{
	padding:0.625em 1.2em;
}
#news .news .news__area .news__cat {
    display: block;
}

.wp-block-separator{
padding:0 !important;
}


/* ========================================
   次回の模試スケジュール - mock-card layout
======================================== */

/* wrapper */
#top .test-area {
  padding: 60px 0;
  background: #f9f7f7;
}
@media (max-width: 769px) {
  #top .test-area { padding: 150px 0 70px; }
}

#top .mock-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクションタイトル */
#top .mock-title {
  font-size: 26px;
  font-weight: 900;
  color: #441313;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  letter-spacing: .05em;
}
#top .mock-title::before,
#top .mock-title::after {
  content: "";
  flex: 1;
  max-width: 70px;
  height: 2px;
  background: #441313;
}

/* カード */
#top .mock-card {
  display: flex;
  border: 2px solid #441313;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(68, 19, 19, .10);
}

/* 左列（ダーク） */
#top .mock-card-left {
  width: 150px;
  flex-shrink: 0;
  background: #441313;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 14px;
  gap: 10px;
}

#top .mock-card-emblem {
  width: 44px;
  height: 52px;
  opacity: .75;
}

#top .mock-card-name {
  color: #FFF;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  margin: 0;
  letter-spacing: .03em;
}

#top .mock-card-name span {
  font-size: 15px;
  font-weight: 700;
}

/* 右列（白） */
#top .mock-card-right {
  flex: 1;
  background: #FFF;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* スケジュール横並び */
#top .mock-schedule-row {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6dddd;
}

#top .schedule-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
}

#top .schedule-box:first-child {
  padding-left: 0;
}

#top .schedule-box + .schedule-box {
  border-left: 1px solid #e6dddd;
}

#top .schedule-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #441313;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFF;
}

#top .schedule-icon svg {
  width: 24px;
  height: 24px;
}

#top .schedule-box.deadline .schedule-icon {
  background: #ece8e8;
  color: #888;
}

#top .schedule-label {
  font-size: 13px;
  font-weight: 700;
  color: #441313;
  margin: 0 0 3px;
}

#top .schedule-count {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0 0 2px;
}

#top .schedule-date {
  font-size: 24px;
  font-weight: 900;
  color: #441313;
  margin: 0;
  white-space: nowrap;
}

/* 情報エリア */
#top .mock-info-title {
  font-size: 16px;
  font-weight: 900;
  color: #441313;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

#top .mock-info-star {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #E80000;
}

#top .mock-info-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

#top .mock-tag {
  background: #441313;
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

#top .mock-tag-value {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  margin-right: 4px;
}

#top .mock-info-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* CTAボタン */
#top .mock-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 28px;
  background: #FFF;
  color: #441313;
  border: 2px solid #441313;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}

#top .mock-cta:hover {
  opacity: .85;
  transform: translateY(-1px);
}

#top .mock-cta-arrow {
  font-size: 1.3em;
  line-height: 1;
}

/* SP */
@media (max-width: 767px) {
  #top .mock-card {
    flex-direction: column;
  }

  #top .mock-card-left {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    padding: 18px 20px;
    gap: 14px;
  }

  #top .mock-card-emblem {
    width: 32px;
    height: 38px;
  }

  #top .mock-card-name {
    font-size: 20px;
    text-align: left;
  }

  #top .mock-card-right {
    padding: 20px 16px;
    gap: 16px;
  }

  #top .mock-schedule-row {
    flex-direction: column;
    gap: 0;
    border-bottom: none;
    padding-bottom: 0;
  }

  #top .schedule-box {
    padding: 12px 0;
    border-bottom: 1px solid #e6dddd;
  }

  #top .schedule-box + .schedule-box {
    border-left: none;
  }

  #top .schedule-date {
    font-size: 20px;
  }

  #top .mock-cta {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 20px;
  }
}
