@charset "UTF-8";
/*    ––––––––––––––––––––––––––––––––––––––––––––––
共通
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/*color*/
:root {
    --black: #2A3133;
    --green01: #57C86F;
    --green02: #2E9D77;
    --green03: #2b8867;
    --lightgreen: #F5F9F2;
    --lightgraygreen: #DDECE1;
    --white: #fff;
}


/* fontsize*/
:root {
    --160px: 10rem;
    --140px: 8.75rem;
    --130px: 8.125rem;
    --120px: 7.5rem;
    --100px: 6.25rem;
    --90px: 5.625rem;
    --80px: 5rem;
    --76px: 4.75rem;
    --70px: 4.375rem;
    --64px: 4rem;
    --60px: 3.75rem;
    --54px: 3.375rem;
    --50px: 3.125rem;
    --40px: 2.5rem;
    --38px: 2.375rem;
    --36px: 2.25rem;
    --32px: 2rem;
    --28px: 1.75rem;
    --24px: 1.5rem;
    --22px: 1.375rem;
    --20px: 1.25rem;
    --18px: 1.125rem;
    --16px: 1rem;
    --14px: 0.875rem;
    --12px: 0.75rem;
    --10px: 0.625rem;
}


/* PC、tab、スマホ表示 */
.pc { display: block !important; }
.sp { display: none !important; }


/* PC、タブレット表示 */
.tab { display: none !important; }

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


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


html {
    scroll-behavior: smooth;
    overflow: auto;
    scroll-padding-top: 80px;
}


body {
font-size: var(--18px);
line-height: 1.95;
font-weight: 400;
letter-spacing: 0.08rem;
font-family: "Noto Sans JP", sans-serif;
color: var(--black);
overflow: hidden;
}


section {
    padding: 140px 0px;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.mb100 {
    margin-bottom: 100px !important;
}

.f-green {
    color: var(--green02);
}


a:hover {
    cursor: pointer !important;
    text-decoration: none;
}

h2 {
    color: var(--green02);
    font-size: var(--32px);
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-left: 40px;
    margin: 0 0 25px 25px;
    letter-spacing: 0.13rem;
}

h2:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    display: inline-block;
    width: 50px;
    height: 6px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--green01);
    border-radius: 3px;
}

h3 {
    font-weight: bold;
    font-size: var(--32px);
}

h4 {
    font-weight: bold;
    font-size: var(--22px);
    margin-bottom: 15px;
    color: var(--green02);
    line-height: 1.6;
}

h5 {
    font-weight: bold;
    font-size: var(--20px);
    line-height: 1.6;
}


table .head th {
    background: linear-gradient(90deg, #2e9d77 47%, #57c86f);
    color: var(--white);
    text-align: center;
    font-size: var(--24px);
}

table th , table td {
    padding: 25px;
}

table th {
    background-color: var(--lightgreen);
    border: solid 1px var(--lightgraygreen);
    color: var(--green02);
    font-size: var(--28px);
    text-align: center;
}

table td {
    border: solid 1px var(--lightgraygreen);
}


.btn {
    color: var(--white);
    background: linear-gradient(90deg, #2e9d77 47%, #57c86f);
    font-weight: bold;
    font-size: var(--18px);
    padding: 18px;
    width: 100%;
    position: relative;
    display: block;
    transition : all 0.5s ease 0s;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    box-sizing: border-box;
    border-radius: 2px;
}

.btn:hover {
    color: var(--white);
    opacity: 0.8;
}


.btn-solid {
    color: var(--green02);
    border: solid 1px var(--green02);
    text-align: center;
    font-weight: 500;
    font-size: var(--18px);
    line-height: 1.75;
    border-radius: 6px;
    padding: 18px;
    width: 100%;
    position: relative;
    display: block;
    transition : all 0.5s ease 0s;
}

.btn-solid:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 10px;
    height: 10px;
    margin: auto;
    border-top: 2px solid var(--green01);
    border-right: 2px solid var(--green01);
    transform: rotate(45deg);
    box-sizing: border-box;
    border-radius: 2px;
}

.btn-solid:hover {
    color: var(--green02);
    opacity: 0.8;
}


/*    ––––––––––––––––––––––––––––––––––––––––––––––
header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header {
    padding: 0px 0px 0px 100px;
    position: fixed;
    z-index: 999;
    background-color: var(--white);
    height: 70px;
    width: 100%;
}

header .logo {
    margin-bottom: 20px;
    width: 220px;
}

header .navbar {
    padding: 0;
}

header .header-nav {
    list-style: none;
    /*margin: 7px 0 0;*/
}

header .header-nav li {
    text-align: center;
    font-size: var(--16px); 
    background: linear-gradient(90deg, #2e9d77 20%, #57c86f);
    padding: 19px 40px 20px;
}

header .header-nav li a {
    color: var(--white);
    font-weight: 500;
    display: inline-block;
    position: relative;
}

header .header-nav li a:after {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 0;
    right: -17px;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    box-sizing: border-box;
    border-radius: 2px;
}

/*header .header-nav li {
    text-align: center;
    margin-left: 70px;
    font-size: var(--18px);
}

header .header-nav li a {
    color: var(--black);
    font-weight: 500;
    display: inline-block;
    position: relative;
}

header .header-nav li a:after {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 0;
    right: -17px;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid var(--green01);
    border-right: 2px solid var(--green01);
    transform: rotate(45deg);
    box-sizing: border-box;
    border-radius: 2px;
}*/


.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:0px;
	right: 0px;
	cursor: pointer;
    width: 50px;
    height:50px;
    background-color: var(--red);
}
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
	background-color: var(--white);
  	width: 50%;
  }
.openbtn span:nth-of-type(1) {
	top:12px;	
}
.openbtn span:nth-of-type(2) {
	top:22px;
}
.openbtn span:nth-of-type(3) {
	top:32px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
}


#g-nav{
    position:fixed;
    z-index: 999;
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;
	background: var(--white);
	transition: all 0.6s;
}
#g-nav.panelactive{
    right: 0;
}
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav .manapa-logo {
    width: 40%;
}

#g-nav ul {
    position: absolute;
    z-index: 999;
    top:50%;
    left:45%;
    transform: translate(-50%,-50%);
    margin-left: 15px;
    width: 90%;
}
#g-nav li {
	list-style: none;
    text-align: left;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: solid 1px var(--lightbluegray);
}

#g-nav li:first-child {
    margin-bottom: 15px;
    padding-top: 40px;
}

#g-nav li:first-child ,#g-nav li:last-child {
    border-bottom: none;
}

#g-nav li img {
    width: 90%;
}


#g-nav li a{
	color: var(--bluegray);
	text-decoration: none;
	padding:10px;
	font-weight: bold;
}



/*    ––––––––––––––––––––––––––––––––––––––––––––––
トップページ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top .box {
    background-color: var(--white);
    border: solid 1px var(--lightgraygreen);
    border-radius: 6px;
    margin-bottom: 40px;
}

.top .box img {
    border-radius: 6px 6px 0 0;
}

.top .box .docs {
    padding: 30px;
}


/* FV
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top .fv {
    /*margin-top: 80px;*/
    /*min-height: 100vh;*/
    margin-top: 70px;
    padding-bottom: 120px;
    position: relative;
}

.top .fv .img {
    background-image: url(../img/fv-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    height: 500px;
    margin-left: 21%;
    border-radius: 0 0 0 8px;
    margin-bottom: 80px;
}

.top .fv .title-img {
    position: absolute;
    z-index: 10;
    top: 12%;
    left: 95px;
}

.top .fv img {
    border-radius: 6px;
}

.top .fv p {
    font-size: var(--18px);
}

.top .fv .deco {
    position: absolute;
    bottom: -15%;
    /*bottom: -45%;*/
    left: 0;
    width: 550px;
    z-index: 10;
}


/* sec01
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*.top #sec01 {

}*/

/* sec02
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top #sec02 {
    background-color: var(--lightgreen);
    padding: 140px 0 100px;
    position: relative;
}

.top #sec02 .deco {
    position: absolute;
    top: -7%;
    right: 0;
    width: 450px;
}

.top #sec02 h3 {
    text-align: center;
    color: var(--green02);
    margin-bottom: 25px;
}

.top #sec02 p {
    text-align: center;
    font-weight: 500;
    font-size: var(--20px);
    margin-bottom: 60px;
}

.top #sec02 .box p {
    text-align: left !important;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: bold;
}



/* sec03
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top #sec03 {
    padding: 70px 0 50px;
    position: relative;
}

.top #sec03 .deco {
    position: absolute;
    top: 7%;
    left: 0;
    width: 400px;
}

.top #sec03 h2 {
    color: var(--green01);
    margin-left: 0;
    padding-left: 0;
}

.top #sec03 h2:before {
    width: 0px;
}

.top #sec03 ul {
    margin-bottom: 0;
}

.top #sec03 ul li {
    list-style: none;
    font-size: var(--16px);
    display: flex;
}

.top #sec03 ul li span {
    color: var(--green02);
    margin-right: 12px;
    font-size: var(--16px);
}

.top #sec03 ul li a {
    color: var(--black);
    text-decoration: underline;
}


/* sec04
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top #sec04 {
    background-color: var(--lightgreen);
    padding: 140px 0 100px;
}


.top #sec04 .box .title {
    text-align: center;
    font-weight: bold;
    font-size: var(--20px);
    color: var(--green02);
    margin-bottom: 15px;

    line-height: 1.25;
}

.top #sec04 .box .title span {
    font-size: var(--14px);
}

.top #sec04 .box p {
    font-size: var(--14px);
    margin-bottom: 0px;
    line-height: 1.75;
}



/*    ––––––––––––––––––––––––––––––––––––––––––––––
子ページ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.child {
    margin-top: 70px;
}

.child p {
    margin-bottom: 25px;
    text-align: justify;
}

.child .btn-medium-width {
    margin: 0 auto;
    width: 55% !important;
}

.child .box {
    background-color: var(--lightgreen);
    border-radius: 6px;
    padding: 60px 60px 50px;
    margin: 70px 0 50px;
}

.child .box a {
    color: var(--black);
}

.child .box ul {
    list-style: none;
}

.child .box ul li {
    line-height: 1.7;
    margin-bottom: 10px;
    position:relative;
    text-indent:-1.55em;
    padding-left:1em;
}

.child .box ul li:before {
    color:var(--green01);
    content:"● ";
}


.child .box-solid {
    border: solid 1px var(--green02);
    background-color: var(--white);
    border-radius: 6px;
    padding: 60px 60px 50px;
    margin: 70px 0 50px;
}

.child .box-solid a {
    color: var(--black);
}

.child .link {
    color: var(--black);
    position: relative;
    display: inline-block;
    text-decoration: underline;
    transition : all 0.5s ease 0s;
}

.child .link:hover {
    color: var(--green02);
}

.child .link:after {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 0;
    right: -15px;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid var(--green01);
    border-right: 2px solid var(--green01);
    transform: rotate(45deg);
    box-sizing: border-box;
    border-radius: 2px;
}


/* ページタイトル
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.child .page-title {
    background-image: url(../img/pagetitle-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    height: 250px;
    margin-left: 21%;
    border-radius: 0 0 0 8px;
    margin-bottom: 40px;
}

.child .page-title h1 {
    font-weight: bold;
    font-size: var(--40px);
    letter-spacing: 0.1rem;
    position: absolute;
    z-index: 10;
    /*top: 17%;*/
    top: 160px;
    left: 100px;
}

.child .page-title h1 span {
    background-color: var(--white);
    padding: 15px;
    border-radius: 6px;
}

.child .anchor-btn .btn-solid:after {
    transform: rotate(135deg);
}



/* パンくず
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.breadcrumbs {
    margin-bottom: 60px;
}

.breadcrumbs p {
    font-size: var(--14px) !important;
}

.breadcrumbs a {
    color: var(--black);
}


/* sec01
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* sec02
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.child #sec02 {
    padding: 60px 0 140px;
}

.child #sec02 img {
    border-radius: 6px;
}

.child #sec02 p {
    font-size: var(--16px);
}



/* sec03
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.child #sec03 {
    background-color: var(--lightgreen);
    padding: 100px 0;
}

.child #sec03 h2 {
    margin: 0 0 30px 0;
    padding-left: 0;
}

.child #sec03 h2:before {
    width: 0;
}

.child #sec03 .btn {
    font-size: var(--20px);
    margin: 0 auto;
    line-height: 1.8;
    width: 55%;
}

.child #sec03 .btn:after {
    right: 30px;
    width: 15px;
    height: 15px;
}


.child #sec03 .contact {
    font-weight: bold;
}

.child #sec03 .contact .address {
    font-size: var(--24px);
    line-height: 1.55;
    margin-bottom: 40px;
}

.child #sec03 .contact a {
    color: var(--black);
}


/*ふるさと納税による大学支援*/
#child01 #sec01 .link:after {
    border: 0px;
}

#child01 #sec02 h4 {
    margin-bottom: 5px;
}

#child01 #sec02 p {
    font-size: var(--18px);
    margin-bottom: 5px;
    font-weight: 500;
    margin-left: 2px;
}

#child01 #sec02 ul {
    list-style: none;
    margin-bottom: 40px;
}

#child01 #sec02 ul li {
    font-size: var(--16px);
    position:relative;
    text-indent:-1.55em;
    padding-left:1em;
}

#child01 #sec02 ul li:before {
    color:var(--green01);
    content:"● ";
}



/*学生団体指定課外活動支援寄付制度*/
#child02 #sec02 table {
    margin-bottom: 20px;
    width: 100%;
}

#child02 #sec02 table th {
    font-size: var(--20px);
    line-height: 1.6;
    width: 50%;
}

#child02 #sec02 table th span {
    font-size: var(--16px);
}

#child02 #sec03 .btn {
    margin-bottom: 15px;
    width: 100%;
}

#child02 #sec03 .method {
    font-weight: bold;
    font-size: var(--18px);
}

/*研究奨励寄付金*/
#child03 #sec03 .btn {
    margin-bottom: 15px;
    width: 100%;
}

/*    ––––––––––––––––––––––––––––––––––––––––––––––
footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer .footer-top {
    border-top: solid 1px var(--lightgraygreen);
    padding: 60px 0 50px;
}

footer .footer-top ul li {
    list-style: none;
    text-align: center;
    margin-left: 70px;
    font-size: var(--18px);
}

footer .footer-top ul li a {
    color: var(--black);
    font-weight: 500;
    display: inline-block;
    position: relative;
}


footer .footer-top ul li a:after {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 0;
    right: -17px;
    width: 8px;
    height: 8px;
    margin: auto;
    border-top: 2px solid var(--green01);
    border-right: 2px solid var(--green01);
    transform: rotate(45deg);
    box-sizing: border-box;
    border-radius: 2px;
}


footer .footer-btm {
    background: linear-gradient(90deg, #2e9d77 20%, #57c86f);
    color: var(--white);
    padding: 60px 0px 10px;
}

footer .footer-btm h3 {
    margin-left: 30%;
}

footer .footer-btm .emblem {
    width: 250px;
    opacity: 0.5;
    position: absolute;
    left: 17%;
    margin-top: -25px;
}

footer .footer-btm strong {
    font-size: var(--22px);
}

footer .footer-btm span {
    font-size: var(--14px);
}

footer .footer-btm p {
    line-height: 1.5;
    margin-bottom: 8px;
}

footer .footer-btm a {
    color: var(--white);
}

footer .footer-btm .copyright {
    text-align: center;
    font-weight: normal;
    margin-top: 50px;
    font-size: var(--12px);
}


/*pagetop*/
#page-top{
    position: relative;
    display: inline-block;
    margin: 0 80px 20px 0;
}

#page-top a:before {
    content: '';
    width: 80px;
    height: 80px;
    background-color: var(--green01);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

#page-top a:after {
    content: '';
    width: 15px;
    height: 15px;
    border: 0;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    left: 32px;
    bottom: 0;
    margin: auto;
    border-radius: 2px;
}

/*リンクを右下に固定*/
#page-top  {
	position: fixed;
	right: 20px;
	bottom:50px;
	z-index: 10;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*上に上がる動き*/

#page-top.UpMove{
	animation: UpAnime 0.8s forwards;
}
@keyframes UpAnime{
    from {
    opacity: 0;
	transform: translateY(400px);
}
to {
    opacity: 1;
	transform: translateY(0);
}
}

/*下に下がる動き*/

#page-top.DownMove{
	animation: DownAnime 0.s forwards;
}
@keyframes DownAnime{
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(400px);
    }
}



/*    ––––––––––––––––––––––––––––––––––––––––––––––
レスポンシブ
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* ––––––––––––––––––––––––––––––––––––––––––––––
1500px以下
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 1500px) {
    /*FV
––––––––––––––––––––––––––––––––––––––––––––––– */
.top .fv .img {
    margin-left: 13%;
}
.top .fv .title-img {
    width: 600px;
}

.top .fv .deco {
    width: 400px;
}

.top #sec03 .deco {
    width: 350px;
}


/*footer
––––––––––––––––––––––––––––––––––––––––––––––– */
footer .footer-btm .emblem {
    left: 9%;
}
}


/* ––––––––––––––––––––––––––––––––––––––––––––––
1400px以下
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 1400px) {

/*header
––––––––––––––––––––––––––––––––––––––––––––––– */
header {
    /*padding: 5px 70px 12px;*/
    padding: 0px 0px 0px 70px;
}


/*FV
––––––––––––––––––––––––––––––––––––––––––––––– */
.top .fv .img {
    margin-left: 10%;
}
.top .fv .title-img {
    left: 50px;
}


/*下層ページ
––––––––––––––––––––––––––––––––––––––––––––––– */
.child .page-title {
    margin-left: 11%;
}

.child .page-title h1 {
    left: 70px;
}
}



/* ––––––––––––––––––––––––––––––––––––––––––––––
1200px以下
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 1200px) {
.top #sec03 h2 {
    font-size: var(--28px);
}
}

/* ––––––––––––––––––––––––––––––––––––––––––––––
992px以下
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 992px) {
    section {
        padding: 80px 15px;
    }
    
    h2 {
        font-size: var(--24px);
        padding-left: 30px;
        line-height: 1.55;
    }
    h2:before {
        width: 40px;
    }

    h3 {
        font-size: var(--24px);
        line-height: 1.6;
    }

    table .head th {
        font-size: var(--16px);
    }

    /*table th ,table td {
        display: block;
    }*/

    table th {
    font-size: var(--20px);
    }
    table td {
        font-size: var(--14px);
    }

    .btn {
    font-size: var(--16px);
    }

    .btn-solid {
    color: var(--green02);
    border: solid 1px var(--green02);
    text-align: center;
    font-weight: 500;
    font-size: var(--16px);
    line-height: 1.75;
    border-radius: 6px;
    padding: 18px;
    width: 100%;
    position: relative;
    display: block;
    transition: all 0.5s 
}

/*header
––––––––––––––––––––––––––––––––––––––––––––––– */
    header {
        padding: 0 0 0 30px;
        /*padding: 10px 15px 12px;
        height: 60px;*/
    }
    /*header .logo {
    width: 200px;
}*/


/*FV
––––––––––––––––––––––––––––––––––––––––––––––– */
    .top .fv p {
        font-size: var(--16px);
    }

    .top .fv .deco {
    position: absolute;
    /*bottom: -30%;*/
    bottom: -10%;
    left: 0;
    width: 240px;
}

.top .fv .img {
    background-image: url(../img/fv-bg-sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    height: 550px;
    margin-left: 10%;
    border-radius: 0 0 0 8px;
    margin-bottom: 50px;
}

    .top .fv .title-img {
        left: 20px;
        width: 60%;
    }

    


/*sec02
––––––––––––––––––––––––––––––––––––––––––––––– */
    .top #sec02 {
    padding: 80px 0 40px;
    }

    .top #sec02 p {
    font-size: var(--16px);
    margin-bottom: 40px;
    }
    .top #sec02 .box p {
    font-size: var(--18px);
    }

/*sec03
––––––––––––––––––––––––––––––––––––––––––––––– */
.top #sec03 .col-lg-2 {
    text-align: center;
}

    .top #sec03 ul {
    padding-left: 0;
    }
    .top #sec03 ul li {
    font-size: var(--14px);
    }

.top #sec03 {
    padding: 50px 15px 70px;
    position: relative;
}

.top #sec03 .deco {
    top: 55%;
    left: 0;
    width: 240px;
}

.top #sec03 ul li {
    display: block;
}


/*sec04
––––––––––––––––––––––––––––––––––––––––––––––– */
    .top #sec04 {
    padding: 80px 0 40px;
}

/*footer
––––––––––––––––––––––––––––––––––––––––––––––– */
footer .footer-btm {
    background: linear-gradient(90deg, #2e9d77 20%, #57c86f);
    color: var(--white);
    padding: 180px 0px 10px;
    text-align: center;
    position: relative;
}

footer .footer-btm h3 {
    margin: 0 0 20px 0;
} 


footer .footer-btm .emblem {
    width: 160px;
    opacity: 0.5;
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    margin: auto;
}

footer .footer-btm strong {
    font-size: var(--18px);
}

footer .footer-btm p {
    font-size: var(--14px);
    text-align: center;
}

footer .footer-btm p span {
    font-size: var(--12px);
}

footer .footer-btm .copyright {
    margin-top: 30px;
}

/*pagetop
––––––––––––––––––––––––––––––––––––––––––––––– */
#page-top{
    margin: 0 60px 10px 0;
}

#page-top a:before {
    width: 60px;
    height: 60px;
}

#page-top a:after {
    width: 10px;
    height: 10px;
    left: 26px;
}


/*下層ページ
––––––––––––––––––––––––––––––––––––––––––––––– */
.child .page-title .top {
    top: 140px;
}

.child .page-title .btm {
    top: 220px;
}

.child .box {
    padding: 60px 30px 50px;
}

.child .page-title h1 {
    font-size: var(--28px);
    top: 15%;
    left: 20px;
}

#child01 #sec01 img {
    margin: 0 auto;
    width: 60%;
}

.child #sec03 .btn {
    font-size: var(--20px);
    margin: 0 auto;
    line-height: 1.8;
    width: 100%;
}

}


/* ––––––––––––––––––––––––––––––––––––––––––––––
550px以下
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 550px) {
    h2 {
        font-size: var(--22px);
        padding-left: 20px;
    }

    h2:before {
    left: -5px;
    width: 35px;
}

h4 {
    font-size: var(--18px);
}

/*ヘッダー
––––––––––––––––––––––––––––––––––––––––––––––– */
    header {
        padding: 0px 0px 0px 10px;
        height: 60px;
    }
        header .logo {
        width: 160px;
    }

    header .header-nav {
        padding-left: 0;
    }
    header .header-nav li {
    font-size: var(--14px);
    padding: 15px 20px 18px 15px;
}

header .header-nav li a:after {
    right: -12px;
}



/*FV
––––––––––––––––––––––––––––––––––––––––––––––– */
.top .fv {
    margin-top: 60px;
    padding-bottom: 60px;
}

.top .fv h2 {
    margin: 0 15px 25px 30px;
}

.top .fv p {
    padding: 0 15px;
}

.top .fv .deco {
    position: absolute;
    /*bottom: -35%;*/
    bottom: -10%;
    left: 0;
    width: 180px;
}

.top .fv .img {
    background-image: url(../img/fv-bg-sp.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top left;
    height: 300px;
    margin-left: 10%;
    border-radius: 0 0 0 8px;
    margin-bottom: 50px;
}

    .top .fv .title-img {
        left: 20px;
        width: 80%;
        top: 6% !important;
    }

.top .box .docs {
    padding: 20px;
}


/*sec03
––––––––––––––––––––––––––––––––––––––––––––––– */
.top #sec03 .deco {
    top: 70%;
    left: 0;
    width: 180px;
}


/*子ページ
––––––––––––––––––––––––––––––––––––––––––––––– */
.child {
    margin-top: 60px;
}

.breadcrumbs {
    padding: 0 20px;
    margin-bottom: 40px;
}

.child p {
    font-size: var(--16px);
}

    .child .btn-medium-width {
    width: 100% !important;
}

.child .box-solid {
    padding: 40px 25px;
    margin: 60px 0 40px;
}

.child .box ul {
    padding-left: 20px;
}

.child .box ul li {
    text-indent: -1.55em;
    padding-left: 1em;
    font-size: var(--16px);
}

.child .box {
        padding: 40px 15px;
    }

    
.child .link {
    font-size: var(--14px);
}

.child .page-title {
    background-image: url(../img/fv-bg-sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    height: 200px;
    margin-left: 21%;
    border-radius: 0 0 0 8px;
    margin-bottom: 40px;
}

.child .anchor-btn {
    padding: 0 30px;
}

.child .btn-solid {
        font-size: var(--16px);
        padding: 15px 25px 15px 15px;
        margin-bottom: 10px;
    }

.child .page-title h1 {
        font-size: var(--22px);
        top: 20%;
        left: 15px;
}

.child .page-title .top {
    top: 100px;
}

.child .page-title .btm {
    top: 170px;
}

.child #sec01 {
    padding: 60px 15px;
}

.child #sec02 {
    padding: 60px 15px 80px;
}

.child #sec03 {
    padding: 80px 15px;
}

.child #sec03 .btn {
        font-size: var(--18px);
        margin: 0 auto;
        line-height: 1.8;
        padding: 15px 10px;
        width: 100%;
    }

    .child #sec03 .btn:after {
        right:12px;
        width: 10px;
        height: 10px;
    }

/*ふるさと納税による大学支援*/
#child01 #sec02 p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: var(--16px);
}
#child01 #sec01 img {
    width: 100%;
}

/*学生団体指定課外活動支援寄付制度*/
#child02 #sec02 table th {
    font-size: var(--16px);
}

#child02 #sec02 table th span {
    font-size: var(--12px);
}

#child02 #sec02 table th, #child02 #sec02 table td {
    padding: 15px;
}

#child02 #sec03 .method {
    font-size: var(--16px);
    line-height: 1.6;
}

#child02 #sec03 p {
    text-align: left !important;
}


}