@media screen and (max-width:1025px) {


/*************************** D-01. 枠組共通 ***********************/
#wrapper {
    overflow: hidden;
    margin: 0 auto;
    padding: 72px 0 150px;
    position: relative;
}
main{
    flex-direction: column;
}
main article{
    width:100%;
    margin-top:2.0rem;;
}
/*************************** D-02. header *************************/
header {
    max-width: 1280px;
    margin: auto;
    position: fixed;
    z-index: 1000;
    width: 100%;
}
.header-container {
    background:rgba(255,255,255,0.95);
    padding: 10px 0;
    width: 100%;
}
.header-container form {
    display: none;
    width: calc(100% - 42px - 1rem - 32px - 1rem);
    background: #fff;
    text-align: center;
    top: 3px;
    left: 0;
    padding: 14px;
    position: absolute;
}
.header-container input[type="text"] {
    width: 440px;
    margin: 0 auto;
}

.hamburger {
    display: block;
    position: relative;
    width : 42px;
    height: 42px;
    cursor: pointer;
    margin: 0 1rem;
    transition:background .3s;
}
.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 3px ;
    left: 6px;
    background: #333;
    transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 10px;
}
.hamburger span:nth-child(2) {
    top: 20px;
}
.hamburger span:nth-child(3) {
    top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.nav_active span:nth-child(1) {
    top : 20px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.hamburger.nav_active span:nth-child(2),
.hamburger.nav_active span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header-sp {
    display: flex;
    align-items: center;
}
.header-sp-search{
    display: block;
    cursor: pointer;
    width: 24px;
    margin-right: 8px;
    transition:background .3s;
    position: relative;
    text-indent: -9999px;
}
.header-sp-search::after {
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    content:"";
    width: 25px;
    height: 25px;
    display: block;
    background: url(/images/icons/icon-search.svg) no-repeat;
    background-size: auto 100%;
    transition:background-color .3s;
}
.header-sp-search.search_active::after{
    background:#333 url(/images/icons/icon-close.svg) no-repeat 50%;
    padding:4px;
    background-size: 70%;
}
/*************************** D-03. nav ***************************/
.megamenu {
    display: none;
    height: calc(100vh - 60px);
    overflow-y: scroll;
    background:rgba(255,255,255,1);
    margin-top:0;
}
.megamenu > ul {
    display: block;
    margin-bottom: 120px;
}
.megamenu > ul > li {
    text-align: left;
    width: 98%;
    margin:0 auto;
}
.megamenu > ul > li a {
    padding-left: 16px;
}
.megamenu > ul > li > a{
    border-top:1px solid #ccc;
}
.megamenu > ul > li.has-child > a::before {
    right: 16px;
    bottom: auto;
    left: auto;
    width: 8px;
    height: 8px;
}
.megamenu div {
    position: static;
}
/* 第2階層 */
.megamenu div > ul {
    background: transparent;
}
.megamenu div > ul > li {
    width: 48%;
    border-bottom: none;
}
.megamenu div > ul > li > a {
    padding-left: 0;
}
/* 第3階層 */
.megamenu div > ul > li > ul {
    padding: 0 0 10px 2px;
}

.megamenu div > ul > li,
.megamenu div > ul > li > ul,
.megamenu div > ul > li > ul > li > ul,
.megamenu div > ul > li > ul > li > ul > li > ul {
    background: transparent;
}
.megamenu div > ul > li > ul > li{
    border-bottom: 1px solid #ccc;
}
.megamenu div > ul > li > ul > li > ul > li, 
.megamenu div > ul > li > ul > li > ul > li > ul > li {
    border-bottom: none;
}

/*************************** D-04. main共通 ***********************/
.pc{
    display: none;
}
.tablet{
    display: inherit;
}
.sp{
    display: inherit;
}

.concept{
    flex-direction: column;
}
.concept .concept-left{
    width: 96%;
    margin: 0 auto;
}
.concept .tit{
    margin:0 auto;
}
.concept .catchcopy{
    font-size:3.6rem;
    text-align: center;
}
.concept .catchcopy br{
    display: none;
}
.concept .concept-right{
    width: 96%;
    margin: 0 auto;
}
.concept .concept-bg{
    font-size:6rem;
}
.concept .concept-right p br{
    display: none;
}

ul.before-after li:first-child::after{
    font-size: 12rem;
}

ul.fourColumns li{
    width: 31.3333%;
    margin:1%;
}
ul.fiveColumns li{
    width: 23%;
    margin:1%;
}
ul.sixColumns li{
    width: 23%;
    margin:1%;
}

.flex-container-three > *{
    width: 48%;
}
.flex-container-four > *{
    width: 31.3333%;
}

div.flow-ol-container ol{
    flex-direction: column;
    width: 100%;
    background: linear-gradient(to bottom, #f0f2f4, #999);
}
div.flow-ol-container ol li{
    width: 100%;
    padding: 30px 0;
    background:url(../images/icons/flow-bottom-start.svg) no-repeat center bottom, url(../images/icons/flow-bottom-end.svg) no-repeat center top;
    background-size: 160px auto;
}
div.flow-ol-container ol li:last-child{
    background: url(../images/icons/flow-bottom-end.svg) no-repeat center top;
    background-size: 160px auto;
    border: none;
}
div.flow-ol-container ol li:first-child{
    background: url(../images/icons/flow-bottom-start.svg) no-repeat center bottom;
    background-size: 160px auto;
}
div.flow-ol-container ol li::before{
    counter-increment: flow-list;
    content: counter(flow-list);
    display: block;
    font-size: 4.8rem;
    padding-bottom: 1rem;
}

.flow-section-container section{
    width:calc(50% + 6rem);
}
.flow-section-container section:nth-child(odd){
    margin-left:calc(50% - 6rem);
}
.flow-section-container h3::before{
    width: 3rem;
    padding:0.3rem 0;
    color:#fff;
    margin-right: 0.3rem;
}
.flow-section-container div.img{
    width: 12rem;
}

.page-parent li{
    min-height: 16.0rem;
}
.page-parent li a{
    font-size: 2.2rem;
}

/*************************** D-05. h1, h2見出し ********************/
/*************************** D-06. breadcrumb *********************/
/*************************** D-07. pager backnumber等 *************/
/*************************** D-08. aside **************************/
aside {
    width: 100%;
    margin-left: 0;
    position:inherit;
    display: block;
}

aside nav > ul{
    display: flex;
    flex-wrap: wrap;
}
aside nav > ul > li{
    width:48%;
    margin:1%;
}
aside nav ul li ul{
    margin-left:6px;
    padding-left:6px;
}
aside nav ul li a{
    font-size: 1.6rem;
}
aside nav > ul > li > ul > li a{
    padding:10px 4px;
}

/*************************** D-09. footer *************************/
footer ul.footerNav li {
    max-width: 31.3333%;
    width: 100%;
    padding: 0;
    margin-bottom: 25px;
}
footer ul.footerNav li a {
    padding: 0;
}
footer .logo img {
    max-width: 200px;
    height: auto;
    margin-top: 32px;
}
footer address {
    margin: 16px 0 32px;
}
footer small {
    padding: 16px 0;
}


/*************************** D-10. toppage ***********************/
.entry-container section {
    width: 48%;
    margin: 0 1% 30px;
}
.top-04-container section {
    width: 50%;
    border-top: none;
}
.top-04-container section:first-child,
.top-04-container section:nth-child(2) {
    border-top: 3px solid #ccc
}
.top-04-container section:nth-child(3) {
    border-left: 1px solid #d5d5d5;
}


/*************************** D-11. form **************************/
.keywordsearch-page form dl dd {
    padding: 10px 0 10px 0;
}
.keywordsearch-page form dl dt {
    width: 100%;
}
.keywordsearch-page input[type="text"] {
    border: 1px solid #787878;
}


/*************************** D-12. レギュレーション ********************/
pre.show{
    max-height: 80vh;
}
.regulation-color-container ul li {
    width: 31.3333%;
}

/*************************** D-13. 検索結果 ***********************/
p.search-jump{
    display:inherit;
    margin:-2.0rem 0;
}
p.search-jump a{
    padding: 5px;
    text-align: center;
    margin:0 auto;
    font-weight: bold;
    border-radius: 5px;
    cursor :pointer;
    display: block;
    transition: .5s;
}
p.search-jump a::before {
    display: inline-block;
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight:900;
    padding-right: 5px;
    transition: 0.2s;
}
p.search-jump a:hover {
    background: #eee;
}


/*************************** D-14. 内部ページ ***********************/

/*B-14-1 エリア*/
.area-cities-container ul {
    width: 32.3333%;
    margin: 0 0.5% 3%;
}


/**************************** form teamorder uniform ****************************/
table.uniform th{
    width: 14%;
}
table.uniform th span{
    font-size: 1.2rem;
    padding:0.1rem 0.3rem;
}

table.uniform td.uniform-info{
    padding-left:0.6rem;
    width:calc(44% - 0.6rem);
}
table.uniform td li.name{
    font-size:12px;
}
table.uniform td li.price{
    font-size:14px;
}

table.uniform td.uniform-size{
    width:25%;
}
table.uniform td.uniform-quantity{
    width: 17%;
}

.uniform-total{
    font-size: 1.8rem;
    padding:0.8rem 0 1rem;
}
.uniform-total ul li:nth-child(2){
    font-size: 3.0rem;
}
.uniform-total ul li:nth-child(2)::after{
    font-size:1.6rem;
}

}/* max-width */