@charset "UTF-8";
/* CSS Document */

@media screen and (min-width: 0px) and (max-width: 960px) {


html, body {
    font-size: 16px;
}

.pc-no {
    display: inline;
}

.sp-no {
    display: none;
}


.header {
    width: 100%;
    height: 60px;
    margin: 0;
    padding: 0;
    position: fixed;
    overflow: hidden;
    background-color: rgb(255 255 255 / 90%);
    top: 0;
    left: 0;
    z-index: 100;
}

.header .hdr-wrap {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .hdr-l {
    width: 25%;   
}

.header .hdr-logo {
    width: 100%;
    max-width: 100px;
}

.header .hdr-logo a {
    width: 100%;
    height: 100%;
    display: block;
}

.header .hdr-r {
    width: 100%;
}

.header .hdr-nav {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    float: none;
    position: fixed;
    top: -100%;
/* Start off the screen */
/* top: 60px;*/
    left: 0;
    z-index: 10000;
    
    overflow-y: scroll;
    background-color: #FFFCF4;
    transition: top 0.3s all; /* Change the property to 'top' */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-start;
}

.header ul.nav-list {
    width: 100%;
    margin: 60px 0 30px;
    padding: 0;
    list-style: none;
    display: block;
    font-size: 140%;
    font-weight: 600;
    text-align: center;
}

.header ul.nav-list li {
    width: 100%;
    margin: 0 0 30px;
}
.header ul.nav-list li:last-child {
    margin: 0;
}

.header ul.nav-list li:after {
    display: none;
    
}

.header ul.nav-list li a {
    width: 100%;
    padding: 10px 0;
    display: block;
    color: #383838;
    text-decoration: none;
    text-align: center;   
}

.header .entry-btn {
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
}

.header .entry-btn a {
    width: 100%;
    height: 100%;
    display: block;
}


/**SP NAV: BUTTONS***/

.sub-nav {
    width: 10%;
    display: flex;
    justify-content: flex-end;
}
.sub-btn {
    width: 60px;
    height: 60px;
    margin: 0;
    color: #333333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-content:center;
    text-align: center;
}
.sub-btn a {
    width: 100%;
    height: 100%;
    color: #333333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-content:center;
    text-align: center;
}
.sub-btn .sb-flex {
    width: 100%;
    height: 100%;
    color: #333333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-content:center;
    text-align: center;
}
.sub-btn .sb-icon {
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    display: block;
}
.sub-btn .ham-icon {
    width: 100%;
}

#menu-wrapper {
    cursor: pointer;
    z-index: 100;
}

#hamburger-menu {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

#hamburger-menu span {
    opacity: 1;
    right: 0;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    color: black;
    background-color: #FF5314;
    position: absolute;
    transform: rotate(0deg);
    transition: .3s all;
}

#hamburger-menu span:nth-child(1) {
    top: 0px;
    background-color: #EE4023;
}
#hamburger-menu span:nth-child(2) {
    width: 80%;
    top: 10px;
    background-color: #04A1EC;
}
#hamburger-menu span:nth-child(3) {
    top: 20px;
    background-color: #FEBE00;
}

#hamburger-menu.open span:nth-child(1) {
    transform: translateY(10px) rotate(135deg);
}
#hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-60px);
}
#hamburger-menu.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-135deg);
}

/****/

/***MAIN***/

.main {
    width: 100%;
    min-height: 800px;
    margin: 60px 0 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.page-hd {
    width: 100%;
    margin: 0;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    background-image: url("../img/common/pagehd_bk.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page-hd .hd-wrap {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 2.5%;
    position: relative;
    overflow: hidden;
    background-color: #FFFCF4;
    border-radius: 10px;
}

.page-hd .hd-wrap h1.page-title {
    font-size: 160%;
    line-height: 140%;
}

.pankuzu {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 80%;
}

.pankuzu a {
    color: #383838;
    text-decoration: underline;
}

.page {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.page .page-wrap {
    width: 98%;
    max-width: 1200px;
    margin: 100px auto 150px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.kyocho {
    background: linear-gradient(transparent 70%, #FFFF4A 30%);
    display: inline;
    padding: 0 0 5px;
}

.main .entry-btn {
    display: none;
}

.main .entry-btn-sp {
    display: block;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 50;
}

.main .entry-btn-sp img {
    line-height: 70%;
    margin: 0;
}

.main .entry-btn-sp a {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 70%;
}

h2.page-mds {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 210%;
    line-height: 180%;
    font-weight: 700;
}

.btn {
    width: 80%;
    max-width: 350px;
    margin: 60px auto 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #EE4023;
    border-radius: 50px;
    font-size: 120%;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: 0.1em;
    
    transition: all 0.3s;
}
.btn.orange-btn { background-color: #EE4023; }
.btn.green-btn { background-color: #108B3F; }
.btn:hover {
    background-color: #383838;
    letter-spacing: 0.2em;
}
.btn a {
    width: 100%;
    padding: 30px 0;
    display: block;
    text-align: center;
    color: #FFF;
    text-decoration: none;
}


/***FOOTER***/


.pagetop {
    width: 10%;
    max-width: 60px;
    position: fixed;
    right: 1%;
/*    bottom:400px;*/
    bottom: 25%;
    z-index: 10;
    line-height: 0%;
    opacity: 1.0;
	cursor: pointer;
    
    transition: all 0.3s;
}

.pagetop:hover {
    opacity: 0.5;
}

.sticky {
	position: fixed;
    bottom: 10%;
}


.footer {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.sub-footer:before {
    content: "";
    width: 100%;
    height: 10px;
    display: block;
    background-image: url("../img/common/footer/border.svg");
    background-repeat: repeat-x;
    background-size: contain;
}

.ftr-top {
    background-color: #FFF;
}

.footer .ftr-top .ftr-wrap {
    padding: 60px 0;
}

ul.ftr-link {
    width: 70%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

ul.ftr-link li {
    width: 100%;
    margin: 0 0 10px;
    max-width: 300px;
    transition: all 0.3s;
}

ul.ftr-link li:last-child {
    margin: 0;
}

ul.ftr-link li:hover {
    opacity: 0.5;
}


.ftr-bot {
    background-color: #FFFCF4;
}

.footer .ftr-wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer .ftr-bot .ftr-wrap {
    padding: 30px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ftr-bot .ftr-l {
    width: 80%;
    margin: 0 auto 30px;
}

.ftr-l .ftr-logo {
    max-width: 350px;
}
.ftr-l .ftr-logo a {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s;
}
.ftr-l .ftr-logo a:hover {
    opacity: 0.5;
}

.ftr-bot .ftr-r {
    width: 100%;
}

.ftr-r h3.ftr-mds {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    color: #EE4023;
    font-size: 160%;
    line-height: 180%;
    font-weight: 700;
    text-align: center;
}

.ftr-r .con-name {
    width: 100%;
    font-size: 120%;
    font-weight: 600;
}
.ftr-r .con-info {
    line-height: 180%;
    margin: 0 0 20px;
}

.ftr-r .shutai {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.ftr-r .shutai h4.shutai-mds {
    width: 100%;
    display: inline-block;
    color: #EE4023;
    font-size: 140%;
    margin: 0 0 10px;
    text-align: center;
}

.footer .copyright {
    text-align: center;
    color: #EE4023;
    font-size: 80%;
    
}





}