﻿@charset "UTF-8";
/*

    THIS IS THE STYLESHEET FOR BUNRI TEACHERS' SITE.

*/
/*
----------------------------------------
    fonts definitions
----------------------------------------
*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
/*
----------------------------------------
    font-size/line-height definitions
----------------------------------------
*/
/*max=48px*/
/*32px*/
/*default=16px*/
/*min=10px*/
/*
----------------------------------------
    color definitions
----------------------------------------
*/
/* gray */
/* blue */
/* yellow */
/* red */
/* user */
/* admin */
/*
    breakpoint
*/
/*
    font
*/
/*
    colors
*/
.bgcolor-gr1 {
  background: #A7C957 !important;
}

.fcolor-gr1 {
  color: #A7C957 !important;
}

.bgcolor-gr2 {
  background: #459935 !important;
}

.fcolor-gr2 {
  color: #459935 !important;
}

.bgcolor-gr3 {
  background: #386641 !important;
}

.fcolor-gr3 {
  color: #386641 !important;
}

.bgcolor-pk1 {
  background: #D84D80 !important;
}

.fcolor-pk1 {
  color: #D84D80 !important;
}

.bgcolor-be1 {
  background: #FBF8EF !important;
}

.fcolor-be1 {
  color: #FBF8EF !important;
}

.bgcolor-be2 {
  background: #F2E8CF !important;
}

.fcolor-be2 {
  color: #F2E8CF !important;
}

.bgcolor-white {
  background: #FFFFFF !important;
}

.fcolor-white {
  color: #FFFFFF !important;
}

.bgcolor-bl1 {
  background: #d8effc !important;
}

.fcolor-bl1 {
  color: #d8effc !important;
}

.bgcolor-bl2 {
  background: #91d4f5 !important;
}

.fcolor-bl2 {
  color: #91d4f5 !important;
}

.bgcolor-bl3 {
  background: #467c9b !important;
}

.fcolor-bl3 {
  color: #467c9b !important;
}

/*
   utilities 
*/
html {
  font-size: 15px;
}

.wrapper {
  /*max-width: 1200px;*/
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.text-underline {
  text-decoration: underline !important;
}

.border-underline {
  border-bottom: 1px solid;
}

/*
   utilities 
*/
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-grow-1 {
  flex-grow: 1;
}
@media screen and (min-width: 992px) {
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-col {
    flex-direction: column;
  }
  .flex-md-grow-1 {
    flex-grow: 1;
  }
}

.align-items-center {
  align-items: center;
}
.align-items-top {
  align-items: flex-start;
}
.align-items-bottom {
  align-items: flex-end;
}

.justify-content-center {
  justify-content: center;
}

/*
    section
*/
.section {
  padding: 2.5rem 0;
}
.section__title {
  font-family: "Noto Sans JP";
  font-size: 1.75rem;
  padding-bottom: 2rem;
}
.section__subtitle {
  font-size: 1.5rem;
}
/*
    table
*/
.table-a {
  width: 100%;
  background: #FFFFFF;
}
.table-a.w1400 {
  width: 1400px;
}
.table-a.w2480 {
  width: 2480px;
}
.table-a.w2900 {
  width: 2900px;
}
.table-a th, .table-a td {
  border: 1px solid #D4D4D4;
  padding: 0.75rem 0.5rem;
  line-height: 1.5;
}
.table-a th:last-child, .table-a td:last-child {
  border-right: 0;
}
.table-a th {
  font-size: 0.9rem;
  font-weight: normal;
  text-align: center;
  background: #E5E5E5;
}
.table-a th:first-child {
  border-left: 0;
}
.table-a th.w-s-10 {
  width: 10%;
}
.table-a th.w-s-5 {
  width: 5%;
}
@media screen and (max-width: 991px) {
  .table-a .w-xs-5 {
    width: 5% !important;
  }
}

/*
    sticker
*/
.sticker {
  padding: 1rem;
  box-shadow: 2px 2px 2px #E5E5E5;
}
.sticker:before {
  content: "";
  display: block;
  width: 20%;
  border-top: 4px solid #FFFFFF;
  border-radius: 4px;
  margin: auto;
  margin-bottom: 1rem;
}
.sticker__title {
  color: #000000;
  font-size: 1rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
/*
    badge
*/
.badge {
  font-size: 0.5rem;
  font-weight: normal;
  color: #FFFFFF;
  background: #696969;
}

/*
    features
*/
.features {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  padding-top: 1.75rem;
}
.features__item {
  width: 33%;
  text-align: center;
  border: 1px solid #BEBEBE;
  background: #FFFFFF;
  padding: 0.75rem;
  font-weight: bold;
  position: relative;
}
.features__item:before {
  content: attr(data-feature-count);
  position: absolute;
  line-height: 2.25rem;
  height: 2rem;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 1.5rem;
  color: white;
  background: #A7C957;
  border-radius: 10rem 10rem 0 0;
}

/*
    step-item
*/
.step-item {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0.75rem;
  align-items: center;
}
.step-item:not(:last-child) {
  border-right: 1px solid #696969;
}
.step-item--arrow {
  position: relative;
}
.step-item--arrow:after {
  content: "";
  display: block;
  border: 0.75rem solid transparent;
  border-left: 0.75rem solid #696969;
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.step-item__icon {
  display: block;
  height: 8rem;
  padding: 1.25rem 0;
}
.step-item__title {
  font-size: 1.25rem;
  font-weight: bold;
  padding: 1.25rem 0;
}
.step-item__text {
  text-align: left;
}
.step-item__text p {
  font-size: 0.88rem;
}
.step-item__proc {
  height: 100%;
  background: #F2E8CF;
  padding: 0.75rem;
  position: relative;
  border: 1px dashed #696969;
  margin: 1rem auto;
}
@media screen and (max-width: 991px) {
  .step-item__proc {
    border-left-width: 0;
    border-right-width: 0;
  }
}
@media screen and (min-width: 992px) {
  .step-item__proc {
    /*margin: auto;
    border-top-width: 0;
    border-bottom-width: 0;*/
    border-left-width: 0;
    border-right-width: 0;
  }
}
.step-item__proc:before {
  content: attr(data-proc-text);
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step {
  display: flex;
}
.step-xs-row {
  flex-direction: row;
  padding: 1.5rem 0.75rem;
}
.step-xs-row-bordered {
  border-bottom: 1px solid #696969;
}
.step-xs-row-bordered:first-of-type {
  border-top: 1px solid #696969;
}
.step-xs-col {
  flex-direction: column;
  padding: 0.75rem 1.25rem;
}
@media screen and (min-width: 992px) {
  .step-md-row {
    flex-direction: row;
    padding: 1.5rem 0.75rem;
  }
  .step-md-row-bordered {
    border-bottom: 1px solid #696969;
  }
  .step-md-row-bordered:first-of-type {
    border-top: 1px solid #696969;
  }
  .step-md-col {
    flex-direction: column;
    padding: 0.75rem 1.25rem;
  }
}
.step-circle {
  position: relative;
}
.step-circle:after {
  content: "";
  display: block;
  position: absolute;
  left: 70px;
  bottom: -5px;
  width: 0.625rem;
  height: 0.625rem;
  background: #BEBEBE;
  border-radius: 50%;
}
.step-down-arrow {
  position: relative;
}
.step-down-arrow:after {
  content: "";
  display: block;
  position: absolute;
  left: 70px;
  bottom: -12px;
  width: 0.625rem;
  height: 0.625rem;
  border: 7px solid transparent;
  border-top: 12px solid #BEBEBE;
}

/*
    item-number
*/
.item-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #F2E8CF;
  border-radius: 50%;
}
.item-number > * {
  line-height: 1.5;
}
.item-number__num {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  border-radius: 0.75rem;
}

/*
    accordion-button
*/
.accordion-button {
  display: block;
  font-size: 1.25rem;
  padding: 1.25rem;
  background: #696969;
  color: #FFFFFF;
  position: relative;
}
.accordion-button:hover, .accordion-button:focus, .accordion-button:active {
  color: #FFFFFF;
}
.accordion-button:after {
  content: "－";
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.accordion-button.collapsed:after {
  content: "＋";
}

/*
    footer-nav
*/
.footer-nav {
  padding: 1rem 0;
  background: #585858;
}
.footer-nav__link {
  padding: 0 0.75rem;
  font-size: 0.88rem;
}
.footer-nav__link:hover {
  text-decoration: underline;
}
.footer-nav__link, .footer-nav__link:hover, .footer-nav__link:active, .footer-nav__link:focus {
  color: #FFFFFF;
}

/*
    button
*/
.btn-roundly {
  border-radius: 100vh !important;
}
.btn-sm {
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.5rem;
}
.btn-lg {
  padding: 0.75rem 2.5rem !important;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.42857143;
}
.btn-xl {
  padding: 1.25rem 3rem !important;
  border-radius: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.42857143;
}
.btn-primary {
  color: white;
  border: none;
  background: #D84D80;
  box-shadow: 2px 2px #F2E8CF;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  color: #000000;
  border-color: transparent;
  background: #F2E8CF;
  box-shadow: none;
}
.btn-secondary {
  color: white;
  border: none;
  background: #286090;
  box-shadow: 2px 2px #F2E8CF;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  color: #000000;
  border-color: transparent;
  background: #F2E8CF;
  box-shadow: none;
}
.btn-overlay-cs {
  position: relative;
  pointer-events: none;
  cursor: default;
}
.btn-overlay-cs:hover, .btn-overlay-cs:focus, .btn-overlay-cs:active {
  pointer-events: none;
}
.btn-overlay-cs:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  opacity: 0.6;
  top: 0;
  left: 0;
  border-radius: inherit;
}
.btn-overlay-cs:after {
  content: "";
  position: absolute;
  font-size: 90%;
  color: #000000;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.btn-apply-top {
  display: inline-block;
  background-color: #ff751f;
  color: #FFFFFF;
  padding: 16px 48px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.btn-apply-top:hover {
  background-color: #ff8a40;
  color: #ffffff;
}

/*
    text
*/
.text-remark {
  font-size: 1rem;
  padding-top: 0.5rem;
}
.text-remark:before {
  content: "※";
  padding-right: 0.2rem;
}

/*
    page
*/
.totatsudo .page-title {
  background: #A7C957;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.totatsudo .page-title__es {
  background: #6faed1;
}
.totatsudo .page-title__copy {
  color: #FFFFFF;
  font-family: "Zen Maru Gothic";
  font-size: 1.5rem;
}
.totatsudo .page-title__main-copy {
  color: #FFFFFF;
  font-family: "Zen Maru Gothic";
  font-size: 2.5rem;
}
.totatsudo .page-title__title {
  color: #FFFFFF;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1;
}
.totatsudo .page-title__title > div {
  display: inline-block;
}
.totatsudo .page-title__balloon {
  position: relative;
  display: inline-block;
}
.totatsudo .page-title__balloon:before {
  content: "文理";
  font-size: 1.25rem;
  font-family: "Zen Maru Gothic";
  background: #585858;
  border-radius: 2rem;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  position: absolute;
  top: -0.5rem;
  left: -4rem;
}
.totatsudo .page-title .brackets {
  position: relative;
}
.totatsudo .page-title .brackets:before {
  content: "「";
  position: absolute;
  top: 0;
  left: -2.5rem;
  font-size: 2.5rem;
}
.totatsudo .page-title .brackets:after {
  content: "」";
  position: absolute;
  bottom: 0;
  right: -2.5rem;
  font-size: 2.5rem;
}
.totatsudo .page-title__text {
  color: #000000;
  background: #FFFFFF;
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  line-height: 1.5;
}
.totatsudo .loading-wrapper {
  width: 22%;
  margin: auto;
  padding: 5rem;
}
.totatsudo .loading-wrapper > img {
  width: 60px;
}
.totatsudo .loading-wrapper > .progress-animation {
  width: 100%;
  height: 3px;
  background: #F3F3F3;
  border-radius: 100vh;
  position: relative;
}
.totatsudo .loading-wrapper > .progress-animation:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  background: #44BBCC;
  border-radius: 100vh;
  animation: border-stretch 1.2s linear infinite;
}

.jhs_totatsudo-btn {
  background-color: #7fbe25;
  padding: 0.25rem 2rem !important;
  border-radius: 2rem;
  font-weight: bold;
  box-shadow: 2px 2px #F2E8CF;
}
.jhs_totatsudo-btn:hover {
  color: #000000 !important;
}

/* 印刷成績表送付 */
.deliveryPrint {
  display: grid;
  grid-template-columns: 6rem 10rem 1fr;
  align-items: center;
  /*border: 0 !important;*/
}
.deliveryPrint.confirmation {
  grid-template-columns: 1fr 1fr;
}

/* 教科選択 */
.select-subject {
  width: 6rem;
  padding: 0.25rem;
  margin: 0.5rem 1rem 1rem 1rem;
}

/*
    totopを上書き
*/
.totop {
  bottom: 7rem;
}

@keyframes border-stretch {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*
---------------------------------------------
    到達度テスト　スタイル
---------------------------------------------
*/
/*
    タブ切り替え
*/
.totatsudo-tab-wrapper {
  height: 5rem;
  background-color: #fbf8ef;
  box-shadow: 0 0.5px 1px #ccc;
}
.totatsudo-tab-wrapper.totatsudo-tab-sticky {
  position: sticky;
  top: 3.5rem;
  z-index: 10;
}
.totatsudo-tab-wrapper .totatsudo-tab {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.totatsudo-tab-wrapper .totatsudo-tab_content {
  padding: 1rem;
  margin: 1rem;
  display: flex;
  justify-content: center;
  border-radius: 2rem;
  box-shadow: 0 3px 0 #F2E8CF;
  color: #717171;
  font-weight: bold;
}
.totatsudo-tab-wrapper .totatsudo-tab_content_es {
  background-color: #d8effc;
}
.totatsudo-tab-wrapper .totatsudo-tab_content_jhs {
  background-color: #eaf3d9;
}
.totatsudo-tab-wrapper .totatsudo-tab_content:hover {
  box-shadow: none;
  transform: translateY(3px);
  cursor: pointer;
}
.totatsudo-tab-wrapper .totatsudo-tab .select {
  color: #fff;
  box-shadow: none;
}
.totatsudo-tab-wrapper .totatsudo-tab .select.totatsudo-tab_content_es {
  background-color: #6faed1;
}
.totatsudo-tab-wrapper .totatsudo-tab .select.totatsudo-tab_content_jhs {
  background-color: #8ac337;
}
.totatsudo-tab-wrapper .totatsudo-tab .select:hover {
  transform: none;
}

/*
    タブ切り替えの中身のスタイル
*/
.totatsudo-content {
  width: 100%;
  background-color: #FFFFFF;
}

.v-enter-active,
.v-leave-active {
  transition: opacity 0.5s ease;
}

.v-enter-from,
.v-leave-to {
  opacity: 0;
}

/*
    トップバナー
*/
.totatsudo_wrapper {
  /*    padding: $SizeE 0;
  background-color: #c8e8fd;*/
}
@media screen and (max-width: 991px) {
  .totatsudo_wrapper__img {
    padding: 0;
  }
}
.totatsudo_wrapper .totatsudo-content {
  display: flex;
  background-color: #c8e8fd;
  justify-content: space-around;
}
@media screen and (max-width: 991px) {
  .totatsudo_wrapper .totatsudo-content {
    flex-direction: column;
  }
}
.totatsudo_wrapper .totatsudo-content .totatsudo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.totatsudo_wrapper .totatsudo-content .totatsudo_subtitle {
  display: flex;
}
.totatsudo_wrapper .totatsudo-content .totatsudo_subtitle h4 {
  position: relative;
  padding: 0;
  color: #fff846;
  background-color: #ff741f;
  font-weight: bold;
  padding: 0.5rem 3rem;
  font-size: 1.5rem;
}
.totatsudo_wrapper .totatsudo-content .totatsudo_subtitle h4:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0;
  height: 40px;
  border: 21px solid transparent;
  border-left: 19px solid #c8e8fd;
}
.totatsudo_wrapper .totatsudo-content .totatsudo_subtitle h4:after {
  position: absolute;
  content: "";
  right: 0px;
  top: 0;
  height: 40px;
  border: 21px solid transparent;
  border-right: 19px solid #c8e8fd;
}
.totatsudo_wrapper .totatsudo-content .totatsudo_title h2 {
  font-family: "新ゴMB";
  font-size: 4rem;
  font-weight: bolder;
  color: #249b63;
  padding-top: 2rem;
  padding-bottom: 1.25rem;
  text-shadow: 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF, 0 0 3px #FFFFFF;
}
.totatsudo_wrapper .totatsudo-content .totatsudo_description {
  font-size: 1.5rem;
  color: #6e5333;
  font-weight: bold;
}
.totatsudo_wrapper .totatsudo-content .totatsudo_description span {
  border-bottom: 1px dotted #6e5333;
}
.totatsudo_wrapper .totatsudo-content .totatsudo_detail {
  display: grid;
  gap: 2rem;
  padding: 2rem 0;
}
@media screen and (max-width: 991px) {
  .totatsudo_wrapper .totatsudo-content .totatsudo_detail {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .totatsudo_wrapper .totatsudo-content .totatsudo_detail_content {
    display: grid;
    margin: auto;
    width: 100%;
  }
}
.totatsudo_wrapper .totatsudo-content .totatsudo_detail_content_item {
  font-size: 1.5rem;
  background-color: #fff;
  font-weight: bold;
  padding: 0 3rem;
}
.totatsudo_wrapper .totatsudo-content .totatsudo_detail_content_item:first-child {
  color: #fff;
  background-color: #0ba8eb;
}

/*
    ハリネズミ
*/
.hedgehog {
  display: flex;
  gap: 3rem;
  justify-content: center;
}
.hedgehog .fukidashi {
  position: relative;
  padding: 1.5rem 3rem;
  background-color: #f2f2f2;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  /*max-width: 300px;*/
  margin-left: 15px;
}
.hedgehog .fukidashi:before {
  position: absolute;
  content: "";
  right: -30px;
  width: 34px;
  height: 20px;
  background-color: #f2f2f2;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.hedgehog img {
  width: 100px;
}

/*
    Q&A
*/
.qa-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.teacher-profile {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.teacher-profile__img {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 1.5rem;
}
.teacher-profile__img img {
  width: auto;
  height: 100%;
}
.teacher-profile__info .school-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.teacher-profile__info .teacher-title {
  font-size: 1rem;
  color: #333333;
  margin: 0;
}
@media (max-width: 575px) {
  .teacher-profile {
    flex-direction: column;
    text-align: center;
  }
  .teacher-profile__img {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}

.qa-item {
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e5e5e5;
}

.qa-box {
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}
.qa-box.qa-question {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed #cccccc;
  font-weight: bold;
  font-size: 1.1rem;
}
.qa-box p {
  margin: 0;
  padding-top: 4px;
}

.qa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 16px;
  flex-shrink: 0;
  color: #ffffff;
}
.qa-icon-q {
  background-color: #ff751f;
}
.qa-icon-a {
  background-color: #249b62;
}

/*
    試験範囲
*/
.totatsudo-table-bar {
  position: sticky;
  top: 0;
  z-index: 1;
}

.totatsudo-table {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 44rem 7rem 7rem;
}
.totatsudo-table.totatsudo_table_es {
  grid-template-rows: 1fr 1fr 32rem;
}
.totatsudo-table.totatsudo_table-2 {
  grid-template-columns: 1fr 1fr;
}
.totatsudo-table .tab-table {
  border-collapse: separate;
}
.totatsudo-table .totatsudo-table-remark {
  grid-column: 1/6;
  grid-row: 1/2;
}
.totatsudo-table .totatsudo-table-title {
  grid-column: 1/6;
  grid-row: 2/3;
}
.totatsudo-table #totatsudo-table-jap_es_1,
.totatsudo-table #totatsudo-table-jap_es_2,
.totatsudo-table #totatsudo-table-jap_es_3,
.totatsudo-table #totatsudo-table-jap_jhs_1,
.totatsudo-table #totatsudo-table-jap_jhs_2,
.totatsudo-table #totatsudo-table-jap_jhs_3,
.totatsudo-table #totatsudo-table-jap_es_1-2,
.totatsudo-table #totatsudo-table-jap_es_2-2,
.totatsudo-table #totatsudo-table-jap_es_3-2,
.totatsudo-table #totatsudo-table-jap_jhs_1-2,
.totatsudo-table #totatsudo-table-jap_jhs_2-2,
.totatsudo-table #totatsudo-table-jap_jhs_3-2 {
  grid-column: 1/2;
  grid-row: 3/4;
  display: none;
}
.totatsudo-table #totatsudo-table-mat_es_1,
.totatsudo-table #totatsudo-table-mat_es_2,
.totatsudo-table #totatsudo-table-mat_es_3,
.totatsudo-table #totatsudo-table-mat_jhs_1,
.totatsudo-table #totatsudo-table-mat_jhs_2,
.totatsudo-table #totatsudo-table-mat_jhs_3,
.totatsudo-table #totatsudo-table-mat_es_1-2,
.totatsudo-table #totatsudo-table-mat_es_2-2,
.totatsudo-table #totatsudo-table-mat_es_3-2,
.totatsudo-table #totatsudo-table-mat_jhs_1-2,
.totatsudo-table #totatsudo-table-mat_jhs_2-2,
.totatsudo-table #totatsudo-table-mat_jhs_3-2 {
  grid-column: 2/3;
  grid-row: 3/4;
  display: none;
}
.totatsudo-table #totatsudo-table-eng_es_1,
.totatsudo-table #totatsudo-table-eng_es_2,
.totatsudo-table #totatsudo-table-eng_es_3,
.totatsudo-table #totatsudo-table-eng_jhs_1,
.totatsudo-table #totatsudo-table-eng_jhs_2,
.totatsudo-table #totatsudo-table-eng_jhs_3,
.totatsudo-table #totatsudo-table-eng_es_1-2,
.totatsudo-table #totatsudo-table-eng_es_2-2,
.totatsudo-table #totatsudo-table-eng_es_3-2,
.totatsudo-table #totatsudo-table-eng_jhs_1-2,
.totatsudo-table #totatsudo-table-eng_jhs_2-2,
.totatsudo-table #totatsudo-table-eng_jhs_3-2 {
  grid-column: 3/4;
  grid-row: 3/4;
  display: none;
}
.totatsudo-table #totatsudo-table-sci_es_1,
.totatsudo-table #totatsudo-table-sci_es_2,
.totatsudo-table #totatsudo-table-sci_es_3,
.totatsudo-table #totatsudo-table-sci_jhs_1,
.totatsudo-table #totatsudo-table-sci_jhs_2,
.totatsudo-table #totatsudo-table-sci_jhs_3,
.totatsudo-table #totatsudo-table-sci_es_1-2,
.totatsudo-table #totatsudo-table-sci_es_2-2,
.totatsudo-table #totatsudo-table-sci_es_3-2,
.totatsudo-table #totatsudo-table-sci_jhs_1-2,
.totatsudo-table #totatsudo-table-sci_jhs_2-2,
.totatsudo-table #totatsudo-table-sci_jhs_3-2 {
  grid-column: 4/5;
  grid-row: 3/4;
  display: none;
}
.totatsudo-table #totatsudo-table-soc_es_1,
.totatsudo-table #totatsudo-table-soc_es_2,
.totatsudo-table #totatsudo-table-soc_es_3,
.totatsudo-table #totatsudo-table-soc_jhs_1,
.totatsudo-table #totatsudo-table-soc_jhs_2,
.totatsudo-table #totatsudo-table-soc_jhs_3,
.totatsudo-table #totatsudo-table-soc_es_1-2,
.totatsudo-table #totatsudo-table-soc_es_2-2,
.totatsudo-table #totatsudo-table-soc_es_3-2,
.totatsudo-table #totatsudo-table-soc_jhs_1-2,
.totatsudo-table #totatsudo-table-soc_jhs_2-2,
.totatsudo-table #totatsudo-table-soc_jhs_3-2 {
  grid-column: 5/6;
  grid-row: 3/4;
  display: none;
}
.totatsudo-table .totatsudo-table-content {
  grid-column: 1/6;
  grid-row: 3/4;
  display: none;
  /*Firefoxへの対応*/
  /*-ms-overflow-style: none;
  scrollbar-width: none;*/
  /*Google Chrome、Safariへの対応*/
  /*&::-webkit-scrollbar {
      display: none;
  }*/
  background-color: #f0f0f0;
  overflow-y: scroll;
  width: 100%;
  height: 95%;
}
.totatsudo-table .totatsudo-table-content::-webkit-scrollbar {
  width: 10px;
  height: 30px;
}
.totatsudo-table .totatsudo-table-content::-webkit-scrollbar-track {
  background-color: #e3e3e3;
}
.totatsudo-table .totatsudo-table-content::-webkit-scrollbar-thumb {
  background-color: #696969;
}
.totatsudo-table .totatsudo-table-note {
  grid-column: 1/6;
  grid-row: 4/5;
}
.totatsudo-table .totatsudo-table-pdf {
  grid-column: 1/6;
  grid-row: 5/6;
}

.totatsudo-table-tab_es, .totatsudo-table-tab_jhs {
  height: 50px;
  background-color: #f1f1f1;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  margin: 0 0.5rem;
  border-radius: 10px 10px 0 0;
}
.totatsudo-table-tab_es:hover, .totatsudo-table-tab_jhs:hover {
  cursor: pointer;
}

.totatsudo-table-tab_es:hover {
  background-color: #bddced;
}

.totatsudo-table-tab_jhs:hover {
  background-color: #a8cfb0;
}

/*ラジオボタンを全て消す*/
input[name=totatsudo-table-tab] {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#totatsudo-table-jap_es_1:checked ~ #table-jap_es_1,
#totatsudo-table-mat_es_1:checked ~ #table-mat_es_1,
#totatsudo-table-eng_es_1:checked ~ #table-eng_es_1,
#totatsudo-table-sci_es_1:checked ~ #table-sci_es_1,
#totatsudo-table-soc_es_1:checked ~ #table-soc_es_1,
#totatsudo-table-jap_jhs_1:checked ~ #table-jap_jhs_1,
#totatsudo-table-mat_jhs_1:checked ~ #table-mat_jhs_1,
#totatsudo-table-eng_jhs_1:checked ~ #table-eng_jhs_1,
#totatsudo-table-sci_jhs_1:checked ~ #table-sci_jhs_1,
#totatsudo-table-soc_jhs_1:checked ~ #table-soc_jhs_1,
#totatsudo-table-jap_es_1-2:checked ~ #table-jap_es_1-2,
#totatsudo-table-mat_es_1-2:checked ~ #table-mat_es_1-2,
#totatsudo-table-eng_es_1-2:checked ~ #table-eng_es_1-2,
#totatsudo-table-sci_es_1-2:checked ~ #table-sci_es_1-2,
#totatsudo-table-soc_es_1-2:checked ~ #table-soc_es_1-2,
#totatsudo-table-jap_jhs_1-2:checked ~ #table-jap_jhs_1-2,
#totatsudo-table-mat_jhs_1-2:checked ~ #table-mat_jhs_1-2,
#totatsudo-table-eng_jhs_1-2:checked ~ #table-eng_jhs_1-2,
#totatsudo-table-sci_jhs_1-2:checked ~ #table-sci_jhs_1-2,
#totatsudo-table-soc_jhs_1-2:checked ~ #table-soc_jhs_1-2 {
  display: block;
}

#totatsudo-table-jap_es_2:checked ~ #table-jap_es_2,
#totatsudo-table-mat_es_2:checked ~ #table-mat_es_2,
#totatsudo-table-eng_es_2:checked ~ #table-eng_es_2,
#totatsudo-table-sci_es_2:checked ~ #table-sci_es_2,
#totatsudo-table-soc_es_2:checked ~ #table-soc_es_2,
#totatsudo-table-jap_jhs_2:checked ~ #table-jap_jhs_2,
#totatsudo-table-mat_jhs_2:checked ~ #table-mat_jhs_2,
#totatsudo-table-eng_jhs_2:checked ~ #table-eng_jhs_2,
#totatsudo-table-sci_jhs_2:checked ~ #table-sci_jhs_2,
#totatsudo-table-soc_jhs_2:checked ~ #table-soc_jhs_2,
#totatsudo-table-jap_es_2-2:checked ~ #table-jap_es_2-2,
#totatsudo-table-mat_es_2-2:checked ~ #table-mat_es_2-2,
#totatsudo-table-eng_es_2-2:checked ~ #table-eng_es_2-2,
#totatsudo-table-sci_es_2-2:checked ~ #table-sci_es_2-2,
#totatsudo-table-soc_es_2-2:checked ~ #table-soc_es_2-2,
#totatsudo-table-jap_jhs_2-2:checked ~ #table-jap_jhs_2-2,
#totatsudo-table-mat_jhs_2-2:checked ~ #table-mat_jhs_2-2,
#totatsudo-table-eng_jhs_2-2:checked ~ #table-eng_jhs_2-2,
#totatsudo-table-sci_jhs_2-2:checked ~ #table-sci_jhs_2-2,
#totatsudo-table-soc_jhs_2-2:checked ~ #table-soc_jhs_2-2 {
  display: block;
}

#totatsudo-table-jap_es_3:checked ~ #table-jap_es_3,
#totatsudo-table-mat_es_3:checked ~ #table-mat_es_3,
#totatsudo-table-eng_es_3:checked ~ #table-eng_es_3,
#totatsudo-table-sci_es_3:checked ~ #table-sci_es_3,
#totatsudo-table-soc_es_3:checked ~ #table-soc_es_3,
#totatsudo-table-jap_jhs_3:checked ~ #table-jap_jhs_3,
#totatsudo-table-mat_jhs_3:checked ~ #table-mat_jhs_3,
#totatsudo-table-eng_jhs_3:checked ~ #table-eng_jhs_3,
#totatsudo-table-sci_jhs_3:checked ~ #table-sci_jhs_3,
#totatsudo-table-soc_jhs_3:checked ~ #table-soc_jhs_3,
#totatsudo-table-jap_es_3-2:checked ~ #table-jap_es_3-2,
#totatsudo-table-mat_es_3-2:checked ~ #table-mat_es_3-2,
#totatsudo-table-eng_es_3-2:checked ~ #table-eng_es_3-2,
#totatsudo-table-sci_es_3-2:checked ~ #table-sci_es_3-2,
#totatsudo-table-soc_es_3-2:checked ~ #table-soc_es_3-2,
#totatsudo-table-jap_jhs_3-2:checked ~ #table-jap_jhs_3-2,
#totatsudo-table-mat_jhs_3-2:checked ~ #table-mat_jhs_3-2,
#totatsudo-table-eng_jhs_3-2:checked ~ #table-eng_jhs_3-2,
#totatsudo-table-sci_jhs_3-2:checked ~ #table-sci_jhs_3-2,
#totatsudo-table-soc_jhs_3-2:checked ~ #table-soc_jhs_3-2 {
  display: block;
}

/*選択されているタブのスタイルを変える*/
input:checked + .totatsudo-table-tab_es {
  background-color: #467c9b;
  color: #FFFFFF;
}

input:checked + .totatsudo-table-tab_jhs {
  background-color: #386641;
  color: #FFFFFF;
}

/*input:checked + .totatsudo-table + .tab_jhs {
    background-color: $green3;
    color: $White;
}*/
/*
    販促ツールダウンロード
*/
.promo-tools {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.promo-tools__images {
  display: flex;
  gap: 1.5rem;
}
.promo-tools__images .promo-image-box {
  width: 180px;
  text-align: center;
}
.promo-tools__images .promo-image-box img {
  width: 100%;
  height: auto;
  display: block;
  padding: 4px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.promo-tools__images .promo-image-box .img-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555555;
}
@media (max-width: 767px) {
  .promo-tools {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  .promo-tools__images {
    flex-direction: column;
  }
}

/*
    お申し込み
*/
.apply h4 {
  line-height: 40px;
  color: #D84D80;
}

/*
    totopを上書き
*/
.totop {
  bottom: 7rem;
}

@keyframes border-stretch {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
