@charset "utf-8";

/*-- 基本設定 -------------------*/
html {
  font-size: 62.5%;
}

body {
  background-color: #ffffff;
  color: #333333;
  min-width: 1080px;
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
body:has(#contents) {
  min-width: auto;
}

@media screen and (max-width: 479px) {
  body {
    min-width: 320px;
    height: 100%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

select,
input,
button,
textarea {
  font: 99%;
}

@media screen and (max-width: 479px) {
  input {
    font-size: 16px !important;
  }
  input[type="submit"],
  input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 16px;
  }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none;
  }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px;
  }
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 100%;
}

a:link {
  color: #333333;
  transition: 0.3s;
  text-decoration: none;
}

a:visited {
  color: #333333;
  text-decoration: none;
}

a:hover {
  color: #0099cc;
  text-decoration: none;
}

a:active {
  color: #999999;
  text-decoration: none;
}

a.btn img {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -ms-filter: "alpha(opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

a:hover.btn img {
  -ms-filter: "alpha(opacity=60)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.4;
  opacity: 0.4;
}

::selection {
  background: #333333;
  color: #ffffff;
}

::-moz-selection {
  background: #333333;
  color: #ffffff;
}

::-webkit-selection {
  background: #333333;
  color: #ffffff;
}

strong {
  font-weight: bold;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*-- 汎用クラス -------------------*/
.pc {
  display: inherit !important;
}
@media screen and (max-width: 479px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 479px) {
  .sp {
    display: inherit !important;
  }
}

#wrapper {
  overflow: hidden;
  display: flex; /* bodyをFlexコンテナにする */
  flex-direction: column; /* 子要素を縦に並べる */
  min-height: 100vh; /* bodyの高さを最低でも画面の高さ100%にする */
}
@media screen and (max-width: 479px) {
  #wrapper {
    height: 100%;
    overflow-x: hidden;
    position: relative;
  }
}

.img_fit {
  width: 100%;
  height: auto;
}

.flex_outer {
  display: flex;
}

.overlay {
  display: none;
}
@media screen and (max-width: 479px) {
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 998;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
}

.fa-angle-double-down {
  color: #f9a43d;
  font-size: 30px;
}

.line {
  width: 100%;
  height: 10px;
  background-image: linear-gradient(90deg, #f6ad33, #fff462);
}
@media screen and (max-width: 479px) {
  .line {
    height: 6px;
  }
}

/*-- header -------------------*/
header {
  width: 100%;
  border-bottom: 5px solid #f9a43d;
  background-color: #ffffff;
  padding: 10px 0;
  position: fixed;
  z-index: 9999999;
}
@media screen and (max-width: 479px) {
  header {
    height: 42px;
    border-bottom: none;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .subpage header {
    background-color: rgba(255, 255, 255, 0.8);
  }
}

header .inner {
  max-width: 1200px;
  width: 98%;
  margin: auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 479px) {
  header .inner {
    width: 90%;
  }
}

header .inner h1 {
  width: 270px;
}
@media screen and (max-width: 479px) {
  header .inner h1 {
    width: 60%;
    height: auto;
    margin: 0;
    padding-top: 0;
    position: fixed;
    z-index: 9999;
  }
}

header .inner h1 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 479px) {
  header .inner h1 img {
    vertical-align: top;
  }
}

/*-- nav -------------------*/
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  height: auto;
  display: flex;
  justify-content: right;
  align-items: center;
}
@media screen and (max-width: 479px) {
  .container {
    display: none;
  }
}

.container nav .menu {
  display: flex;
  justify-content: space-between;
  grid-template-columns: repeat(4, 1fr);
}

.container nav .menu .menu_item {
  position: relative;
}

.container nav .menu .menu_item a,
.container nav .menu .menu_item .sub_menu_item a {
  display: inline-block;
  width: 100%;
  margin-right: 30px;
  text-align: center;
  color: #333333;
  font-size: clamp(12px, calc(15 / 1200 * 100vw), 15px);
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  background-color: #ffffff;
}

.container nav .menu .menu_item .sub_menu {
  position: absolute;
  width: 100%;
  display: none;
}

.container nav .menu .menu_item .sub_menu_item a {
  padding: 10px 0;
  border-bottom: 1px solid #cccccc;
  font-size: clamp(11px, calc(13 / 1200 * 100vw), 13px);
}

.container a:hover {
  color: #f6ad33 !important;
}

.container nav .menu .fa-angle-down {
  margin-left: 5px;
}

.btn_bosyu a {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  width: 84px;
  background-color: #f9a43d;
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  padding: 3px 0;
}
/* SPでも同じスタイルのため、メディアクエリは不要 */

/*-- sp nav -------------------*/
#nav-menu {
  display: none;
}
@media screen and (max-width: 479px) {
  #nav-menu {
    display: block;
  }
}

.sp_navBTN {
  display: none;
}
@media screen and (max-width: 479px) {
  .sp_navBTN {
    display: block;
    position: fixed;
    top: 5px;
    right: 10px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .sp_navBTN__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #f6ad33;
    transition: all 0.4s;
  }
  .sp_navBTN__line:nth-of-type(1) {
    top: 14px;
  }
  .sp_navBTN__line:nth-of-type(2) {
    top: 23px;
  }
  .sp_navBTN__line:nth-of-type(3) {
    top: 32px;
  }
  .sp_navBTN.active .sp_navBTN__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .sp_navBTN.active .sp_navBTN__line:nth-of-type(2) {
    opacity: 0;
  }
  .sp_navBTN.active .sp_navBTN__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
}

@media screen and (max-width: 479px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 84%;
    height: 100vh;
    background-color: #fff2db;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s;
    z-index: 90;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav__list {
    margin: 0;
    padding: 100px 0 0;
    list-style: none;
  }
  .nav__item {
    padding: 0 20px;
  }
  .nav__link {
    display: block;
    padding: 15px 0;
    color: #f6ad33;
    text-decoration: none;
    border-bottom: 1px solid #f6ad33;
  }
  .nav__link a {
    color: #f6ad33 !important;
  }
  #open_navlist .sp_nav_top {
    width: 100%;
    margin-top: 0;
    padding-top: 62px;
  }
  #open_navlist .sp_nav_top a {
    display: block;
    border-top: 1px solid #f9a43d;
    border-bottom: 1px solid #f9a43d;
    width: 90%;
    padding: 12px 0 12px 10%;
    color: #f9a43d;
    font-size: 1.5rem;
  }
  #open_navlist .sp_nav_inner {
    border-bottom: 1px solid #f9a43d;
    padding: 12px 0;
  }
  #open_navlist .sp_nav_inner p {
    font-size: 1.5rem;
    margin: 0 0 5px 10%;
    color: #f9a43d;
  }
  #open_navlist .sp_nav_inner p a {
    color: #f9a43d;
  }
  #open_navlist .sp_nav_inner li {
    list-style: none;
    text-align: left;
  }
  #open_navlist .sp_nav_inner li a {
    color: #f9a43d;
    text-decoration: none;
    padding: 5px;
    margin-left: 10%;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 1.4rem;
    line-height: 1.3em;
  }
  #open_navlist .sp_nav_inner li a:hover {
    color: #808080;
  }
  #open_navlist .sp_nav_inner li a span {
    font-size: 1.3rem;
  }
  #open_navlist .sp_nav_inner li a .fa-caret-right {
    margin-right: 3%;
  }
}

/*-- mainvis -------------------*/
.mainvis {
  width: 100%;
  /* height: 1580px; */
  padding-top: 60px;
}
@media screen and (max-width: 479px) {
  .mainvis {
    height: auto;
    padding-top: 0;
    background-image: none;
    position: relative;
    z-index: 997;
    min-width: 100%;
  }
}

.mainvis_inner_sp {
  display: none;
}
@media screen and (max-width: 479px) {
  .mainvis_inner_sp {
    display: block;
    width: 100%;
  }
  .mainvis_inner_sp h2 {
    width: 100%;
    height: 280px;
    background-image: url(../../images/index/mainvis.png);
    background-size: cover;
    background-position: center;
  }
  .mainvis_inner_sp .spmv_date {
    width: 90%;
    padding: 20px 5%;
    background-image: url(../../images/index/bg.png);
    background-position: center;
    background-repeat: repeat-y;
    background-size: cover;
  }
  .mainvis_inner_sp .spmv_date ul li {
    margin-bottom: 10px;
  }
  .mainvis_inner_sp .spmv_date p.scrl {
    font-size: 1.6rem;
    background-color: #f6ad33;
    color: #ffffff;
    text-align: center;
    display: block;
    width: 40%;
    border-radius: 50px;
    margin: 30px auto 10px auto;
  }
  .mainvis_inner_sp .spmv_date p {
    text-align: center;
  }
}

.mainvis .mainvis_inner_pc {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 479px) {
  .mainvis .mainvis_inner_pc {
    display: none;
  }
}

.mainvis .mainvis_inner_pc .mv_ph {
  width: 100%;
  height: 580px;
  margin: auto;
  background-image: url(../../images/index/mainvis.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mainvis .mainvis_inner_pc .pcmv_date {
  width: 100%;
  margin-top: 0;
  background-image: url(../../images/index/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.mainvis .mainvis_inner_pc .pcmv_date h2 {
  width: 560px;
  margin: auto;
}

.mainvis .mainvis_inner_pc .pcmv_date h2 img {
  margin-top: -80px;
}

.mainvis .mainvis_inner_pc .pcmv_date .flex_outer {
  width: 60%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.mainvis .mainvis_inner_pc .pcmv_date .flex_outer ul {
  width: 60%;
}

.mainvis .mainvis_inner_pc .pcmv_date .flex_outer p {
  width: 30%;
}

.mainvis .mainvis_inner_pc .pcmv_date .btn {
  width: 20%;
  margin: 0 auto 20px auto;
  color: #ffffff;
  text-align: center;
  background-color: #f9a43d;
  font-size: 2.4rem;
  padding: 10px 0;
  border-radius: 50px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.mainvis .mainvis_inner_pc .pcmv_date .btn a:hover {
  opacity: 0.8;
}

.mainvis .mainvis_inner_pc .pcmv_date .arrow {
  text-align: center;
  margin-bottom: 50px;
}

/*-- contents -------------------*/
#contents {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  flex-grow: 1; /* main要素ができる限りスペースを埋めるように伸びる */
}
#contents:after {
  content: ".";
  display: block;
  clear: both !important;
  height: 0;
  visibility: hidden;
}

@media screen and (max-width: 479px) {
  #contents {
    min-width: 100%;
  }
}

/*-- main (index) -------------------*/
.index .main {
  margin-top: 0;
}
@media screen and (max-width: 479px) {
  .index {
    width: 100%;
  }
  .index .main {
    margin-top: 5%;
  }
  .index .main .line {
    margin-top: 30px;
  }
}

.box01 {
  max-width: 1200px;
  margin: 80px auto 0;
  padding-bottom: 70px;
  background-image: url(../../images/index/chemistry_bg.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 80% auto;
}
@media screen and (max-width: 479px) {
  .box01 {
    width: 100%;
    padding-bottom: 90px;
    background-image: url(../../images/index/chemistry_bg_sp.webp);
    background-position: center bottom;
    background-size: 80% auto;
  }
}

@media screen and (max-width: 479px) {
  .box01 dl {
    width: 90%;
    margin: auto;
  }
}

.box01 dl dt {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 479px) {
  .box01 dl dt {
    width: 100%;
  }
}

.box01 dl dd {
  font-size: 2rem;
  font-weight: 600;
  line-height: 5rem;
  text-align: center;
  text-decoration: underline #f6ad33 3px;
  margin-top: 30px;
}
@media screen and (max-width: 479px) {
  .box01 dl dd {
    width: 100%;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 3.5rem;
    text-align: left;
    text-decoration: none;
  }
}

.box01 dl dd.notice {
  font-size: 1.6rem;
  text-decoration: none;
  font-weight: normal;
}
.box01 dl dd.notice a {
  text-decoration: underline;
  color: #f6ad33;
}
@media screen and (max-width: 479px) {
  .box01 dl dd.notice {
    font-size: 1.2rem;
    margin-top: 0 !important;
  }
}

.box02 {
  width: 96%;
  margin: auto;
  padding: 80px 2%;
  background-color: #fff2db;
}
@media screen and (max-width: 479px) {
  .box02 {
    padding: 50px 2%;
  }
}

.box02 .flex_outer {
  /* min-width: 1130px; */
  margin: auto;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 479px) {
  .box02 .flex_outer {
    width: 100%;
    flex-direction: column;
  }
}

.box02 .flex_outer a {
  width: 46%;
  max-width: 540px;
  min-width: 320px;
  padding: 20px 0;
  background-color: #ffffff;
  border-radius: 20px;
  border: 4px solid #f6ad33;
}
.box02 .flex_outer a:hover {
  opacity: 0.6;
  transition: 0.8s;
}
@media screen and (max-width: 479px) {
  .box02 .flex_outer a {
    width: 90%;
    margin: 0 auto 30px auto;
  }
}

.box02 .flex_outer a .box02_item dt {
  width: 90%;
  margin: auto;
}

.box02 .flex_outer a .box02_item dd {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .box02 .flex_outer a .box02_item dd {
    font-size: 1.6rem;
  }
}

.box02 .flex_outer a:first-child dd {
  color: #f6ad33;
  margin-top: 20px;
}

.box02 .flex_outer a:last-child dd {
  color: #f6ad33;
  margin-top: 5px;
}

.box03 {
  width: 96%;
  padding: 80px 2%;
}
@media screen and (max-width: 479px) {
  .box03 {
    width: 100%;
    padding: 0;
  }
}

.box03 .flex_outer {
  margin: auto;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 479px) {
  .box03 .flex_outer {
    width: 100%;
    gap: 0;
    /* display: block !important; */
  }
}

.box03 .flex_outer a {
  width: 46%;
  max-width: 540px;
  min-width: 320px;
  background-color: #fff2db;
  border-bottom: 10px solid #f6ad33;
  display: block;
}
.box03 .flex_outer a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 479px) {
  .box03 .flex_outer a {
    width: 100%;
    border-bottom-width: 0px;
    margin-top: 2px;
  }
}

.box03 .flex_outer a dl dt {
  width: 100%;
  background-color: #f6ad33;
  font-size: 3rem;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
}
@media screen and (max-width: 479px) {
  .box03 .flex_outer a dl dt {
    font-size: 2rem;
    font-weight: 700;
    /* padding: 10px 0; */
  }
}

.box03 .flex_outer a dl dd {
  text-align: center;
  padding: 10px 0;
}

.box04 {
  width: 92%;
  margin: auto;
  padding: 0 4%;
}
@media screen and (max-width: 479px) {
  .box04 {
    width: 96%;
    padding: 0 2%;
  }
}
/*-- footer -------------------*/
footer {
  width: 100%;
}

footer .inner {
  background-color: #f6ad33;
  padding: 30px 4%;
}

footer .flex_outer {
  width: 100%;
  margin: auto;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}
@media screen and (max-width: 479px) {
  footer .flex_outer {
    width: 90%;
    justify-content: space-between;
    gap: 0;
  }
}

footer .footer_nav {
  display: flex;
  flex-direction: column;
}

footer .footer_nav p {
  font-size: 1.6rem;
  color: #ffffff;
  margin: 8px 0 6px;
}
@media screen and (max-width: 479px) {
  footer .footer_nav p {
    font-size: 1.4rem;
    /* margin-bottom: 15px; */
  }
}

footer .footer_nav p a {
  color: #ffffff;
  text-align: left;
}

footer .footer_nav ul {
  display: flex;
  flex-direction: column;
}
footer .footer_nav ul li {
  width: 12em;
  margin-bottom: 12px;
  margin-left: 1em;
}
@media screen and (max-width: 479px) {
  footer .footer_nav ul li {
    margin-bottom: 10px;
  }
}

footer .footer_nav a {
  color: #ffffff;
  /* display: inline-block; */
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s ease;
}
footer .footer_nav a:hover {
  border-bottom-color: currentColor;
}
@media screen and (max-width: 479px) {
  footer .footer_nav ul li a {
    font-size: 1.2rem;
  }
}

footer .footer_nav ul li a .fa-caret-right {
  margin-right: 2%;
}

footer .link_list {
  width: 90%;
  margin: auto;
  padding: 8px 5%;
  background-color: #e3e3e3;
}
@media screen and (max-width: 479px) {
  footer .link_list {
    /* width: 48%; */
    /* padding: 30px 0 10px 0; */
    /* background-color: transparent; SPでは背景色なし */
  }
}

footer .link_list ul {
  display: flex;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 479px) {
  footer .link_list ul {
    width: 90%;
    margin: auto;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 479px) {
  footer .link_list ul li {
    margin: 5px 0;
  }
}

footer .link_list ul li a {
  text-align: center;
  color: #777;
  font-size: 1.2rem;
  transition: 0.3s;
  letter-spacing: 0.08rem;
}
footer .link_list ul li a:hover {
  color: #07b1d9;
}

footer .copy {
  width: 100%;
  background-color: #ffffff;
  padding: 4px 0;
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 479px) {
  footer .copy {
    padding: 20px 0;
    font-size: 1.2rem;
  }
}

/*-- gallery -------------------*/
@media screen and (max-width: 479px) {
  .gallery {
    padding-top: 80px;
  }
}

.gallery .main {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  padding: 70px 4%;
}
@media screen and (max-width: 479px) {
  .gallery .main {
    padding-top: 0px;
  }
}

.gallery .ttl h1 {
  text-align: center;
  width: 45%;
  margin: auto;
  padding: 60px 0 50px 0;
}
@media screen and (max-width: 479px) {
  .gallery .ttl h1 {
    width: 90%;
    padding: 0 0 30px 0;
  }
}

.gallery .ttl p {
  font-size: 1.8rem;
  text-align: center;
  color: #f6ad33;
  font-weight: 500;
  line-height: 3rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
  .gallery .ttl p {
    font-size: 1.4rem;
    text-align: left;
    font-weight: bold;
    line-height: 1.8em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery .photo {
  /* margin-bottom: 90px; */
}
@media screen and (max-width: 479px) {
  .gallery .photo {
    width: 90%;
    margin: 0 auto 90px auto;
  }
  .gallery .photo p {
    width: 100%;
    margin: auto;
    padding: 40px 0 20px 0;
  }
}

#contents.gallery .photo h2 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.7rem;
  text-align: center;
  color: #ffffff;
  background-color: #f6ad33;
  width: 92%;
  margin: 0 auto 60px auto;
  border-radius: 50px;
}
@media screen and (max-width: 800px) {
  #contents.gallery .photo h2 {
    font-size: 2rem;
    margin: 20px auto 40px auto;
  }
}

.gallery .photo ul {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gallery .photo ul::after {
  content: "";
  display: block;
  width: 31%;
}
@media screen and (max-width: 479px) {
  .gallery .photo ul {
    overflow-x: scroll;
  }
  .gallery .photo ul::after {
    display: none;
  }
}

.gallery .photo ul li {
  width: 31%;
  margin-bottom: 40px;
}
@media screen and (max-width: 479px) {
  .gallery .photo ul li {
    min-width: 100%;
    margin-bottom: 1em;
  }
}

/*-- QandA -------------------*/
.QandA {
  background-color: #fff2db;
  padding-bottom: 50px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 479px) {
  .QandA {
    padding-top: 80px;
  }
}

.QandA .main {
  width: 96%;
  max-width: 870px;
  margin: auto;
  padding: 70px 2% 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 479px) {
  .QandA .main {
    width: 90%;
    padding-top: 0px;
  }
}

.QandA .ttl h1 {
  text-align: center;
  width: 96%;
  margin: auto;
  padding: 60px 0;
}
@media screen and (max-width: 479px) {
  .QandA .ttl h1 {
    padding: 0 0 30px 0;
  }
}

.QandA .QandA_box {
  width: 100%;
  margin-bottom: 100px;
}

.QandA .QandA_box dl.question {
  width: 97%;
  display: flex;
  align-items: center;
}

.QandA .QandA_box dl.question dt {
  width: 12%;
  height: auto;
}

.QandA .QandA_box dl.question dd {
  width: 88%;
  font-size: 2rem;
  font-weight: 600;
  padding: 20px 0;
  border-bottom: dashed 2px #f6ad33;
}
@media screen and (max-width: 479px) {
  .QandA .QandA_box dl.question dd {
    font-size: 1.6rem;
    padding: 5px 0;
  }
}

.QandA .QandA_box dl.answer {
  width: 92%;
  margin-left: 5%;
  margin-top: 30px;
  background-color: #ffffff;
  border: 2px solid #f6ad33;
  display: flex;
  justify-content: right;
  position: relative;
}
@media screen and (max-width: 479px) {
  .QandA .QandA_box dl.answer {
    width: 95%;
    margin-left: 0;
    display: block;
  }
}

.QandA .QandA_box dl.answer::after {
  content: "";
  background-color: #ffc560;
  border: 2px solid #f6ad33;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -20px;
  left: 2%;
  z-index: -1 !important;
}
@media screen and (max-width: 479px) {
  .QandA .QandA_box dl.answer::after {
    bottom: -15px;
    left: 3%;
  }
}

.QandA .QandA_box dl.answer dt {
  width: 12%;
  height: auto;
  padding: 20px 3%;
}
@media screen and (max-width: 479px) {
  .QandA .QandA_box dl.answer dt {
    width: 16%;
    position: absolute;
    top: -40px;
    left: -15px;
  }
}

.QandA .QandA_box dl.answer dd {
  width: 82%;
  height: auto;
  padding: 30px 5% 40px 0;
  font-size: 1.6rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 479px) {
  .QandA .QandA_box dl.answer dd {
    width: 92%;
    padding: 22px 4% 20px 4%;
    font-size: 1.4rem;
    line-height: 3.2rem;
    margin: auto;
  }
}

.QandA .QandA_box .answer_outer .shadow {
  width: 98%;
  height: 272px;
  background-color: #fff2db;
  border: 2px solid #f6ad33;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 888;
}

/*-- place -------------------*/
.place {
  padding: 130px 0 90px 0;
  background-color: #fff2db;
}
@media screen and (max-width: 479px) {
  .place {
    padding: 80px 0 90px 0;
  }
}

.place .main {
  width: 960px;
  margin: auto;
}
@media screen and (max-width: 479px) {
  .place .main {
    width: 100%;
  }
}

.place .main .ttl h1 {
  width: 75%;
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 479px) {
  .place .main .ttl h1 {
    width: 90%;
    margin: 0 auto 30px auto;
  }
}

.place .main .ttl p {
  width: 75%;
  margin: auto;
  font-size: 1.8rem;
  color: #f6ad33;
  font-weight: 500;
  line-height: 3rem;
}
@media screen and (max-width: 479px) {
  .place .main .ttl p {
    width: 90%;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8em;
  }
}

.place_list {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  max-width: 960px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 479px) {
  .place_list {
    max-width: 90%;
    width: 90%;
  }
}

.place_name {
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}
.place_name::after {
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  width: 8px;
}
.place_name.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

.place_content {
  display: none;
  background-color: #ffffff;
  margin-bottom: 70px;
}
@media screen and (max-width: 479px) {
  .place_content {
    margin-bottom: 40px;
  }
}

.place_content .flex_outer {
  width: 100%;
  justify-content: space-between;
}

.place_content h3 {
  color: #ffffff;
  font-size: 1.6rem;
  text-align: center;
  padding: 10px 0;
}
@media screen and (max-width: 479px) {
  .place_content h3 {
    font-size: 1.1rem;
  }
}

.place_content ul li {
  padding: 10px 0;
}

.place_content .name {
  width: 14.5%;
}
@media screen and (max-width: 479px) {
  .place_content .name {
    width: 13%;
  }
}

.place_content .school {
  width: 58%;
}
@media screen and (max-width: 479px) {
  .place_content .school {
    width: 60%;
  }
}

.place_content .address {
  width: 27%;
}
@media screen and (max-width: 479px) {
  .place_content .address {
    width: 26%;
  }
}

.place_content .name ul li {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .place_content .name ul li {
    font-size: 1rem;
  }
}

.place_content .school ul li {
  font-size: 1.6rem;
  text-align: left;
  padding-left: 2%;
}
@media screen and (max-width: 479px) {
  .place_content .school ul li {
    font-size: 1rem;
  }
}

.place_content .address ul li {
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 479px) {
  .place_content .address ul li {
    font-size: 1rem;
  }
}

.place_content .item2 {
  height: auto;
  padding-bottom: 10px;
}

.place_content .name ul .item2 {
  line-height: 4.8rem;
}
@media screen and (max-width: 479px) {
  .place_content .name ul .item2 {
    line-height: 3rem;
  }
}

.place_item:nth-child(odd) .place_name {
  color: #f6ad33;
  border-bottom: 3px solid #ffda9b;
}
.place_item:nth-child(odd) .place_name::after {
  border-right: solid 2px #f6ad33;
  border-top: solid 2px #f6ad33;
}
.place_item:nth-child(odd) h3 {
  background-color: #ffda9b;
}
.place_item:nth-child(odd) .place_content ul li:nth-child(odd) {
  background-color: #ffffff;
}
.place_item:nth-child(odd) .place_content ul li:nth-child(even) {
  background-color: #fff3df;
}

.place_item:nth-child(even) .place_name {
  color: #07b1d9;
  border-bottom: 3px solid #98dae9;
}
.place_item:nth-child(even) .place_name::after {
  border-right: solid 2px #07b1d9;
  border-top: solid 2px #07b1d9;
}
.place_item:nth-child(even) h3 {
  background-color: #98dae9 !important;
}
.place_item:nth-child(even) .place_content ul li:nth-child(odd) {
  background-color: #ffffff;
}
.place_item:nth-child(even) .place_content ul li:nth-child(even) {
  background-color: #e6faff;
}

/*-- guideline -------------------*/
#contents.guideline {
  padding: 130px 0 90px 0;
  background-color: #fff2db;
}
@media screen and (max-width: 479px) {
  #contents.guideline {
    padding: 80px 0 0 0;
    background-color: #ffffff;
    width: 100%;
  }
}

#contents.guideline .main {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  background-color: #ffffff;
  padding: 90px 0;
}
@media screen and (max-width: 479px) {
  #contents.guideline .main {
    width: 90%;
    padding: 0;
  }
}

#contents.guideline .main h1 {
  color: #005bab;
  /* width: 75%; */
  margin: 0 auto 70px auto;
}
@media screen and (max-width: 479px) {
  .guideline .main h1 {
    width: 100%;
  }
}

#contents.guideline section {
  width: 75%;
  margin: 0 auto 40px auto;
}
@media screen and (max-width: 479px) {
  #contents.guideline section {
    width: 100%;
  }
}

#contents.guideline section h2 {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.8rem;
  text-align: center;
  color: #ffffff;
  background-image: linear-gradient(88deg, rgba(64, 198, 236, 1), rgba(255, 208, 42, 1));
  border-radius: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 479px) {
  #contents.guideline section h2 {
    font-size: 2rem;
    /* background-image: none; */
    /* background-color: #f6ad33; */
  }
}

#contents.guideline section .txt {
  font-size: 2rem;
  line-height: 4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  #contents.guideline section .txt {
    font-size: 1.6rem;
    line-height: 3.2rem;
  }
}
@media screen and (max-width: 479px) {
  #contents.guideline section .txt {
    font-size: 1.4rem;
    line-height: 1.8em;
  }
}

#contents.guideline section .txt a {
  color: #005bab;
  font-size: 2.6rem;
  font-weight: 600;
}
#contents.guideline section .txt a:hover {
  color: #99cfff;
}
@media screen and (max-width: 479px) {
  #contents.guideline section .txt a {
    font-size: 1.6rem;
  }
}

#contents.guideline section .notice {
  font-size: 1.5rem;
  line-height: 3rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 479px) {
  #contents.guideline section .notice {
    font-size: 1.2rem;
    line-height: 1.8em;
  }
}

#contents.guideline section .date {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
@media screen and (max-width: 479px) {
  #contents.guideline section .date {
    font-size: 1.6rem;
    text-align: left;
  }
}

#contents.guideline .point {
  position: relative;
  margin: 2em 0;
  padding: 0.5em 1em;
  border: solid 3px #005bab;
}
#contents.guideline .point .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: -3px;
  padding: 5px 15px;
  line-height: 1;
  font-size: 1.9rem;
  color: #ffffff;
  background-color: #005bab;
  font-weight: 600;
}
#contents.guideline .point ul {
  margin: 0;
  padding: 30px 0 20px 0;
}
#contents.guideline .point ul li {
  font-size: 1.6rem;
  margin-bottom: 10px;
  text-indent: -1.6em;
  margin-left: 1.6em;
}
@media screen and (max-width: 479px) {
  #contents.guideline .point ul li {
    font-size: 1.4rem;
    line-height: 1.8em;
  }
}
#contents.guideline .point ul li span {
  color: #005bab;
  font-size: 1.5rem;
  margin-right: 10px;
}

#contents.guideline .test_date:nth-of-type(1) {
  margin-bottom: 60px;
}
#contents.guideline .test_date div {
  margin-bottom: 20px;
}
#contents.guideline .test_date h3 {
  display: inline;
  font-size: 1.8rem;
  line-height: 2.2rem;
  font-weight: 600;
  vertical-align: middle;
  color: #005bab;
  letter-spacing: 0.2em;
  border: 1px solid #005bab;
  padding: 2px 2px 2px 6px;
  margin-right: 0.5em;
}
@media screen and (max-width: 479px) {
  #contents.guideline .test_date h3 {
    /* font-size: 1.5rem; */
    /* padding: 5px 6% 5px 2%; */
  }
}
#contents.guideline .test_date span {
  font-size: 1.4rem;
  line-height: 2.2rem;
  vertical-align: middle;
  color: #ffffff;
  background-color: #005bab;
  border-radius: 24px;
  padding: 2px 10px 3px;
  /* margin-left: 1%; */
  /* letter-spacing: normal; */
  /* white-space: normal; */
}
@media screen and (max-width: 479px) {
  #contents.guideline .test_date h3 span {
    /* font-size: 1.3rem; */
    /* padding: 3px 4%; */
    /* margin-left: 0; */
  }
}
#contents.guideline .test_date p {
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 479px) {
  #contents.guideline .test_date p {
    font-size: 1.6rem;
  }
}
#contents.guideline .test_date p span {
  font-size: 2rem;
  font-weight: normal;
}
@media screen and (max-width: 479px) {
  #contents.guideline .test_date p span {
    font-size: 1.5rem;
  }
}

#contents.guideline .program {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
@media screen and (max-width: 800px) {
  #contents.guideline .program {
    flex-direction: column;
    gap: 15px;
  }
}
#contents.guideline .program p {
  font-size: 1.7rem;
}
@media screen and (max-width: 479px) {
  #contents.guideline .program p {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
#contents.guideline .program p span {
  background-color: #005bab;
  color: #ffffff;
  padding: 3px 20px;
  border-radius: 20px;
  margin-right: 10px;
}

#contents.guideline .test_date p.test_place {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 479px) {
  #contents.guideline .test_date p.test_place {
    font-size: 1.5rem;
  }
}

#contents.guideline .criterion {
  margin-top: 20px;
}
#contents.guideline .criterion dt {
  font-size: 2rem;
  color: #005bab;
  margin-bottom: 10px;
}
#contents.guideline .criterion dd {
  font-size: 1.7rem;
  /* margin-bottom: 50px; */
  line-height: 1.8em;
  text-indent: -2em;
  margin-left: 2em;
}
@media screen and (max-width: 479px) {
  #contents.guideline .criterion dd {
    font-size: 1.4rem;
    line-height: 1.8em;
  }
}

#contents.guideline .award {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
@media screen and (max-width: 479px) {
  #contents.guideline .award {
    display: block;
  }
}
#contents.guideline .award li {
  font-size: 1.8rem;
  font-weight: 600;
  background-image: url(../../images/guideline/ico_crown.webp);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 27px 22px;
  padding-left: 30px;
  margin: 0 4% 20px 0;
}
@media screen and (max-width: 479px) {
  #contents.guideline .award li {
    font-size: 1.6rem;
    background-size: 20px 16px;
    padding-left: 25px;
    margin: 0 0 10px 0;
  }
}

#contents.guideline .vote {
  font-size: 2.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}
@media screen and (max-width: 479px) {
  #contents.guideline .vote {
    font-size: 1.6rem;
  }
}
#contents.guideline .vote span {
  color: #005bab;
  margin-right: 2%;
}

#contents.guideline .dl_pdf h4 {
  width: 98%;
  color: #f6ad33;
  font-size: 2.6rem;
  font-weight: 600;
  background-color: #fff2db;
  border-bottom: 3px solid #f6ad33;
  padding: 5px 2%;
}
@media screen and (max-width: 479px) {
  #contents.guideline .dl_pdf h4 {
    width: 100%;
    font-size: 2rem;
    padding: 5px 0;
    text-align: center;
  }
}
#contents.guideline .dl_pdf .flex_outer {
  width: 94%;
  margin: auto;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  #contents.guideline .dl_pdf .flex_outer {
    display: block;
  }
}
#contents.guideline .dl_pdf .left {
  width: 30%;
  margin-top: 30px;
}
@media screen and (max-width: 479px) {
  #contents.guideline .dl_pdf .left {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
#contents.guideline .dl_pdf .right {
  width: 62%;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 479px) {
  #contents.guideline .dl_pdf .right {
    width: 100%;
    position: unset;
  }
}
#contents.guideline .dl_pdf .right p {
  font-size: 1.8rem;
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
}
@media screen and (max-width: 800px) {
  #contents.guideline .dl_pdf .right p {
    font-size: 1.6rem;
    position: unset;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 800px) {
  #contents.guideline .dl_pdf .right p {
    font-size: 1.4rem;
  }
}
#contents.guideline .dl_pdf .right .dl_btn {
  /* width: 68%; */
  /* position: absolute; */
  /* bottom: 0; */
  /* left: 0; */
  margin-top: 20px;
}
@media screen and (max-width: 479px) {
  #contents.guideline .dl_pdf .right .dl_btn {
    width: 100%;
    position: unset;
  }
}
#contents.guideline .dl_pdf .right .dl_btn a {
  display: inline-block;
  color: #f6ad33;
  font-size: 1.5rem;
  border-radius: 50px;
  border: 1px solid #f6ad33;
  text-align: center;
  padding: 3px 1em;
}
#contents.guideline .dl_pdf .right .dl_btn a:hover {
  background-color: #f6ad33;
  color: #ffffff;
}
#contents.guideline .dl_pdf .right .dl_btn .fa-angle-right {
  margin-right: 10px;
}
#contents.guideline .dl_pdf .dl_btn a span img {
  width: 16px;
  height: auto;
  margin-left: 10px;
  margin-bottom: 3px;
}

/*-- 下層ページ共通 -------------------*/
#contents.organization,
#contents.privacy-policy,
#contents.contact,
#contents.link,
#contents.sponsorship,
#contents.past-exam {
  padding: 130px 0 90px 0;
  background-color: #fff2db;
  font-size: 14px;
}

#contents .ttl h1 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 50px;
  color: #f9a43d;
}

#contents .content-frame {
  background-color: #fff;
  padding: 50px 0;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

#contents .content-wrap {
  width: 92%;
  max-width: 640px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
#contents .content-wrap > p {
  width: calc(96% - 1em);
  margin: auto;
}

#contents section h2 {
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.6em;
  background: #f6f6f6;
  margin-bottom: 1em;
  padding-left: 0.5em;
}
@media screen and (max-width: 800px) {
  #contents section h2 {
    font-size: 1.4rem;
  }
}

#contents section h3 {
  line-height: 2em;
}

#contents .list-level1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3em;
}

#contents ol.list-level1 {
  list-style: decimal;
}
#contents ol.list-level1 > li {
  list-style-position: inside;
  width: ;
}
#contents ol.list-level1 > li::marker {
  font-size: 1.2em;
  line-height: 1.6em;
}
#contents ol.list-level1 > li::first-line {
  border-bottom: #000 solid 1px;
}
#contents ol.list-level1 > li > h2 {
  display: inline-block;
  background-color: transparent;
  padding-left: 0;
}

#contents .text-content {
  margin-left: 1em;
  line-height: 1.6em;
  text-align: justify;
  width: calc(96% - 1em);
}

#contents .text-content p {
  margin-bottom: 0.5em;
}

.list-level2 {
  margin-left: 1em;
}

.list-level2 dl {
  display: flex;
}

.list-level2 dd {
  margin-left: 1em;
}

.organization dl.list-level2 {
  display: grid;
  grid-template-columns: 5em auto;
  gap: 10px 0;
  line-height: 1.6em;
}

#contents.link .list-level1 {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 800px) {
  #contents.link .list-level1 {
    margin-left: 1em;
  }
}

#contents.link .list-level1 li {
  width: 47%;
  min-width: 20em;
}

#contents .button-links a {
  text-decoration: underline;
}
#contents .button-links a::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5em;
  background-color: #e45a0b;
}

.sponsorship .list-level2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sponsorship .list-level2 div:has(img) {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.sponsorship .list-level2 img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/*-- 最新情報 -------------------*/
.latest-news-erea {
  max-width: 960px;
  margin: 80px auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .latest-news-erea {
    flex-direction: column;
  }
}
.latest-news-erea h2 {
  color: #f9a43d;
  font-size: 2em;
  font-weight: 500;
  height: 5rem;
  margin-right: 1em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 800px) {
  .latest-news-erea h2 {
    width: 100%;
    margin-right: 0;
  }
}
.latest-news-list {
  flex: 1;
}

.latest-news-list-item {
  border-bottom: #333333 solid 1px;
  margin: 10px 0;
}
.latest-news-list-item:not(:nth-of-type(1)) {
  margin-top: 30px;
}

.latest-news-list-item dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4r em;
}
.latest-news-list-item dt {
  line-height: 2em;
  /* min-width: 8em; */
  margin-right: 1em;
}
@media screen and (max-width: 800px) {
  .latest-news-list-item dt {
    width: 100%;
    margin-right: 0;
  }
}

.latest-news-list-item dd {
  line-height: 2em;
}

/*-- 過去問テーブル -------------------*/
.exam__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
}

.exam__table tbody,
.exam__table th,
.exam__table td {
  border: 1px solid #ccc;
  padding: 8px 12px;
  text-align: center;
  min-width: 2em;
}

.exam__table th {
  background-color: #f4f4f4;
}

.exam__table td.table__item {
  min-width: 3em;
}

.exam__table tbody tr:nth-of-type(odd) td:nth-of-type(5),
.exam__table tbody tr:nth-of-type(even) td:nth-of-type(4) {
  text-align: left;
}

.exam__table td a {
  text-decoration: none;
}

.dl-doc-tag {
  display: block;
  width: fit-content;
  color: #336;
  padding: 2px 5px;
  margin: 2px;
  border-radius: 4px;
  background-color: #ebebeb;
  box-shadow: 0 1px 0 #9f9f9f;
}
.dl-doc-tag:not(:nth-last-of-type(1)) {
  margin-bottom: 10px;
}

.dl-doc-icon {
  position: relative;
  border-radius: 5px;
  padding: 2px 6px;
  background-color: #ccf7ff;
  box-shadow: 0 1px 0 #61c5ff;
}
.dl-doc-icon:hover .download.icon {
  color: #0099cc;
}

.exam__table tbody tr:nth-of-type(odd) .table__item:nth-of-type(4) .dl-doc-icon,
.exam__table tbody tr:nth-of-type(even) .table__item:nth-of-type(3) .dl-doc-icon {
  background-color: #ffeecc;
  box-shadow: 0 1px 0 #ffaa00;
}

.dl-doc-icon::after {
  content: "";
  display: inline-block;
  padding-left: 21px;
}

.download.icon {
  color: #000;
  position: absolute;
  margin-left: 3px;
  margin: 0 3px;
  margin-top: 12px;
  width: 13px;
  height: 4px;
  border-radius: 1px;
  border: solid 1px currentColor;
  border-top: none;
}
.download.icon:before {
  content: "";
  position: absolute;
  left: 6px;
  top: -9px;
  width: 1px;
  height: 10px;
  background-color: currentColor;
}
.download.icon:after {
  content: "";
  position: absolute;
  left: 4px;
  top: -4px;
  width: 4px;
  height: 4px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.table__label__header {
  background-color: #e6e6e6;
}

@media (max-width: 600px) {
  .exam__table thead {
    display: none;
  }
  .exam__table td {
    display: block;
  }
  .exam__table td.table__item {
    text-align: left;
    border: none;
    border-bottom: 1px solid #ccc;
  }
  .exam__table td.table__label__year,
  .exam__table td.table__label__ordinal-num {
    display: table-cell;
  }
  .dl-doc-icon {
    padding: 2px 1.4em;
    margin: 2px;
    display: inline-block;
  }
  .dl-doc-icon::after {
    content: attr(data-label);
    padding-left: 0;
  }
  .download.icon,
  .download.icon::before,
  .download.icon::after {
    display: none;
  }
}
