@charset "UTF-8";
@import "./css/reset.css";
@import "./css/color.css";
@import "./css/affiliate.css";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
*/

.is-sp {
    display: none!important;
}
@media only screen and (max-width: 480px) {
    .is-pc {
        display: none!important;
    }
    .is-sp {
        display: block!important;
    }
}

.mt-2p5 {
    margin-top: 2.5%;
}
.mt-5 {
    margin-top: 5%!important;
}
.mt-10 {
    margin-top: 10%!important;
}
.mt-20 {
    margin-top: 20%!important;
}
.mb-2p5 {
    margin-bottom: 2.5%!important;
}
.mb-5 {
    margin-bottom: 5%!important;
}
.mb-10 {
    margin-bottom: 10%!important;
}
@media only screen and (max-width: 480px) {
    .mt-2p5 {
        margin-top: 5%;
    }
    .mt-5 {
        margin-top: 10%!important;
    }
    .mt-10 {
        margin-top: 20%!important;
    }
    .mb-2p5 {
        margin-bottom: 5%!important;
    }
    .mb-5 {
        margin-bottom: 10%!important;
    }
    .mb-10 {
        margin-bottom: 20%!important;
    }
}

h2.ttl-gradation,
h3.ttl-gradation {
    background-image: -webkit-gradient(linear, left top, right top, from(#209cff), to(#68e0cf));
    background-image: -webkit-linear-gradient(left, #209cff 0%, #68e0cf 100%);
    background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);
    margin: 0 auto 2.5%;
    padding: 2% 4%;
    border: none;
    font-size: 1.5em;
    color: #ffffff;
    line-height: 1.5;
}

table.table-alternate {
    border: solid 1px var(--color-gray)!important;
}
table.table-alternate tr {
    border: none!important;
}
table.table-alternate td {
    padding: 1% 3%;
    border: none!important;
}
table.table-alternate tr td:not(first-child) {
    border-left: solid 1px var(--color-gray)!important;
}
table.table-alternate tr:nth-child(odd) td {
    background: var(--color-light-blue);
}
table.td-first-center tr td:first-child {
    width: 180px;
    font-weight: 700;
    text-align: center;
}

.programming_box  {
    position: relative;
    padding: 2.5%;
    border: solid 7px;  
}
.programming_box p {
    display: none;
}
.programming_box.box-yellow  {
    border-color: var(--color-orange);
}
.programming_box.box-blue  {
    border-color: var(--color-blue);
}
.programming_box_label {
    position: absolute;
    top: calc(-45px);
    left: -7px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    padding: 0 2%;
    border-radius: 0 20px 0 0;
    font-weight: 700;
    line-height: 1;
}
.programming_box_label.arrow {
    padding-right: 7%;
}
.programming_box_label.arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background-image: url(./img/icon/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
}
.programming_box.box-yellow .programming_box_label {
    background: var(--color-orange);
    color: var(--color-black);
}
.programming_box.box-blue .programming_box_label {
    background: var(--color-blue);
    color: var(--color-white);
}

.programming_box_ttl {
    margin-bottom: 2.5%;
}
.programming_box_list {
    background: none;
    padding: 0;
    border: none;
}
.programming_box_list_item {
    padding: 2%;
}
.programming_box_list_item.line-top {
    border-top: solid 1px;
}
.programming_box.box-yellow .programming_box_list_item.line-top {
    border-top-color: var(--color-orange);   
}
.programming_box_list_item.icon-check {
    position: relative;
    padding-left: 30px;
}
.programming_box_list_item.icon-check::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    transform: translateY(-50%) rotate(-45deg);
    display: block;
    width: 20px;
    height: 10px;
    border-left: 5px solid;
    border-bottom: 5px solid;
}
.programming_box.box-blue .programming_box_list_item.icon-check::before {
    border-left-color: var(--color-blue);
    border-bottom-color: var(--color-blue);
}
.programming_box_list_item_ttl {
    display: flex;
}
.programming_box_rank {
    position: relative;
    display: inline-block;
    height: 25px;
    margin-right: 2%;
    padding-right: 4%;
    font-weight: 700;
}
.programming_box_rank::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-image: url(./img/icon/crown.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
}
.programming_box_list_item_ttl a {
    font-weight: 700;
    color: #4f96f6;
    text-decoration: underline;
}
.programming_box_list_item_desc {
    line-height: 2;
}
.programming_box_list_item_desc.with-img {
    display: flex;
    margin-top: 1%;
}
.programming_box_list_item_desc_img {
    flex-basis: 300px;
    margin-right: 2.5%;
}
.programming_box_list_item_desc_img br {
    display: none;
}
.programming_box_list_item_desc_text {
    flex-shrink: 2;
    line-height: 1.5;
}
@media only screen and (max-width: 480px) {
    .programming_box  {
        font-size: 14px;
    }
    .programming_box_label {
        border-radius: 0 15px 0 0;
    }
    .programming_box_label.arrow {
        padding-right: 14%;
    }
    .programming_box_label.arrow::after {
        width: 18.75px;
        height: 18.75px;
    }
	.programming_box_rank {
        margin-right: 3%;
        padding-right: 7%;
    }
    .programming_box_rank::after {
        width: 18.75px;
        height: 18.75px;
    }
    .programming_box_list_item {
        padding: 5% 2%;
    }
    .programming_box_list_item.icon-check {
        padding-left: 20px;
    }
    .programming_box_list_item.icon-check::before {
        top: 20px;
        width: 15px;
        height: 7.5px;
        border-left: 3.75px solid;
        border-bottom: 3.75px solid;
    }
    .programming_box_list_item_desc.with-img {
        flex-wrap: wrap;
    }
    .programming_box_list_item_desc_img {
        flex-basis: 100%;
        margin-bottom: 2.5%;
        margin-right: 0;
    }
}

.supervisor {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 10%;
    padding: 2.5%;
    border: solid 2px #7fb8f9;
}
.supervisor-img {
    margin-right: 5%;
}
.supervisor-img img {
    border-radius: 50%;
}
.supervisor-detail {
    width: 80%;
}
.supervisor-title {
    font-weight: bold;
}
.supervisor-name {
    font-weight: bold;
    text-decoration: underline;
}
.supervisor-detail p {
    display: none;
}
@media only screen and (max-width: 480px) {
    .supervisor {
        margin-bottom: 20%;
    }
    .supervisor-img {
        margin-right: 2.5%;
    }
    .supervisor-detail {
        width: 95%;
    }
    .supervisor-title {
        font-size: 14px;
    }
    .supervisor-name {
        font-size: 14px;
    }
    .supervisor-body {
        font-size: 10px;
    }
}

@media only screen and (max-width: 480px) {
	.single-title, .page-title {
		font-size: 16px;
	}
}

#toc_container .toc_list,
#toc_container .toc_list li ul {
    background: inherit;
}
@media only screen and (max-width: 480px) {
    #toc_container .toc_list li {
        padding: 0.25em;
        line-height: 1.25;
    }
    #toc_container .toc_list li ul {
        margin: 0;
    }
    #toc_container .toc_list li ul li {
        padding-bottom: 0;
    }
}

.sidebar #custom_html-23 .widgettitle:before {
    content: "\f549";
}
.sidebar-recommend-school .school {
    padding: 5%;
}
.sidebar-recommend-school .school a,
.sidebar-recommend-school .school a:link,
.sidebar-recommend-school .school a:visited,
.sidebar-recommend-school .school a:hover {
    color: inherit;
}
.sidebar-recommend-school .school-name {
    position: relative;
    background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);
    margin-bottom: 5%;
    padding: 4.5% 0 3.5%;
    padding-left: 13%;
    font-size: 1.25em;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}
.sidebar-recommend-school .school-name::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translateY(-50%);
    background-image: url(./img/icon/crown.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}
.sidebar-recommend-school .school-img {
    margin-bottom: 5%;
    text-align: center;
}
.sidebar-recommend-school .school-img img {
    width: 95%;
    height: auto;
    margin: 0 auto;
}
.sidebar-recommend-school .school-text {
    width: 95%;
    margin: 0 auto 5%;
    font-size: 0.9em;
    line-height: 1.5;
}
.sidebar-recommend-school .school-btn {
    background: #2FB75D;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 0 auto 5%;
    padding: 2% 0;
    border-radius: 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.advertisement-label {
	border: solid 1px;
    padding: 1%;
    font-weight: bold;
}




/*--------------------------------------
footer 改善
--------------------------------------*/

.c-row {
    display: flex;
    flex-wrap: wrap;
}

.l-footer {
    border-top: 1px solid #eee;
    overflow: hidden;
	background-color: #fff!important;
}

.l-footer--footer-3 .l-footer__header {
    padding-bottom: 24px;
    padding-top: 32px;
	    padding-left: 24px;
 	max-width: 1240px;
	margin-left: auto;
    margin-right: auto;
}

.l-footer__widget-area a {
    line-height: 3;
    text-decoration: none;
    color: #202124;
}

.c-site-branding__description {
    font-size: 0.5rem !important;
    line-height: 2.5 !important;
}

.c-site-branding__description {
    color: #202124;
}


.c-container {
	max-width: 1240px;
margin-left: auto;
    margin-right: auto;
}

.c-row>.c-row__col {
    margin-bottom: 24px;
    padding-left: 40px;
    padding-right: 40px;
}

.l-footer__widget-area p a:hover {
    border-bottom: 1px solid;
}

.site_description {
    color: #3c3c3c;
}

div#footer-menu {
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
	text-align:left;
	/* padding-bottom: 40px; */
}

p.site_description.futo {
    display: none;
}

li#menu-item-33 a {
    margin-left: 0px !important;
}

#footer-menu ul {
    margin-left: 0px;
}
p.copyright.dfont {
    display: none;
}
.c-row>.c-row__col:first-child {
    padding-left: 13px;
	margin-top: 1em;
}


#footerlogo img {
    height: 48px;
	}

img.custom-logo {
    width: 200px;
	margin-top:24px;
	margin-bottom:8px;
}

.l-footer--footer-3 .l-footer__header {
    padding-left: 0px;
	    padding: 20px 15px 10px;
	}

.l-footer__body {
    margin-top: 12px;
}

.footer-links {
    margin-top: 0px;
}





@media only screen and (max-width: 1023px) {
.c-row {
    flex-direction: column;
}

.c-row>.c-row__col {
    padding-left: 15px;
}

}


#footerlogo {
    text-align: left;
}
@media only screen and (max-width: 768px) {
	
ul#menu-\%e3\%83\%95\%e3\%83\%83\%e3\%82\%bf\%e3\%83\%bc {
    display: flex;
    flex-direction: column;
}
}