@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
/* font-family: 'Noto Sans JP', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


main {
    font-family: 'Noto Sans JP', sans-serif;
}

/*
──────────────────────────────────────────────────────────── */

main section.contents-title + section {
    margin-top: 20px ;
}

main section.contents-title + section article ~ article {
    margin-top: 4em ;
}

main article section ~ section {
    margin-top: 3em ;
}

@media screen and (min-width:961px) {

	main section.contents-title + section {
    	margin-top: 65px ;
	}


    main article{
        max-width: 1120px;
        margin-left: auto;
        margin-right: auto;
    }
    
}   

/*
──────────────────────────────────────────────────────────── */

main article h1{
    font-size:1.6em;
    border:0.2em #CCC solid;
    padding: 0.25em 0.5em;
}

main article h2{
    border-bottom: 1px #CCC solid;
    font-size:1.5em;
    margin: 1.5em 0 0;
    padding: 0 0 0.6em;
}

main article h2:first-of-type{
    margin-top: 0;    
}

main article p{
    margin-top: 1em;
}

main article a {
	text-decoration: underline;
}

a[class*="btn_type_"]{
    box-sizing: border-box;
    box-shadow:0 0.25em 5px 0 rgba(0,0,0,0.25);
    color: #fff;
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    position: relative;
    padding:1em 3em 1em 1em;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
    width: 100%;
}

a[class*="btn_type_"]::before {
    content: "";
    border: 0;
    height:0.5em;
    line-height: 1;
    margin-top: -0.3em;
    transform: rotate(45deg);
    position: absolute;
    top: 50%; right: 1.5em;
    width: 0.5em;
}
a[class*="btn_type_"]::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

a[class*="btn_type_"]:hover {
    box-shadow:0 0 1px 0 rgba(0,0,0,0.5);
    background: #fff;
}

a.btn_type_01 {
    background: #7eb97f;
    border: 1px solid #7eb97f;

}
a.btn_type_01:hover {
    color: #7eb97f;
}
a.btn_type_01:hover::before {
    border-top: 2px solid #7eb97f;
    border-right: 2px solid #7eb97f;
}

a.btn_type_02 {
    background: #8bb2e4;
    border: 1px solid #8bb2e4;
}
a.btn_type_02:hover {
    color: #8bb2e4;
}
a.btn_type_02:hover::before {
    border-top: 2px solid #8bb2e4;
    border-right: 2px solid #8bb2e4;
}

a.btn_type_03 {
    background:#666;
    border: 1px solid #666;

}
a.btn_type_03:hover {
    color: #666;
}
a.btn_type_03:hover::before {
    border-top: 2px solid #666;
    border-right: 2px solid #666;
}

.contents-link {
    display: flex;
    justify-content:flex-end;
    margin-bottom: 30px;
}

.contents-link li {
    width: calc((100% - 10px) / 2);
	max-width:160px;
}

.contents-link li + li {
	margin-left:10px;
}

.contents-link li a {
	height: 50px !important;
}

.contents-link li a:after {
    margin-left: 8px;
}


@media screen and (min-width:961px) {
    
    a[class*="btn_type_"]{
        font-size: 1.25em;
        text-align: center;
        padding: 1em;
    }
  
	.contents-link {
    	margin-bottom: 60px;
	}

	.contents-link li {
		max-width:180px;
	}

	.contents-link li + li {
		margin-left:20px;
	}

}

.back{
    margin-top: 5em;
    text-align: center;
}

a.btn_back{
    border: 1px #CCC solid;
    box-sizing: border-box;
    box-shadow:0 0.25em 5px 0 rgba(0,0,0,0.25);
    color: #666;
    display: inline-block;
    font-size: 1em;
    line-height: 1;
    position: relative;
    padding:1em;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
}

a.btn_back:hover {
    box-shadow:0 0 1px 0 rgba(0,0,0,0.5);
    opacity: 0.6;
}


/* #anchor
──────────────────────────────────────────────────────────── */

#anchor{
    box-sizing: border-box;
    border-radius: 50%;
    background: #000;
    border:2px #FFF solid;
    display: none;
    height: 40px;
    position: fixed;
    bottom: 1em; right: 10px;
    z-index: 1;
    width: 40px;
}

#anchor img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media screen and (min-width:1280px) { 

    #anchor{
        height: 60px;
        bottom: 20; right: 20px;
        width: 60px;
        cursor: pointer;
    }
    
}

