/********** Template CSS **********/
:root {
    --primary: #120851;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 65%;
    height: 100%;
    top: 0%;
    left: 0;
    display: flex;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title-image{
	 height: 210px;
	 margin-bottom: 20px;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60% !important;
    height: 80% !important;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item * {
    transition: .5;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 160px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item img {
    height:50px !important;
}

.team-item h3 {
    font-size:1.3rem;
}
  /*** css-fukidashi ***/
  .css-fukidashi {
      padding: 0;
      margin: 0;
    }
    .fukidashi {
      display: none;
      width: 150px;
      position: absolute;
      padding: 5px;
      background: #B78D65a3;
      color: #fff;
      
    }
    .btn:hover + .fukidashi {
      display: block;
    }

/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/*  training_case */
.training_case table{
  width: 100%;
  border-collapse: collapse;
}

.training_case table tr{
  border-bottom: solid 30px white;
}

.training_case table tr:last-child{
  border-bottom: none;
}

.training_case table th{
  position: relative;
  text-align: left;
  width: 22%;
  background-color: #eee;
  padding: 10px 10px;
}

.training_case table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #6489d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.training_case table td{
  text-align: left;
  width: 70%;
  background-color: #eee;
  padding: 10px 20px;
}

/*** voice ***/
.voice_back{
	background-color: #ffffff;
    background-image: url(./../img/img_voice_back.svg);
    background-repeat: no-repeat;
}
.student_voice{
	background-color: #6489d04d;
    padding: 20px;
    border-radius: 20px;
	line-height:1.5;
}


/*** Problem ***/
.problem_box{
	border-radius: 20px;
    box-shadow: 0px 22px 24px 0px rgb(42 69 81 / 8%);
    background-color: #fff;
    margin: 0 5px;
}

/*** needs ***/
.old____needs_point {
    position: relative;
    padding: 1rem 2rem;
    border-bottom: 6px solid #144665;
  }
  
.old____needs_point:before {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 20%;
    height: 6px;
    content: '';
    background: #68c2d4;
  }
.needs_block{
    box-shadow: 0px 22px 24px 0px rgb(42 69 81 / 8%);
    margin-bottom: 40px;
    padding-bottom: 30px;
}
.needs_each{
    background-color: #144665;
    padding: 9px;
    color: #fff;
    border-radius: 10px;
}
.needs_text{
    font-size: larger;
    color: #144665;
}

.needs-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.needs-img img {
    position: absolute;
    width: 60% !important;
    height: 80% !important;
    object-fit: cover;
}

.needs-img img:last-child {
    margin: 20% 0 0 40%;
}

.needs-img-rikai::before {
    border: 5px solid #16c2d0;
}
.needs-img-kyotsu::before {
    border: 5px solid #f24656;
}
.needs-img-com::before {
    border: 5px solid #ff8f29;
}
.needs-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 10%;
    z-index: -1;
}

.problem_tag    {
    position: relative;
    display: inline-block;
    height: 64px;
    margin-left: 30px;
    padding: 1rem 2rem 1rem 3rem;
    color: #fff;
    background: #fa4141;
  }
  
.problem_tag:before {
    position: absolute;
    top: 0;
    left: -30px;
    content: '';
    border-width: 32px 30px 32px 0;
    border-style: solid;
    border-color: transparent #fa4141 transparent transparent;
  }
  
.problem_tag:after {
    position: absolute;
    top: calc(50% - 7px);
    left: -10px;
    width: 14px;
    height: 14px;
    content: '';
    border-radius: 50%;
    background: #fff;
  }

.impact_title_mae{
    background-color: #777 !important;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 10px 10px;
    margin: 15px 20px;
    font-size: x-large;
    letter-spacing: 2px;
}
.impact_title_ato{
    background-color: #68c2d4 !important;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 10px 10px;
    margin: 15px 20px;
    font-size: x-large;
    letter-spacing: 2px;
}

#pop{
  /*  width:3vw; */
  /*  height:4vw; */
    fill:#60B99A;
  /*  animation: 3.5s Roll ease-in-out infinite; */
}
    
#pop span{
    display:block;
    /* animation: FloatHorizontal 7.0s ease-in-out infinite alternate; */
}

#pop svg{
    animation: FloatVertical 4.0s ease-in-out infinite alternate;
}
@keyframes Roll {
    0% { transform: rotateZ(15deg) scale(0.9); }
    50% { transform: rotateZ(-15deg) scale(1.0); }
    100% { transform: rotateZ(15deg) scale(0.9); }
}
@keyframes FloatHorizontal {
    0% { transform:translate3d(2.5vw,0,0); }
    50% { transform:translate3d(-2.5vw,0,0); }
    100% { transform:translate3d(2.5vw,0,0); }
}
@keyframes FloatVertical {
    0% { transform:translate3d(0,1vw,0); }
    50% { transform:translate3d(0,-1vw,0); }
    100% { transform:translate3d(0,1vw,0); }
}

.usage_person_title{
    font-size: x-large;
    font-weight: 600;
    color: #3d9db1;
    padding: 10px 15px;
    background: linear-gradient(transparent 0% , #3d9db130 70%);
    margin-top: 10px;
}

.usage_title_mae{
    background-color: #777 !important;
    line-height: 50px;
    text-align: center;
    color: #fff;
    margin: 15px 20px;
    font-size: x-large;
    letter-spacing: 2px;
}
.usage_title_ato{
    background-color: #999 !important;
    line-height: 50px;
    text-align: center;
    color: #fff;
    margin: 15px 20px;
    font-size: x-large;
    letter-spacing: 2px;
}

/* ボタンのスタイル */
.btn-arrow-bottom a {
    position: relative;
    display: block;
    padding: 15px 0;
    background-color: var(--primary);
    border-radius: 8px;
    font-size: x-large;
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
  
/* アイコンのスタイル */
.btn-arrow-bottom a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-2px) rotate(135deg);
    box-sizing: border-box;
  }
.btn-arrow-bottom a:hover {
    opacity: 0.7;
  }


.pricing__item {
	text-align: center;
	padding-bottom: 20px;
	padding-top: 22px;
	background: #ffffff;
	padding-left: 20px;
	padding-right: 20px;
	-webkit-box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.1);
	box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.1);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-bottom: 15px;
}

.pricing__item:hover {
	-webkit-box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
	box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
}

.pricing__item:hover h3 {
	background: #4c57d6;
}

.pricing__item:hover .primary-btn {
	background: #4c57d6;
	color: #ffffff;
}

.pricing__item h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 20px;
}

.pricing__item h3 {
	background: #120851;
	font-weight: 700;
	color: #ffffff;
	padding: 24px 0 20px;
	margin-bottom: 26px;
	margin-left: -30px;
	border-radius: 10px;
	margin-right: -30px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.pricing__item h3 span {
	font-size: 16px;
	font-weight: 400;
}

.pricing__item .title__name{
    text-align: left;
    line-height: 55px;
}

.pricing__item .title__name_2line {
    display: inline-grid;
    text-align: left;
    line-height: 30px;
}

.pricing__item ul {
	margin-bottom: 26px;
}

.pricing__item ul li {
	font-size: 14px;
	color: #444444;
	line-height: 40px;
	list-style: none;
}

.pricing__item .primary-btn {
	color: #ffffff;
	background: #120851;
	display: block;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	padding: 14px 0 12px;
}

.pricing__item img {
	max-width: 100%;
    height: auto;
}

.pricing__icon {
	width: 60px;
    height: auto;
}

.services__item {
	background: #ffffff;
	padding-left: 40px;
	padding-top: 40px;
	padding-right: 45px;
	padding-bottom: 20px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
	box-shadow: 0px 0px 10px rgba(18, 8, 81, 0.15);
	/* margin-bottom: 15px; */
	margin:0 26px 20px 26px;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.services__item:hover {
	-webkit-box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
	box-shadow: 0px 8px 30px rgba(18, 8, 81, 0.2);
}

.services__item h5 {
	font-size: 20px;
	/* color: #111111; */
	font-weight: 700;
	margin-bottom: 8px;
}

.services__item span {
	font-size: 15px;
	color: #999999;
	font-weight: 500;
	/* display: block; */
	margin-bottom: 10px;
	margin-left: 20px;
}

.services__item p {
	color: #111111;
}

.training_each {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	text-align: center;
	margin: 25px 0;
}

.training_each::before,
.training_each::after {
	content: '';
	width: 70px;
	height: 3px;
	background-color: #246fa1;
}

.training_each::before {
	margin-right: 20px;
}
.training_each::after {
	margin-left: 20px;
}

.how_title {
	color: var(--primary);
}
.how_title img  {
	width:70px;
	margin-right:25px;
	background-color: #120851;
}

.how_courses {
    list-style-type: disc;
    list-style-position: inside;
	margin-top:1rem;
}

.how_courses li {
    padding: .5em;
}

.how_courses li:not(:last-child) {
    border-bottom: 1px dashed #246fa1;
}

.how_courses li::marker {
    color: #246fa1;
    font-size: 1.1em;
}

.balloon-001 {
    display: flex;
    justify-content: center;
    position: relative;
    /* max-width: 300px; */
    margin-bottom: 15px;
    padding: .8em 1.2em;
    border-radius: 5px;
    background-color: #120851;
    color: #ffffff;
}

.balloon-001::before {
    position: absolute;
    bottom: -12px;
    left: 10%;
    width: 21px;
    height: 13px;
    background-color: #120851;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

/* gomenu */
.button_gomenu a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 15px auto;
    max-width: 335px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}
.button_gomenu a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}
.button_gomenu a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.button_gomenu a:hover {
    opacity: 0.7;
}
.button_gomenu a:hover:after {
    transform: scale(1, 1);
}

/*　20250813　*/


.search_area #selectForm{
	background-color: #efefef;
	padding: 15px;
}
/* ラジオボタンの装飾 */
.radio_input {
    display: none;
}

.radio_parts {
    padding-left: 25px;
    position: relative;
    margin-right: 20px;
}

.radio_parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #999;
    border-radius: 50%;
}

.radio_input:checked+.radio_parts::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    background: #0050c1;
    border-radius: 50%;
}

/* チェックボックスの装飾 */
.checkbox_input {
    display: none;
}

.checkbox_parts {
    padding-left: 25px;
    position: relative;
    margin-right: 25px;
}

.checkbox_parts::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #999;
}

.checkbox_input:checked+.checkbox_parts::after {
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: 5px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 3px solid #0050c1;
    border-right: 3px solid #0050c1;
}

/*他エリア*/
.search_area {
    text-align: center;
	margin-bottom: 50px;
}

.search_area div {
    margin-bottom: 10px;
}

.item_container {
    justify-content: center;
}

.item_name{
	
}

.item {
   margin: 0 auto 2em; /* 外側の余白（上下と中央配置） */
   padding: 1em; /* 内側余白 */
   border: 3px solid #eee; /* 線の太さ（3px）、種類（実線）、色（#eee） */
   position: relative; /* 配置（基準となる位置） */
   z-index: 0; /* 他の要素との重なり順（0は通常の順番） */
}

.item:before {
   border-top: 3px solid #4059ad; /* 上辺の線の色 */
   border-left: 3px solid #4059ad; /* 左辺の線の色 */
   content: ''; /* 擬似要素にコンテンツなし */
   display: block; /* 擬似要素をブロック表示 */
   position: absolute; /* 配置（親要素から絶対的に位置を指定） */
   top: -3px; /* 上から-3pxずらす */
   left: -3px; /* 左から-3pxずらす */
   width: 20px; /* 幅20px */
   height: 20px; /* 高さ20px */
   z-index: 1; /* 重なり順（前面に表示） */
}

.item_name_code{
	color: #777;
    font-size: small;
    margin-left: 10px;	
}
.item_pdu{
	font-weight: 600;
    font-size: large;
}
.pdu_none{
	color: #777;
}

.item_course_link{
    display: block;
    width: 200px;
    padding: 10px 0;
    margin: auto;
    background: #4059ad;
    color: #FFF;
    text-decoration: none;
    text-align: center;
}
.item_course_link:hover{
    background: #4059ad52;
}

/*絞り込み条件外のアイテム*/
.hide_item {
    display: none;
}


/* 20250815 filter */
div.yy {
  text-align: start;
  margin: 15px;
  left: 0%;
}

input.reload {
  color: #FFF;
  font-weight: bold;
  background: #217346;
  border: 0;
  padding: 5px;
}

/* === フィルタボタン ============================ */
.tfArea{
  display    : inline-block;
  position   : relative;
}
.tfImg{
  display    : inline-block;
  width      : 15px;
  height     : 15px;
  background : #eee;
  margin     : 1px 3px;
  padding    : 3px;
  cursor     : pointer;
}
/* === フィルタボタン（カーソルオーバー時）======= */
.tfImg:hover{
  background : #49be40;
}
/* === フィルタボタン内の画像色（SVG）============ */
.tfImg path{
  fill       : #666;
}
/* === フィルタリスト ============================ */
.tfList{
  display    : inline-block;
  position   : absolute;
  max-width  : 250px;
  min-width  : 140px;
  background : #fff;
  border     : 1px solid #777;
  top        : 15px;
  left       : 0;
  line-height: 1.1;
  font-weight: normal;
  color: #444;
}
/* === フィルタリスト内のform ==================== */
.tfList form{
  max-height : 150px;           /* 縦幅 */
  overflow   : scroll;
  overflow   : overflow-y;
  overflow   : auto;
}
/* === フィルタリスト内のチェックボックス ======== */
.tfMeisai{
  text-align : left;
  padding    : 2px;
}
/* === フィルタリスト内の文字位置合わせ ========== */
.tfMeisai label{
  padding    : 0 10px 0 3px;
}
/* === OK/CANCELボタン =========================== */
.tfBtnArea{
  text-align : center;
  font-size  : 8pt;
  padding    : 3px 5px;
}
.tfBtnArea input{
  display    : inline-block;
  margin     : 0 5px;
}
/* === 含むボタンの入力エリア ==================== */
.tfInStr{
  padding    : 5px 3px;
  border-top : 1px solid #999;
  border-bottom: 1px solid #999;
}
.tfInStr input{
  box-sizing : border-box;
  width      : 100%;
  padding    : 1px 3px;
  font-weight: normal;
  font-size  : 95%;
  border     : 1px solid #ccc;
}
/* === フィルタ非表示 ============================ */
#sampleTable tr[cmanFilterNone]{
  display    : none;
}
/* === フィルタ非表示行と次行の間を二重線にする == */
#sampleTable tr[cmanFilterNone] + tr td{
/*  border-top : 3px double #ccc; */
}
 /* --- （参考）テーブル全体のスタイル指定 ------- */
#sampleTable {
  width          : 100%;
  border-collapse: separate;         /* 境界線結合 */
  /* border-spacing : 2px;                /* 罫線間余白 */
  font-size      : 9pt;              /* 文字サイズ */
  background    : #fafff8;
}
 /* --- ヘッダーのスタイル指定 ------------------- */
#sampleTable th {
  text-align    : center;            /* 文字位置   */
  font-weight   : bold;              /* 太文字     */
  padding       : 3px 5px;          /* 余白       */
  border        : 1px #ccc solid; /* 罫線       */
  background    : #4059ad;           /* 背景色     */
  white-space   : nowrap;
  color: #fff;
  height: 50px;
  font-size: larger;
}
 /* --- 明細のスタイル指定 ----------------------- */
#sampleTable td {
  text-align    : center;            /* 文字位置   */
  padding       : 3px 5px;           /* 余白       */
  border        : 1px #ccc solid; /* 罫線       */
  white-space   : nowrap;
}

#sampleTable .pdu_course_tbl_name {
  text-align: left;
    font-size: larger;
}



/* アコーディオン全体のスタイリング */
.accordion {
  border: 1px solid #ddd;
  border-radius: 5px;
  margin:3px 18px;
}

/* アコーディオンのヘッダー部分のスタイリング */
.accordion-header {
  padding: 17px;
  background-color: #f7f7f7;
  cursor: pointer;
  outline: none;
  border-bottom: 1px solid #ddd;
  position: relative; /* 矢印アイコンの位置調整のため */
  list-style: none; /* デフォルトの矢印を消す */
  transition: background-color 0.3s; /* 背景色の変化にアニメーションを適用 */
}

/* アコーディオンのコンテンツ部分のスタイリング */
.accordion-content {
  padding: 15px;
  line-height: 1.5;
  background-color: #fff;
}

/* カスタム矢印のスタイル */
.accordion-header::after {
  content: '▼'; /* ここに好きなアイコンを設定できます */
  position: absolute;
  right: 10px; /* ヘッダーから右に10pxの位置 */
  bottom: 10%;
  transition: transform 0.3s ease; /* アニメーション効果 */
}

/* アコーディオンが開いている時の矢印のスタイル */
.accordion[open] .accordion-header::after {
  transform: rotate(180deg); /* 矢印を180度回転 */
}

/* ホバー時のヘッダーのスタイル */
.accordion-header:hover {
  background-color: #e7e7e7; /* ホバー時の背景色 */
}

/* WebKitベースのブラウザでデフォルトの矢印を消す */
.accordion .accordion-header::-webkit-details-marker {
  display: none;
}

.accordion .accordion-header h4 {
  color:#0c5394;
}

.accordion .accordion-header .summary_text {
  margin-right:20px;
  font-size:smaller;
}

.accordion .accordion-header .summary_icon {
  margin: 0 30px;
  background-color: #0c5394;
  color:#fff ;
  padding: 5px 10px;
}

.accordion-content table{
  border-collapse:separate;
  border-spacing: 5px;
  width: 100%;
}

.accordion-content table th,table td{
  border-radius: 5px;
  text-align: center;
  padding: 10px 0;
}

.accordion-content table th{
  background-color: #e1eeff;
  color: #252525;
  border:solid 1px #e1eeff;
  width:40%;
}

.accordion-content table td{
  background-color: #f5f5f5;
}

.schedule_title{
	background-color: #e1eeff;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 2px 2px 4px grey;
    border-radius: 14px;
}

/* ----- PAGETOP ----- */
#wrapper { position:relative; }
.topBtn {
	cursor: pointer;
	position: fixed;
	right: 15px;
	bottom: 10px;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	background-color: rgba(0,63,129,0.5);
	text-decoration: none;
	z-index: 100;
	-webkit-border-radius: 20px;
		 -moz-border-radius: 20px;
					border-radius: 20px;
}
.topBtn:after {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
	right: calc(50% - 7px);
	width: 14px;
	height: 14px;
	border-top: solid #ffffff 5px;
	border-right: solid #ffffff 5px;
	z-index: 101;
	-webkit-transform: rotate(-45deg);
					transform: rotate(-45deg);
}
.topBtn:hover {
	background-color: rgba(0,63,129,1);
	-webkit-transition: .2s all ease;
			-ms-transition: .2s all ease;
					transition: .2s all ease;
}
@media (min-width:768px) {
	.topBtn {
		right: 30px;
		bottom: 30px;
	}
}

.course_summary table{
	font-size:small;
}

.course_summary th{
	text-align:center;
	color: white;
    background-color: #999999;
    border: 1px solid #fff;
	font-size:smaller;
	height:60px;
}
.course_summary th:nth-of-type(n+6){
	font-size:small;
}
.course_summary td{
	padding:2px 10px;
	border-bottom:1px solid #ccc;
}

.course_summary td:nth-of-type(1){
	width: 65px;
	color:#ffffff;
}
.course_summary td:nth-of-type(2){
	text-align:left;
}
.course_summary td:nth-of-type(3){
	font-weight: 600;
	width:120px;
}
.course_summary td:nth-of-type(4){
	font-weight: 600;
	background-color:#ff000030;
	color:#ff0000;
}
.course_summary td:nth-of-type(5){
	font-weight: 600;
}
.course_summary td:nth-of-type(n+6){
	font-size:smaller;
}

.course_summary ins{
	background-color: #ff7c00d9;
    text-decoration: none;
}

.card-text{
	border-radius:5px;
	color:#fff;
	padding:10px;
}

.course_link:hover img{
	filter:contrast(60%);
}

.campaign_info {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  padding:15px;
  outline: none;
  color: #d60000;
  background-color: #fff;
  position: relative;
  border: 1px solid #d60000;
  transition: color 0.5s ease;
}
.campaign_info:hover {
  color: #fff;
}
.campaign_info:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.campaign_info::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #d60000;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.campaign_info .text {
  position: relative;
}

.table_box{
 overflow-x:auto;
 display:block;
 max-width:1200px;
 border :1px solid #eee;
 padding:10px;
}

.sans_flow{
 border:0;
 border-collapse: collapse;
 min-width:900px;
 overflow-x: auto;
 font-size:small;
}

.sans_flow td{
  padding:0;
}
.flow_top{
  font-size:large;
  text-align:center;
  background-color:#eee;
  border-bottom: 15px #fff solid;
}
.c_title_blue{
  background-color:#005a8a;
  color: #ffffff;
  padding: 6px 12px;
  position:relative;
  border-left:3px solid #005a8a
}
.c_title_red{
  background-color:#ba190f;
  color: #ffffff;
  padding: 6px 12px;
  position:relative;
  border-left:3px solid #ba190f;
}
.c_title_black{
  background-color:#464b51;
  color: #ffffff;
  padding: 6px 12px;
  position:relative;
  border-left:3px solid #464b51;
}
.c_title_orange {
 background-color:#f08300;
  color: #ffffff;
  padding: 6px 12px !Impo	;
  position:relative;
  border-left:3px solid #f08300;
}
.c_title_aqua {
 background-color:#00a8d5;
  color: #ffffff;
  padding: 6px 12px;
  position:relative;
  border-left:3px solid #00a8d5;
}
.c_title_green {
 background-color:#559923;
  color: #ffffff;
  padding: 6px 12px;
  position:relative;
  border-left:3px solid #559923;
}
.c_subtitle_blue{
  background-color:#7dd1ff;
  padding: 6px 12px;
  position:relative;
  font-size:small;
}
.c_subtitle_red{
  background-color:#f8a6a2;
  padding: 6px 12px;
  position:relative;
  font-size:small;
}
.c_subtitle_black{
  background-color:#d0d3d6;
  padding: 6px 12px;
  position:relative;
  font-size:small;
}
.c_subtitle_orange{
  background-color:#ffd9ab;
  padding: 6px 12px;
  position:relative;
  font-size:small;
}
.c_subtitle_aqua{
  background-color:#a3ebff;
  padding: 6px 12px;
  position:relative;
  font-size:small;
}
.c_subtitle_green{
  background-color:#bfe99f;
  padding: 6px 12px;
  position:relative;
  font-size:small;
}
.line_left_blue{
  border-left:3px solid #005a8a
}
.line_left_red{
  border-left:3px solid #ba190f;
}
.line_left_black{
  border-left:3px solid #464b51;
}
.line_left_orange{
  border-left:3px solid #f08300;
}
.line_left_aqua{
  border-left:3px solid #00a8d5;
}
.line_left_green{
  border-left:3px solid #559923;
}

.c_subinfo{
  padding-left: 10px;
  color:#496989;
  vertical-align: bottom;
}

.c_course{
  padding-left:5px !important;
  font-size:small;
  font-weight:600;
  vertical-align: top;
  text-align:left;
}

.c_arrow{
  padding:0px 10px;
}

.line_arrow_side_blue , .line_arrow_side_black, .line_arrow_side_green, .line_arrow_side_aqua {
position:relative;
justify-content:space-between;
}
.line_arrow_side_blue:before , .line_arrow_side_black:before, .line_arrow_side_green:before, .line_arrow_side_aqua:before{
content:"";
position:absolute;
left:10%;
top:0px;
width:1px;
height:100%;
}
.line_arrow_side_blue:before{border-left:3px solid #005a8a}
.line_arrow_side_black:before{border-left:3px solid #464b51}
.line_arrow_side_aqua:before{border-left:3px solid #00a8d5}
.line_arrow_side_green:before{border-left:3px solid #559923}
