@charset "utf-8";
body {
    position: relative;
    width: 100%;
    /*min-width: 1020px;*/
    background: #000027;
}

@media screen and (max-width: 767px) {
body {
    overflow: hidden;
}
.sp-only {
    display: inherit!important;
}
.pc-only {
    display: none!important;
}
}
.sp-only {
    display: none;
}
.pc-only {
    display: inherit;
}
/* ----------------------------------------------------------------------------
    header
------------------------------------------------------------------------------ */
header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: #000027;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 10px 10px rgba(0,0,0,0.1);
}
header .inner {
    width: 940px;
    padding: 0 20px;
    margin: 0 auto;
}
header .inner #logo {
    float: left;
    width: 125px;
    padding: 10px 0;
    position: relative;
    z-index: 1000;
}
header .inner nav {
    float: right;
    width: 600px;
}
header .inner nav ul li {
    float: left;
    width: 120px;
}
/* ----------------------------------------------------------------------------
    hamburger&drawer
------------------------------------------------------------------------------ */
.hamburger {
    display: block;
    position: absolute;
    z-index: 300;
    right: 30px;
    top: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-align: center;
}
.hamburger__border {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
    top: 10px;
}
.hamburger__border:nth-child(2) {
    top: 20px;
}
.hamburger__border:nth-child(3) {
    top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger--active .hamburger__border:nth-child(1) {
    top: 20px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.hamburger--active .hamburger__border:nth-child(2), .hamburger--active .hamburger__border:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* drawer */
.drawer {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    background: #000027;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    padding-top: 100px;
}
.drawer__menu {
    text-align: center;
}
.drawer__menu-item {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
}
.drawer__menu-item a {
    display: block;
}
/* このクラスを、jQueryで付与・削除する */
.drawer--active {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.drawer--fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
/* ----------------------------------------------------------------------------
    pageImg
------------------------------------------------------------------------------ */
#pageImg {
    width: 100%;
    height: 160px;
    box-shadow: 0 -10px 10px rgba(0,0,0,0.1) inset;
    -moz-box-shadow: 0 -10px 10px rgba(0,0,0,0.1) inset;
    -webkit-box-shadow: 0 -10px 10px rgba(0,0,0,0.1) inset;
}
#pageImg h1 {
    width: 940px;
    padding: 65px 40px;
    margin: 0 auto;
}
/* ----------------------------------------------------------------------------
    main
------------------------------------------------------------------------------ */
main {
    width: 100%;
    background: #fff;
}
main section {
    width: 100%;
    padding: 50px 0;
}
main section h2 {
    width: 940px;
    padding: 0 40px;
    margin: 0 auto 40px;
}
main section .inner {
    width: 1020px;
    max-width: 100%;
    margin: 0 auto;
}
/* ----------------------------------------------------------------------------
    footer
------------------------------------------------------------------------------ */
footer {
    width: 100%;
    background: #000027;
}
footer .inner {
    width: 940px;
 max-width: calc(100% - 20px * 2);
    padding: 20px;
    margin: 0 auto;
}
footer .inner small {
    float: left;
    width: 815px;
    padding: 10px 0 0;
    color: #fff;
    font-size: 13px;
}
footer .inner p {
    float: right;
    width: 125px;
}
.btn01 {
    height: 40px;
    box-shadow: 0px 4px 0 0 rgb(179 82 19 / 75%);
    background-image: linear-gradient(to right, #fc9500, #ff7b26);
    border-radius: 40px;
    padding-top: 24px;
    display: block;
    text-align: center;
    line-height: 20px;
    font-size: 20px;
    color: #fff!important;
    text-decoration: inherit!important;
}
.btn01:hover {
    opacity: 0.8;
}
