/* 共通 */
@font-face {
    font-family: "Century Gothic";
    src: url("../font/century-gothic-bold.ttf") format("truetype");
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px !important;
}

body {
    font-weight: 600;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;

}

h2 {
    text-align: center;
    letter-spacing: 13px;
    font-family: kozuka-gothic-pr6n, sans-serif;
    font-size: 60px;
    font-weight: 300;
    font-style: normal;
    color: #0a63be;
}

h2 span {
    display: block;
    letter-spacing: 0;
    line-height: 42px;
    font-size: 19px;
    font-weight: bold;
    font-style: normal;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    color: #333;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: .6;
}

/* →Read-more-btn */
.more-btn {
    margin-top: 45px;
    text-align: center;
}

.more-btn .btn-in {
    display: inline-block;
    padding-bottom: 7px;
    border-bottom: 1px solid #0a63be;
}

.more-btn a {
    display: block;
    letter-spacing: 1.5px;
    font-family: 'Century Gothic', Futura, YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
    color: #0a63be;
}

.more-btn span {
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

/* Read-more-btnここまで */

/* circle-more-view-btn */
.more-view {
    position: relative;
    width: 357px;
    margin: 45px auto 0;
    height: 75px;
    line-height: 75px;
    text-align: right;
    border: 2px solid #333;
    border-radius: 50px;
    font-size: 18px;
    letter-spacing: 2px;
}

.more-view::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid black;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.more-view a {
    display: block;
    text-align: center;
}

/* circle-more-view-btnここまで */
/* h2のバー */
.project-cont .ptrn01,
.overview-cont .ptrn01,
.recruit-cont .ptrn01 {
    position: relative;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 4px;
}

.project-cont .ptrn01::before,
.overview-cont .ptrn01::before,
.recruit-cont .ptrn01::before {
    content: "";
    position: absolute;
    width: 33%;
    top: 50%;
    left: 0;
    border: 2px solid #fff;
}

.project-cont .ptrn01::after,
.overview-cont .ptrn01::after,
.recruit-cont .ptrn01::after {
    content: "";
    position: absolute;
    width: 33%;
    top: 50%;
    right: 0;
    border: 2px solid #fff;
}

.project-cont .gray-bar::before,
.overview-cont .gray-bar::before,
.recruit-cont .gray-bar::before {
    border: 2px solid #f1f1f1;
}

.project-cont .gray-bar::after,
.overview-cont .gray-bar::after,
.recruit-cont .gray-bar::after {
    border: 2px solid #f1f1f1;
}

.recruit-cont .more-view::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 70px;
    width: 0;
    height: 0;
    border-left: 15px solid black;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

/* h2のバーここまで */

.pc-none {
    display: none;
}

/* ------------header------------ */
header {
    margin-top: 118px;
}

header .headerNav {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 20px -18px #000;
    border-radius: 0px;
}

header .inner {
    width: 1153px;
    margin: 15px auto;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    align-items: center;
}

header ul {
    display: flex;
    justify-content: center;
    margin: 30px auto 15px;
    font-size: 14px;
}

.menu li {
    margin-left: 60px;
}

.menu li:first-child {
    margin-left: 0px;
}


.gnavi li a {
    /*線の基点とするためrelativeを指定*/
    position: relative;
}

.gnavi li.current a,
.gnavi li a:hover {
    color: #000;
}

.gnavi li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0%;
    width: 98%;
    height: 2px;
    background: #000;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}

.gnavi li ul li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0%;
    width: 98%;
    height: 0px;
    background: #000;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}

/* ドロップダウンメニュー */
/*2階層目以降は横並びにしない*/
nav ul ul {
    display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
    position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    /* 	padding:20px 35px; */
    transition: all .3s;
}

nav ul li li a {
    padding: 18px 15px;
}

nav ul li a:hover {
    color: #fff;
}

/*==矢印の設定*/
.has-child ul li {
    margin: 0;
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul {
    position: absolute;
    left: 0;
    top: -1px;
    z-index: 4;
    background: #fff;
    width: 205px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul,
nav li.has-child:active>ul,
nav li.has-child ul li:active>ul {
    visibility: visible;
    opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
    color: #000;
    border-bottom: solid 1px #000;
}


nav li.has-child ul li:last-child>a {
    border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
    opacity: .6;
}


/*==3階層目*/

/*3階層目の位置*/
nav li.has-child ul ul {
    top: 0;
    left: 182px;
    background: #66ADF5;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active {
    background: #448ED3;
}

/* ドロップダウンメニュー */




header li a {
    font-family: 'Century Gothic', Futura, YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
    font-weight: bold;
    letter-spacing: 1.5px;
}

/* ------------main------------ */
main {
    width: 100%;
    margin: 0 auto;
}

/* topic */
.topic {
    width: 1130px;
    margin: 100px auto 100px auto;
}


.topic .inner {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.topic .col {
    position: relative;
}

.slide-list {
    margin-top: 50px;
}


@media screen and (max-width: 750px) {
    .topic {
        width: 1130px;
        margin: 30px auto 100px auto;
    }

    .slide-list {
        margin-top: 15px;
    }
}

.topic .card {
    position: absolute;
    top: 83%;
    right: 0;
    width: 297px;
    padding: 15px 20px 20px 23px;
    border-top: 5px solid #0a63be;
    border-bottom: 5px solid #0a63be;
    background-color: #fff;
}

.topic h2 {
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
}

.topic h2 span {
    font-size: 14px;
    color: #0a63be;
    letter-spacing: 1.5px;
    font-weight: bold;
}

.topic p {
    font-size: 15px;
    margin-top: 10px;
    line-height: 26px;
    font-weight: 500;
}

.topic .slider-sp {
    display: none;
}

/* news */
.sonota {
    background-color: #0a63be;
}

.workshop {
    background-color: #ff9537;
}

.mokei {
    background-color: #6cc87b;
}


.news {
    background-color: #edf2ff;
    margin: 0 auto;
    width: 100%;
    padding: 64px 0 73px;
}

.news ul {
    width: 840px;
    margin: 35px auto 0;
}

.news li {
    background-color: #fff;
}

.news li:nth-child(n+2) {
    margin-top: 13px;
}

.news a {
    display: block;
}

.news .news-title {
    padding: 21px 30px;
    font-size: 15px;
}

.news .genre {
    margin: 27px;
    padding: 2px 22px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.news .more-view {
    background-color: #fff;
}

/* project */
.project {
    margin-top: 108px;
}

.project .pgabout {
    width: 940px;
    margin: 24px auto 0;
    line-height: 30px;
    font-size: 15.5px;
}

/* botton */
.project .more-btn {
    margin-top: 42px;
    text-align: center;
}

.project .btn-in {
    padding-bottom: 7px;
    display: inline-block;
    border-bottom: 1px solid #0a63be;
}

.project a {
    display: block;
    color: #0a63be;
    letter-spacing: 1.5px;
    font-family: 'Century Gothic', Futura, YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
}

.project .sub-title {
    font-size: 20px;
    font-family: kozuka-gothic-pr6n, sans-serif;
    font-weight: 300;
}

/* pjone */
.pjone {
    margin-top: 80px;
}

.pjone .text {
    position: relative;
    /*     width: 1355px; */
    width: 76%;
    background-color: #2f7bc9;

}

.pjleft {
    float: left;
}

.pjright {
    float: right;
}

/* .pjone .side {
width: 650px;
margin: 0 363px 0 auto;
padding: 35px 31px;
} */
.pjone .side {
    width: 650px;
    margin: 0 30% 0 auto;
    padding: 3%;
}

.pjone h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 60px;
    letter-spacing: 2.9px;
	text-align:left;
	margin-top:15px;
}

.pjoneimg {
    position: absolute;
    top: 17%;
    right: -14%;
}

.pjoneimg2 {
    position: absolute;
    top: 17%;
    left: -14%;
}

.pjone span {
	color: #fff;
    font-size: 20px;
    letter-spacing: 4px;
}

.pjone .detail {
    width: 600px;
    color: #fff;
    margin: 24px 0 32px;
    line-height: 30px;
}

/* botton */
.pjone .btn {
    width: 357px;
    margin: 32px auto 45px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 18px;
    letter-spacing: 2px;
}

.btn {
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 44px;
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.pjone .inner {
    overflow: hidden;
}

.pjone .inner a {
    display: block;
    color: #fff;
}

.pjone .arw {
    margin-left: 78px;
    margin-right: 6px;
}

.project .vrtow .text {
    background-color: #41576d;
}

.project .vrtow .inner {
    flex-direction: row;
}



.project .vrtow .side {
    width: 650px;
    margin: 0 auto 0 29%;
    padding: 3%;
}

.project .vrtow h3 {
    letter-spacing: 1px;


}

/* brand */
.brand {
    max-width: 1130px;
    margin: 123px auto 74px;
}

.b_txt {
    width: 940px;
    margin: 24px auto 0;
    line-height: 30px;
}

.brand .more-btn {
    margin-top: 45px;
    text-align: center;
}

.brand .btn-in {
    padding-bottom: 7px;
    display: inline-block;
    border-bottom: 1px solid #0a63be;
}

.brand a {
    display: block;
    color: #0a63be;
    letter-spacing: 1.5px;
    font-family: 'Century Gothic', Futura, YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
}

.brand .slide-list {
    margin: 2%;
}

.brand .slide-list {
    margin-top: 119px;
}

.brand .name,
.topic .name {
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

/*===================================
pC Toppage-BRAND スライダー
===================================*/
.brand-slider {
    width: 94%;
    margin: 0 auto;
}

.brand-slider img:nth-child(2) {
    margin-top: 30px;
}


.brand-slider .slick-slide {
    margin: 0 10px;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    height: 15px;
    width: 15px;
}

.slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}


.slick-dots {
    text-align: center;
    margin: 60px 0 0 0;
}
@media screen and (max-width: 750px){
    .slick-dots {
        text-align: center;
        margin: 20px 0 0 0;
    }
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: #ccc;
}

.slick-dots .slick-active button {
    background: #333;
}

/*===================================
///pC Toppage-BRAND スライダー
===================================*/

/* about */

.about {
    background-color: #edf2ff;
    margin: 0 auto;
    width: 100%;
    padding: 60px;
}

.about-container {
    background-color: #fff;
    width: 1150px;
    margin: 0 auto;
}

.about .about-area {
    width: 1080px;
    margin: 28px auto 0;
    /*     background-color: #fff; */
    padding: 50px 60px;
    display: flex;
}

.about img {
    margin-right: 47px;
    align-self: flex-start;
}

.about h3 {
    font-size: 19px;
    line-height: 25px;
}

.about .sub-title {
    color: #aaa;
    margin-right: 15px;
}

.about p {
    margin: 17px 0px;
    line-height: 30px;
}

.video {
    width: 750px;
    margin: 0px auto;
    padding-bottom: 4%;
}

.video video {
    width: 750px;
}

/* recruit */

.recruit {
    background-color: #ececec;
    margin: 0 auto;
    width: 100%;
    padding: 60px;
}

.recruit .recruit-area {
    width: 1080px;
    margin: 30px auto 0;
    background-color: #fff;
    padding: 50px 60px;
    display: flex;
    flex-direction: row-reverse;
}

.recruit img {
    margin-left: 27px;
}

.recruit h3 {
    font-size: 19px;
    line-height: 25px;
}

.recruit .sub-title {
    color: #aaa;
    margin-right: 15px;

}

.recruit p {
    margin: 17px 0px;
    line-height: 30px;
    letter-spacing: -0.6px;
}

/* other */

.other {
    width: 1153px;
    display: flex;
    text-align: center;
    margin: 115px auto 30px;
}

.other .space {
    width: 545px;
    margin: 0 auto;
    padding: 70px;
    border-right: 3px solid #aaa;
}

.other p {
    line-height: 38px;
    margin: 26px;
    font-size: 24px;
}

.other .space:nth-child(2) {
    border-right: none;
}

.other .space:nth-child(2) p {
    margin: 17px;
}

.other span {
    font-family: 'Century Gothic', Futura, YuGothic, 'Hiragino Kaku Gothic ProN', 'Yu Gothic';
    color: #0a63be;
    font-size: 20px;
    letter-spacing: 1.5px;
}

.other a {
    display: block;
}


/* footer */
footer {
    padding: 96px 0 20px 0;
    color: #fff;
    background-color: #565656;
}

footer .copyRight {
    display: block;
    text-align: center;
    margin-top: 60px;
    font-size: 12px;

}

footer .inner {
    display: flex;
    width: 1015px;
    margin: 0 auto;
    justify-content: space-between;
}

footer .imfo2 {
    margin-top: 23px;
    line-height: 30px;
    font-size: 16px;
}

footer .telfax {
    margin-top: 10px;
    font-size: 16px;
}

footer .foot-menu {
    display: flex;
    justify-content: space-between;
}

footer ul {
    margin-left: 95px;
}

footer li:nth-child(n+2) {
    margin-top: 32px;
}

footer .icons li:nth-child(n+2) {
    margin-top: 6.5vw;
    text-align: center;
}

footer a {
    display: block;
    letter-spacing: 2px;
    color: #fff;
}

/* ----------------------------------
----------------------------------
News最新ニュース-page
------------------------------------ 
------------------------------------ */
.sub-ttl {
    letter-spacing: 1px;
    font-size: 19px;
    font-weight: 500;
}

.news-area {
    background-color: #efefef;
    padding: 50px 0;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    /* height: 100vh; */
}

.news-area .inner {
    width: 900px;
    /* margin: 0 auto; */
}



.news-area .post {
    position: relative;
    /*     padding: 15px 20px; */
    background-color: #fff;

}

.news-area .post:nth-child(n+2) {
    margin-top: 10px;
}


.news-area a {
    display: block;
}

.news-area .list-in {
    display: flex;
    align-items: center;

}

.news-area .ttl-pic {
    margin-right: 76px;
}

.news-area .news-detail {
    display: flex;
    font-size: 17px;
    letter-spacing: 1.8px;
}

.news-area .date {
    margin: auto 67px auto 0;
}

.news-area .ttl {
    margin-top: 5px;
    line-height: 25px;
    letter-spacing: 0px;
}

.news-area .junre {
    display: inline-block;
    color: #fff;
    padding: 6px 21px;
    font-size: 13px;
}


/*矢印の設定*/
.news-area .post::after {
    content: "";
    position: absolute;
    border-top: 4px solid #d7d7d7;
    border-right: 4px solid #d7d7d7;
    height: 20px;
    width: 20px;
    right: 3%;
    top: 40%;
    transform: rotate(45deg);

}

.news-area .arw {
    border-top: 4px solid #d7d7d7;
    border-right: 4px solid #d7d7d7;
    height: 30px;
    width: 30px;
    right: -1.5%;
    transform: rotate(45deg);
}

/* ------pager----- */
.pager {
    width: 240px;
    margin: 60px auto;
}

.pager .page-btn {
    display: inline;
    padding: 10px 15px;
    border: 1px #333 solid;
}

/* ----------------------------------
----------------------------------
News最新ニュース-page02
------------------------------------ 
------------------------------------ */


.news-cont .back {
    margin: 70px 0 0;
}

.news-cont .back a {
    text-decoration: underline;
}

.book .news-mv {
    text-align: center;
    margin: 30px 0;
}

.book .memo {
    font-size: 18px;
    letter-spacing: 1px;
}

.book .junre {
    margin: 20px;
    padding: 2px 19px;
    letter-spacing: 0;
    font-size: 16px;
    color: #fff;
}

.book h1 {
    margin: 10px 0 0;
    padding-bottom: 9px;
    border-bottom: 2px solid #aaa;
    font-size: 28px;
    line-height: 1.3;
}

.book .detail {
    width: 100%;
    margin: 37px auto 0;
    letter-spacing: -0.5px;
    line-height: 30px;
}

.book .detail a {
    color: blue;
    text-decoration: underline;
}

.book .detail img {
    display: block;
    margin: 15px 0;
}

.book .detail h2 {
    text-align: initial;
    letter-spacing: 0px;
    font-family: kozuka-gothic-pr6n, sans-serif;
    font-size: 24px;
    font-weight: initial;
    font-style: initial;
    color: #000;
    margin: 50px 0 15px;
    border-left: 8px solid #0a63be;
    padding-left: 7px;
}

.book .detail h3 {
    margin: 30px 0 0px;
}

.book .detail p {
    line-height: 1.7;
}

/* .book .detail p:nth-child(n+2) {
    margin: 60px 0;
} */

.book .btn-area {
    width: 700px;
    margin: 64px auto 142px;
    display: flex;
    justify-content: center;
}

.book .to-btn {
    position: relative;
    width: 258px;
    padding: 15px 0;
    font-size: 20px;
    border: 1px solid #333;
    border-radius: 30px
}

.book .to-btn:nth-child(1) {
    margin-right: 100px;
}


.book .to-btn a {
    display: block;
    font-size: 18px;
    text-align: center;
}

.book .arw-l::before {
    content: '';
    position: absolute;
    top: 19px;
    left: 20px;
    font-size: 12px;
    width: 0;
    height: 0;
    border-right: 8px solid black;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.book .arw-r::after {
    content: '';
    position: absolute;
    top: 19px;
    right: 15px;
    font-size: 12px;
    width: 0;
    height: 0;
    border-left: 8px solid black;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}


/* ----------------------------------
NewsArea-page
------------------------------------ */

.page .mv {
    background-color: #0a63be;
    padding: 63px 0;
    margin: 0 auto;
    width: 100%;
}

.nwsWrp {
    width: 700px;
    margin: 0 auto;
}

.main-ttl {
    text-align: center;
    letter-spacing: 13px;
    line-height: 35px;
    font-family: kozuka-gothic-pr6n, sans-serif;
    font-size: 60px;
    font-weight: 300;
    color: #fff;
}

.sub-ttl {
    letter-spacing: 1px;
    font-size: 19px;
    font-weight: 500;
}




/* .news-area .inner {
    width: 1145px;
    margin: 0 auto;
} */

/* ページネーション */
.nav-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.nav-links li>* {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 45px;
}

.nav-links li>*:not(.dots) {
    width: 45px;
    border-radius: 50%;
    color: #000;
    background: #efefef;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-links li>.current,
.nav-links li>a:hover {
    color: #ffffff;
    background: #0A63BE;
}

/* ページネーション */


.category-buttons li {
    border-bottom: 1px solid;
}




.news-area a {
    display: block;
    padding: 15px 20px;
}

.news-area .list-in {
    display: flex;
    align-items: center;

}

.news-area .ttl-pic {
    flex-shrink: 0;
    margin-right: 25px;
    width: 15%;
}

.news-area .date {
    margin-right: 25px;
    font-size: 17px;
    letter-spacing: 1.8px;
}

.news-area .ttl {
    line-height: 27px;
    margin-right: 65px;
}

.news-area .junre {
    color: #fff;
    padding: 6px 25px;
    font-size: 13px;
}


/*矢印の設定*/
.news-area .arw {
    border-top: 4px solid #d7d7d7;
    border-right: 4px solid #d7d7d7;
    height: 30px;
    width: 30px;
    right: -1.5%;
    transform: rotate(45deg);
}

/* ------pager----- */
.pager li {
    display: inline;
    padding: 10px 15px;
    border: 1px #ccc solid;
    color: #000053;
    border-radius: 5px / 5px;
}

.pager .this {
    background-color: #777;
    color: #fff;
}

/* ----------------------------------
----------------------------------
Project-page-PC
------------------------------------ 
------------------------------------ */
.project-cont .project-head {
    width: 1000px;
    margin: 70px auto 0;
    display: flex;
    justify-content: space-between;
}

.project-cont .project-head .col:first-child {
    margin-right: 20px;

}

.project-cont .project-head .name {
    margin-top: 47px;
    text-align: center;
    letter-spacing: 2px;
    font-size: 36px;
    font-weight: 500;
}

.project-cont .project-head .more-btn {
    margin-top: 20px;
}

.project-cont .project-object {
    background-color: #edf2ff;
    margin: 4% 0;
    width: 100%;
}

/* 建築模型材料・POP材料 & ホビー材料・クラフト材料 */
.project-cont .wrap {
    width: 1150px;
    margin: 0 auto;
    padding: 68px 0 135px;
}

.project-cont .project-material .show {
    display: flex;
    justify-content: space-between;
    width: 990px;
    margin: 70px auto;
}

.project-cont .project-material .text {
    width: 540px;
    font-size: 15px;
    letter-spacing: -0.1px;
    line-height: 30px;
}



/* 取り扱いアイテム */
.project-cont .project-item .slide-list {
    margin: 60px;
}

.project-cont .project-item .slider {
    width: 1025px;
    margin: 0 auto;
}

.project-cont .project-item .name {
    text-align: center;
    margin-top: 30px;
    font-size: 20px;
}

/* 主な取引先 */
.project-cont .project-customer {
    margin-top: 100px;
}

.project-cont .project-customer .customer-list {
    margin-top: 70px;
    column-count: 3;
    text-align: center;
}

.project-cont .project-customer .customer-list p {

    font-size: 20px;
}

.project-cont .project-customer .customer-list p:nth-child(n+2) {
    margin-top: 45px;
}

.project-cont .project-customer .work-gallery h3 {
    margin-top: 43px;
    padding: 21px;
    text-align: center;
    letter-spacing: 2px;
    font-size: 27px;
    font-weight: 600;
    color: #fff;
    background-color: #0a63be;
}

.project-cont .project-customer .gallery-iamage {
    padding: 48px;
    text-align: center;
    background-color: #fff;
}

.project-cont .project-customer .line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.project-cont .project-customer .pic {
    margin-bottom: 15px;
}

/* ホビー材料・クラフト材料 */
.project-craft .wrap {
    padding: 90px 0;
}

.project-cont .project-craft .gallery-iamage {
    background-color: #edf2ff;
}

.project-craft .wrap {
    padding-bottom: 160px;
}

/* ----------------------------------
----------------------------------
Overview-page-PC
------------------------------------ 
------------------------------------ */
.overview-cont .btn-list {
    display: flex;
    justify-content: space-between;
    width: 930px;
    margin: 72px auto 0;
}

.overview-cont .unc-btn {
    width: 170px;
    height: 34px;
    line-height: 32px;
    border: 2px solid #0a63be;
    border-radius: 6px;
}

.overview-cont .unc-btn a {
    display: block;
    text-align: center;
    font-size: 18px;
    color: #0a63be;
}

.overview-cont .unc-btn a:hover {
    border-radius: 4px;
    background-color: #0a63be;
    color: #fff;
}

/* 経営理念 */
.overview-cont .com-philosophy {
    margin: 68px auto 0;
}

.overview-cont .com-philosophy p {
    margin-top: 69px;
    text-align: center;
    letter-spacing: 2px;
    font-size: 49px;
    color: #0a63be;
}

/* 代表の挨拶 */
.overview-cont .com-greeting {
    margin: 60px auto 0;
    padding: 70px 0;
    width: 100%;
    background-color: #edf2ff;
}

.overview-cont .talk {
    width: 966px;
    margin: 66px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overview-cont .talk p {
    width: 540px;
    line-height: 22px;
    letter-spacing: -0.3px;
    font-size: 15px;
}

/* 会社情報 */
.overview-cont .ptrn02,
.guideline .ptrn02 {
    width: 100%;
    margin: 0 auto;
    padding: 43px;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 28px;
    color: #fff;
    background-color: #0a63be;
}

.compInner {
    width: 1150px;
    margin: 0 auto;
}

.overview-cont h3 {
    margin-top: 72px;
    padding: 0 0 15px;
    letter-spacing: 3px;
    border-bottom: 3px solid #f1f1f1;
    font-size: 28px;
}

.overview-cont .com-info table {
    margin-top: 5px;
    letter-spacing: 1.5px;
}

.overview-cont .com-info tr {
    display: block;
    padding: 45px 5px 15px;
    border-bottom: 2px solid #f1f1f1;
}

.overview-cont .com-info th {
    width: 138px;
}

#suppliers p {
    margin-top: 40px;
    line-height: 40px;
}

/* 会社沿革 */
.overview-cont .com-histry,
#suppliers {
    margin-top: 70px;
}

.overview-cont .com-histry table {
    margin-top: 30px;
}

.overview-cont .com-histry tr {
    display: block;
    padding: 10px 35px 10px 25px;
    line-height: 30px;
    letter-spacing: 2px;
}

.overview-cont .com-histry tr:nth-child(2n+1) {
    background-color: #ededed;
}

.overview-cont .com-histry th {
    width: 118px;
}

.overview-cont .com-histry td {
    letter-spacing: 1px;
}

/* 会社アクセス */
.overview-cont .com-access {
    margin-top: 70px;
}

.overview-cont .com-access .address {
    display: flex;
    justify-content: space-between;
}

.overview-cont .com-access table {
    margin-top: 16px;
}

.overview-cont .com-access tr {
    display: block;
    padding: 37px 6px 16px;
    border-bottom: 1px solid #f1f1f1;
    letter-spacing: 1.5px;
}

.overview-cont .com-access th {
    width: 175px;
}

.overview-cont .com-access iframe {
    margin: 55px;
}

/* ----------------------------------
----------------------------------
Recruit-page-PC
------------------------------------ 
------------------------------------ */
/* わたしたちのこと */
.recruit-cont .aboutUs {
    margin-top: 72px;
}

.recruit-cont .aboutUs p {
    margin-top: 65px;
    line-height: 30px;
    letter-spacing: -0.2px;
    font-size: 15px;
}

.aboutUs p {
    width: 1150px;
    margin: 0 auto;
    margin-top: 65px;
}

.recruit-cont .aboutUs .imglist {
    display: flex;
    justify-content: space-between;
    margin: 35px auto;
    width: 100%;
}

/* 求める人物像 */
.recruit-cont .ideal {
    margin: 70px auto 0;
    padding: 65px 0px 1px;
    width: 100%;
    background-color: #edf2ff;
}

.recruit-cont .ideal .inner {
    width: 1150px;
    margin: 0 auto;
}

.recruit-cont .ideal .text {
    display: flex;
    justify-content: space-between;
    width: 970px;
    margin: 70px auto;
}

.recruit-cont .ideal p {
    width: 550px;
    letter-spacing: -0.1px;
    font-size: 15px;
    line-height: 30px;
}

/* 募集要項 */
.recruit-cont .guideline table {
    margin-top: 5px;
    letter-spacing: 1.5px;
}

.recruit-cont .guideline tr {
    display: block;
    padding: 30px 5px 30px;
    border-bottom: 2px solid #f1f1f1;
}

.recruit-cont .guideline th {
    width: 138px;
}

.recruit-cont .guideline td {
    line-height: 1.7;
}

.recruit-cont h3 {
    margin-top: 72px;
    padding: 0 0 15px;
    letter-spacing: 3px;
    border-bottom: 3px solid #f1f1f1;
    font-size: 28px;
}

.recruit-cont .btn-area {
    display: flex;
    width: 966px;
    margin: 73px auto 77px;
    justify-content: center;
}

.recruit-cont .to-btn {
    position: relative;
    width: 360px;
    height: 75px;
    line-height: 75px;
    border: 1px solid #333;
    border-radius: 45px;
}

.recruit-cont .to-btn:nth-child(1) {
    margin-right: 60px;
}

.recruit-cont .to-btn a {
    display: block;
    font-size: 19px;
    text-align: center;
}

/* .recruit-cont .arw-r::after {
content: "▶";
position: absolute;
top: 0px;
right: 7px;
font-size: 15px;
} */

/* ----------------------------------
----------------------------------
Enrty-form-page-PC
------------------------------------ 
------------------------------------ */

.entry-cont .entry-form {
    padding: 70px 0;
    margin: 0 auto;
    width: 100%;
    background-color: #b2b2b2;

}

.entry-cont .form-seat {
    width: 1156px;
    margin: 0 auto;
    padding: 70px 55px;
    border-radius: 9px;
    background-color: #FFF;
}

.entry-cont .ttl {
    font-size: 19.5px;
    margin: 0 0 70px;
    border-bottom: 3px solid #f1f1f1;
    padding-bottom: 15px;
}

.entry-cont form {
    padding: 70px 0px 30px;
    border-top: 3px solid #f1f1f1;
    border-bottom: 3px solid #f1f1f1;
}

.entry-cont .enter {
    margin-bottom: 43px;
}

.entry-cont .enter p {
    margin-bottom: 16px;
    font-size: 20px;
}

.entry-cont .must {
    padding: 0 0 0 27px;
    font-size: 17px;
    color: #0a63be;
}

.entry-cont input {
    width: 100%;
    padding: 0 33%;
    border-radius: 10px;
    font-size: 20px;
}

.entry-cont .input-s {
    padding: 17px 20px;
    width: 380px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 20px;
}

.entry-cont .input-s:nth-child(1) {
    margin-right: 25px;
}

.entry-cont textarea {
    padding: 17px 20px;
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 20px;

}

.entry-cont .data {
    display: flex;
    justify-content: space-between;
    width: 818px;
    margin: 70px auto;
}

.entry-cont .drop {
    width: 369px;
    margin: 0 auto;
    padding: 30px 22px;
    text-align: center;
    border-radius: 10px;
    border: 3px solid #dcdcdc;
    background-color: #f2f2f2;
}

.drop .btn::after {
    content: '';
    position: absolute;
    top: 17px;
    right: 12px;
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.drop .drimg {
    margin-bottom: 30px;
}

.codedropz-btn-wrap {
    background: #2c2c2c;
    border-radius: 7px;
}

.codedropz-btn-wrap a {
    font-size: 20px;
    display: block;
    color: #fff;
    margin: 15px 0;
    padding: 14px 0;
}

.codedropz-upload-inner h3 {
    font-size: 26px !important;
}



.entry-cont .data p {
    margin: 26px 0 18px;
    /*     line-height: 40px; */
    letter-spacing: 1px;
    font-size: 22px;
}

.entry-cont .data .btn {
    height: 50px;
    line-height: 50px;
    border-radius: 14px;
    background-color: #2c2c2c;
}

.entry-cont .data a {
    display: block;
    letter-spacing: 2px;
    color: #fff;
    font-size: 19px;
}

.entry-cont .more-view {
    margin: 83px auto 0;
    border: none;
    /*     border-radius: 50px;
	font-size: 20px;
	background-color: #0a63be; */
}

.entry-cont .more-view a {
    color: #fff;
}

.entry-cont .more-view::after {
    color: #fff;
    border-left: 15px solid #fff;
}

/* ----------------------------------
----------------------------------
Contact-page-PC
------------------------------------ 
------------------------------------ */
span.wpcf7-list-item {
    display: block;
}

.contact-cont .contact {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 70px;
    background-color: #b2b2b2;
}

.contact-cont .seat {
    width: 1145px;
    margin: 0 auto;
    padding: 70px 52px;
    border-radius: 10px;
    background-color: #fff;
}

.contact-cont .attention {
    padding: 3px 0;
    letter-spacing: 0.7px;
    font-size: 20px;
}

.contact-cont .must-read {
    margin: 10px 0;
    padding: 43px 0;
    border-top: 3px solid #d7d7d7;
    border-bottom: 3px solid #d7d7d7;
}

.contact-cont .article {
    margin: 44px 0 8px;
    font-weight: bold;
}

.contact-cont .article2 {
    margin: 6px 0 8px;
}

.contact-cont p {
    letter-spacing: 1.5px;
}

.contact-cont .lh30 {
    line-height: 30px;
}

.contact-cont .mt35 {
    margin-top: 35px;
}

.contact-cont .go-ahead {
    margin: 24px;
    text-align: center;
    line-height: 32px;
    font-size: 21px;
    font-weight: bolder;
}

.contact-cont .wpcf7-list-item {
    height: 75px;
    line-height: 75px;
    padding: 0 32px;
    border-radius: 8px;
    font-size: 22px;
    font-weight: bold;
    background-color: #e6eff8;
    margin: 20px 0px !important;
}

.contact-cont .contact-section input,
.consent input {
    width: 30px;
    height: 30px;
    margin: 25px 23px 0 0;
    -webkit-appearance: auto;
    vertical-align: text-bottom;
}

.contact-section {
    margin: 35px 0px;
    /*     padding: 65px 0px 20px;
	border-top: 3px solid #d7d7d7; */
    border-bottom: 3px solid #d7d7d7;
}

.contact-section .attention {
    margin-bottom: 25px;
}

.contact-section .must {
    margin-left: 23px;
    font-size: 16px;
    color: #0a63be;
}

.contact-section .wpcf7-list-item {
    margin: 24px 0;
    background-color: #b2b2b2;
}

.wpcf7-submit {
    color: #fff;
    display: block;
    margin: 0 auto;
}

.contact .more-view::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 12px;
    width: 0;
    height: 0;
    border-left: 15px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.entry-cont form {
    padding: 70px 0px 30px;
    border-top: 3px solid #f1f1f1;
    border-bottom: 3px solid #f1f1f1;
}

.contact-cont .enter-area {
    margin: 70px 0;
}

.contact-cont .enter-area .enter {
    margin-bottom: 48px;
}

.contact-cont .enter-area .b-ttl {
    font-size: 20px;
}

.contact-cont .enter-area .must {
    padding: 0 0 0 27px;
    font-size: 17px;
    color: #0a63be;
}

.contact-cont .enter-area input {
    padding: 17px 20px;
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 20px;

}

.contact-cont .enter-area .input-s {
    margin-top: 15px;
    padding: 15px 20px;
    width: 374px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 20px;
}

.contact-cont .enter-area input,
.contact-cont .enter-area textarea {
    margin-top: 15px;
}

.contact-cont .enter-area .mg-l {
    margin-right: 32px;
}

.contact-cont .enter-area textarea {
    padding: 17px 20px;
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 20px;

}

.contact-cont .more-view {
    margin: 83px auto 0;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    background-color: #0a63be;
}

.contact-cont .more-view a,
.contact-cont .more-view::after {
    color: #fff;
}

/* ----------------------------------
----------------------------------
Brand-page-PC
------------------------------------ 
------------------------------------ */

.brand-cont {
    margin-bottom: 100px;
}

.brand-cont .caption {
    margin: 70px 0 0;
    line-height: 30px;
    text-align: center;
}

.brand-cont .brand-list {
    width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.brand-cont .brand-list .item {
    margin: 50px 0px;
    padding: 45px 30px;
    width: 360px;
    box-shadow: 5px 13px 20px #efefef;
}

.brand-cont .item .pic {
    text-align: center;
}

.brand-cont .item-name {
    margin: 25px 0 14px;
    line-height: 25px;
    font-size: 18px;
    color: #0a63be;
	letter-spacing:normal;
	font-weight:bold;
	text-align:left;
}

.brand-cont span {
    font-size: 12px;
}

.brand-cont .brand-list p {
    line-height: 25px;
}

.brand-cont .brand-list .btn {
    position: relative;
    width: 300px;
    height: 63px;
    line-height: 63px;
    margin: 25px auto 0;
    text-align: center;
    border: 1px solid #333;
    border-radius: 50px;
}

.brand-cont .brand-list a {
    display: block;
    font-size: 19px;
    letter-spacing: 2px;
}

.brand-cont .brand-list .btn::after {
    content: '';
    position: absolute;
    top: 22px;
    right: 60px;
    width: 0;
    height: 0;
    border-left: 15px solid #000;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

.brand-cont .brand-list.list2 {
    margin-top: 10px;
}

.nopage {
    width: 100%;
    margin: 10% auto;
    text-align: center;
    line-height: 50px;
}

.nopage h1 {
    font-size: 22px;
}

.nopage a {
    color: blue;
}

.entsubmit {
    width: 30%;
    margin: 50px auto;
}

.entsubmit .wpcf7-submit {
    background: #0a63be;
    border-radius: 50px;
    width: 100%;
    text-align: center;
    padding: 15px 0px;
}

.entnk {
    width: 1150px;
    height: 208px;
    margin: 175px auto 100px;
    text-align: center;
    line-height: 30px;
}

.entnk h3 {
    font-size: 30px;
    margin-bottom: 30px;
}

/* ----------------------------------
----------------------------------
Confilm-page-PC
------------------------------------ 
------------------------------------ */
.confirm-cont .contact {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 70px;
    background-color: #b2b2b2;
}

.confirm-cont .seat {
    width: 1145px;
    margin: 0 auto;
    padding: 130px 52px;
    border-radius: 10px;
    background-color: #fff;
}



.confirm-cont .attention {
    letter-spacing: 0.7px;
    text-align: center;
    font-size: 25px;
    margin-bottom: 9%;
}

.confirm-cont .contact-section {
    margin: 110px 0 0;
}

.confirm-cont .select {
    padding: 10px 30px;
    letter-spacing: 2px;
    font-size: 24px;
    background-color: #e7e7e7;
}

.confirm-cont .reply {
    font-size: 23px;
    margin: 47px 10px;
}

.confirm-cont .btn-area {
    display: flex;
    justify-content: center;
    margin: 180px 0 0;
}

.confirm-cont .to-btn-line {
    margin-right: 70px;
    width: 360px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    border: 2px solid #0a63be;
    border-radius: 50px;
}

.confirm-cont .to-btn-bg {
    width: 360px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50px;
    background-color: #0a63be;
}

.confirm-cont .to-btn-line a {
    display: block;
    letter-spacing: 2px;
    font-size: 19px;
    color: #0a63be;
}

.confirm-cont .to-btn-bg a {
    display: block;
    letter-spacing: 2px;

    font-size: 19px;
    color: #fff;

}

.entck {
    text-align: center;
}

.pri .wrap {
    width: 1150px;
    margin: 70px auto;
}

.pri .wrap p,
.pri ul {
    line-height: 1.7;
}

.pri h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding-left: 10px;
    border-left: 8px solid;
    margin-bottom: 15px;
    letter-spacing: initial;
}

.sidebar {
    background: #fff;
    margin-left: 50px;
    height: 190px;
    width: 250px;
}

.col_sidebar {
    margin: 0px 0 0 50px;
    width: 250px;
}

.sidebar h2,
.col_sidebar h2 {
    background: #0a63be;
    padding: 15px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: bold;
}

/* アコーディオン */
.accordion-001 {
    max-width: 750px;
    margin: 0 auto;
    background-color: #f2f2f2;
}

.accordion-001 p a {
    text-decoration: underline;
}

.accordion-001:not([open]) {
    margin-bottom: 7px;
}

.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-radius: 5px;
    background-color: #0A63BE;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    width: 750px;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion-001[open] summary::after {
    transform: rotate(225deg);
}

.accordion-001 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1.5em 2em 2em 2em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
    transform: none;
    opacity: 1;
}

/* アコーディオン */
.pdct section {
    width: 1150px;
    margin: 50px auto;
    display: flex;
    justify-content: space-around;
}

.product_cont {
    width: 750px;
}

.pdct section img {
    border: 1px solid #0A63BE;
}

.category-buttons a {
    display: block;
    padding: 15px 6px;
    background: #fff;
}

.storeBtn {
    margin: 50px auto;
}

.storeBtn p {
    color: red;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}

.storeBtn ul {
    width: 360px;
    margin: 0 auto;
}

.storeBtn ul li {
    border-radius: 6px;
    margin: 10px 0;
}

.storeBtn ul li:nth-child(1) {
    background: #0a63be;
}

.storeBtn ul li:nth-child(2) {
    background: #bf0000;
}

.storeBtn ul li:nth-child(3) {
    background: #ff9900;
}

.storeBtn ul li:nth-child(4) {
    background: #069A3A;
}

.storeBtn ul li:nth-child(5) {
    background: #006B30;
}

.storeBtn ul li a {
    display: block;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 18px;
}

.pdt_cont_txt {
    margin: 50px auto;
}

.pdt_cont_txt p {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
}

/* うごく矢印 */
.btn06 {

    position: relative;

    transition: ease .1s;
}

.btnarrow1::after {
    content: '';

    position: absolute;
    top: 42%;
    right: 13px;

    width: 5px;
    height: 5px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);

    transition: all .1s;
}

.btnarrow1:hover::after {
    right: 10px;
}

.clm_cont {
    width: 1000px;
    margin: 200px auto;
    display: flex;
    justify-content: space-between;
}

.clm_cont .detail ol{
    margin-left: 15px;
}

.clm_cont .book {
    width: 750px;
    margin: 0px auto;
}

.news-mv img {
    border: 1px solid #e3e3e3;
}

.clm_cont h3 {
    display: flex;
    align-items: center;
    column-gap: 8px;
    color: #333333;
    font-size: 20px;
}

.clm_cont h3::before {
    width: 0.8em;
    height: 0.4em;
    border-bottom: 4px solid #0a63be;
    border-left: 4px solid #0a63be;
    transform: rotate(-45deg) translate(2px, -2px);
    content: '';
}

.clm_cont ol {
    list-style: auto;
}

.clm_cont p {
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.toc-002 {
    margin: 30px 0;
    border: 2px solid #0a63be;
    border-radius: 3px;
}

.toc-002 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #0a63be;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
}

.toc-002 div::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 4H21V6H8V4ZM3 3.5H6V6.5H3V3.5ZM3 10.5H6V13.5H3V10.5ZM3 17.5H6V20.5H3V17.5ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
    content: '';
}

.toc-002 ol {
    list-style-type: disc;
    margin: 0;
    overflow: hidden;
}

.toc-002>ol {
    padding: 1em 1em 1em 3em;
}

.toc-002 ol ol {
    margin-top: 5px;
    padding-left: 1.1em;
}

.toc-002 li {
    padding: 5px 0;
    font-weight: 600;
}

.toc-002 ol ol li {
    font-weight: 500;
    font-size: .9em;
}

.toc-002 a {
    color: #333;
    text-decoration: none;
}

.maincont ol,
.maincont ul {
    font-weight: 500;
}

.corp_btn {
    text-align: right;
}

.corp_btn a {
    border: 3px solid #0a63be;
    padding: 10px 20px;
    margin: 0px 20px 10px;
    border-radius: 20px;
    display: inline-block;
    color: #0a63be;
}





































@media screen and (max-width: 768px) {
    .btn::after {
        content: '';
        position: absolute;
        top: 14px;
        right: 30px;
        width: 0;
        height: 0;
        border-left: 8px solid white;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    .stf_blg_bnr {
        text-align: center;
    }

    .compInner {
        width: 100%;
        margin: 0 auto;
    }

    .sp-none {
        display: none;
    }

    header {
        margin-top: 72px;
    }

    header .inner {
        width: auto;
        margin: 0 1% 0 4%;
        align-items: center;
    }

    header .logo {
        width: 24vw;
    }

    header ul {
        display: block;
        font-size: 16px;
    }


    main {
        width: auto;
    }

    h2 {
        font-size: 35px;
        letter-spacing: 6px;
    }

    h2 span {
        font-size: 14px;
        line-height: 25px;
    }

    .topic .inner {
        display: none;
    }

    /* circle-more-view-btn-sp */
    .more-view {
        position: relative;
        width: 64%;
        height: 10vw;
        line-height: 10vw;
        font-size: 3.2vw;
        letter-spacing: 0;
    }

    .more-view::after {
        content: '';
        position: absolute;
        top: 13px;
        right: 30px;
        width: 0;
        height: 0;
        border-left: 8px solid black;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    .topic {
        width: 100%;
        margin-bottom: 17px;
    }

    .topic .tpcBnr li {
        margin: 15px auto;
    }

    .tlhum {
        display: flex;
        justify-content: space-between;
        margin: 15px 12px 5px 20px;
    }

    .humb {
        display: flex;
    }

    .humb .tl {
        height: 50px;
        width: 50px;
        padding: 7px;
    }

    .news-cont .back {
        margin: 20px 0 0;
    }

    /*=================
	5-2-1 3本線が×に
	================*/
    .burger {
        position: relative;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
        z-index: 20;
    }

    .burger span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #333;
        width: 45%;
    }

    .burger span:nth-of-type(1) {
        top: 15px;
    }

    .burger span:nth-of-type(2) {
        top: 23px;
    }

    .burger span:nth-of-type(3) {
        top: 31px;
    }

    /*is-activeクラスが付与されると線が回転して×に*/

    .burger.is-active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
        background: #333;
    }

    .burger.is-active span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .burger.is-active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
        background: #333;
    }

    .menu-sp {
        width: 100vw;
        height: 100vh;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        display: none;
    }

    header .burger-menu {
        display: block;
        width: 100%;
        margin-left: 15%;
        margin-top: 20vw;
        font-size: 16px;
    }

    .menu-sp .burger-menu li {
        margin: 6vh 0vw;
    }

    .menu-sp a {
        font-size: 5vw;
        /*         text-align: center; */
    }

    .menu-sp.is-active {
        display: block;
    }

    header .sns {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 70%;
    }

    header .sns li {
        margin: 0 2vw;
    }

    .has-child ul,
    .has-child ul li {
        margin: 0 !important;
    }

    .has-child ul li a {
        font-size: 15px;
        padding: 17px 10px;
    }

    .has-child a:hover,
    .has-child ul li a:hover {
        opacity: 1;
        color: #000;
    }

    .has-child ul li a:hover {

        color: #000;
    }

    nav li.has-child ul li a {
        color: #000;
        border-bottom: solid 1px #fff;
    }

    /*2階層目を持つliの矢印の設定*/
    nav ul li.has-child::before {
        content: '';
        position: absolute;
        left: 165px;
        top: 6px;
        width: 6px;
        height: 6px;
        border-top: 2px solid #999;
        border-right: 2px solid #999;
        transform: rotate(135deg);
    }

    nav li.has-child ul {
        position: absolute;
        left: 162px;
        top: 0px;
        z-index: 4;
        background: #fff;
        width: 250px;
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
    }

    /* Top-news-sp */
    .pc-none {
        display: block;
    }

    .news {
        margin-top: 16%;
        padding: 10vw 0;
    }

    .news ul {
        width: 90%;
    }

    .news a {
        display: block;
    }

    .news .news-title {
        padding: 10px 20px;
        font-size: 13px;
        line-height: 6vw;
    }

    .news .btn,
    .pjone .btn {
        width: 74%;
        height: 10vw;
        line-height: 10vw;
        font-size: 3.2vw;
        letter-spacing: 0;
        text-align: center;
    }

    .news .arw,
    .pjone .arw {
        font-size: 2.5vw;
        margin-left: 18%;
        margin-right: 2%;
    }

    /* Top-project */
    .project {
        margin-top: 10vw;
    }

    .project .pgabout {
        width: auto;
        margin: 24px auto 0;
        padding: 0 10%;
    }

    .pjone {
        margin-top: 30px;
    }

    .pjone .inner {
        padding-top: 92px;
        display: block;
    }

    .pjoneimg {
        top: -12%;
        right: 0;
    }

    .pjone .text {
        width: 100%;
    }

    .pjoneimg2 {
        top: -12%;
        left: 0;
    }

    .pjone .pc-none {
        display: block;
        width: 85%;
        margin: 0 auto;
    }

    .pjone .side,
    .project .vrtow .side {
        width: auto;
        margin: 0 auto;
        padding: 43% 7% 0;
    }

    .pjone h3 {
        font-size: 5vw;
        line-height: 8vw;
        text-align: center;
    }

    .project .sub-title {
        font-size: 3vw;
    }

    .pjone .detail {
        width: auto;
        margin: 24px 0 32px;
        line-height: 5vw;
        font-size: 2.7vw;
    }



    .project .vrtow .text {
        left: auto;
    }

    .brand {
        margin: 50px auto;
    }

    .brand .slide-list {
        margin-top: 8vw;
    }

    /* brand-sp */
    .brand p {
        width: auto;
        margin: 24px 6% 0;
        line-height: 30px;
        font-size: 3vw;
    }

    /*==================
	Top-Brandスライダーsp
	===================*/
    .slider {
        /*横幅94%で左右に余白を持たせて中央寄せ*/
        width: 98%;
        margin: 0 auto;
    }

    .slider img:nth-child(2) {
        margin-top: 30px;
    }

    /*slickのJSで書かれるタグ内、スライド左右の余白調整*/

    .slider .slick-slide {
        margin: 0 10px;
    }

    /*矢印の設定*/
    .slick-prev,
    .slick-next {

        border-top: 2px solid #666;
        border-right: 2px solid #666;
        height: 10px;
        width: 10px;
    }

    /* about */
    .about {
        width: auto;
        padding: 6vw 0;
    }

    .about img,
    .recruit img {
        display: block;
        margin: 0 auto;
    }

    .about .about-area,
    .recruit .recruit-area {
        width: auto;
        margin: 0 auto;
        padding: 5vw;
        display: block;
        background-color: #edf2ff;
    }

    .about h3,
    .recruit h3 {
        font-size: 4vw;
        margin-top: 6vw;
    }

    .about p,
    .recruit p {
        margin: 4vw auto;
        line-height: 5vw;
        font-size: 3vw;
    }

    .more-btn {
        margin-top: 5vw;
    }

    .about-container {
        width: 100%;
        background: #edf2ff;
    }

    .video {
        width: 90%;
    }

    .video video {
        width: 100%;
    }

    /* recruit */
    .recruit {
        width: auto;
        padding: 6vw 0;
    }

    .recruit .recruit-area {
        background-color: #ececec;
    }

    .recruit img {
        margin-left: auto;
    }

    /* other */
    .other {
        width: 100%;
        display: flex;
        text-align: center;
        margin: 12% 0;
    }

    .other .space {
        width: 100%;
        margin: 0 auto;
        padding: 10vw 0;
        border-right: 2px solid #ddd;
    }

    .other .space img {
        width: 10vw;
    }

    .other .space:nth-child(2) img {
        width: 8vw;
    }

    .other .space:nth-child(2) {
        border-right: none;
        /*         margin-top: -2vw; */
    }

    .other p {
        line-height: 6vw;
        margin: 4vw 0;
        font-size: 4vw;
    }

    .other .space:nth-child(2) p {
        margin: 8px 0;
    }

    .other span {
        font-size: 3vw;
        letter-spacing: 0;
    }

    /* footer-sp */
    footer {
        padding: 10vw 7vw;
    }

    footer .inner {
        width: auto;
        margin: 0 auto;
        display: flex;
        justify-content: flex-start;
        font-size: 3vw;
    }

    footer .telfax {
        font-size: 2.5vw;
    }

    footer ul {
        margin-left: 3vw;
    }

    footer ul:nth-child(n+2) {
        margin-left: 14vw;
    }

    footer .imfo2 {
        font-size: 3vw;
    }

    /* ---------------
	page2 news-TOP
	------------------ */
    /* ----------------------------------
	----------------------------------
	News最新ニュース-page-SP
	------------------------------------ 
	------------------------------------ */
    .page .mv {
        padding: 5vw;
        width: auto;
    }

    .main-ttl {
        letter-spacing: 1vw;
        line-height: 4.8vw;
        font-size: 7vw;
    }

    .sub-ttl {
        letter-spacing: 0;
        font-size: 3vw;
    }

    .news-area {
        display: block;
        padding: 8vw 0;
        width: 100%;
    }

    .news-area .post {
        width: 95%;
        margin: 0 auto;
    }

    .news-area a {
        padding: 16px 18px;
    }

    .news-area .inner {
        width: auto;
    }


    .news-area .ttl-pic {
        width: 21vw;
        margin-right: 4vw;
    }

    .news-area .date {
        margin: 3vw 4vw 0 0;
        font-size: 2.6vw;
        letter-spacing: 0;
    }

    .news-area .ttl {
        line-height: 17px;
        margin: 5px 25px 0px -68px;
        font-size: 15px;

    }

    .news-area .junre {
        color: #fff;
        padding: 5px 17px;
        font-size: 12px;
        margin-top: 7px;
    }

    .news-area .news-detail {
        margin-top: -3vw;
    }

    .news-area .post::after {
        border-top: 2px solid #d7d7d7;
        border-right: 2px solid #d7d7d7;
        height: 15px;
        width: 15px;
        right: 4%;
        top: 40%;
    }

    /* ----------------------------------
	----------------------------------
	News最新ニュース-page02-SP
	------------------------------------ 
	------------------------------------ */
    .news-cont {
        width: 100%;
    }

    .nwsWrp {
        width: 92%;
        margin: 0 auto;
    }

    .book .news-mv {
        margin: 20 auto;
    }

    .book .memo {
        margin-top: 0;
        font-size: 4vw;
    }

    .book .big-ttl {
        margin: 4% 0 2%;
        font-size: 5vw;
    }

    .book .detail {
        width: auto;
        margin: 5% auto 0;
        font-size: 13px;
    }

    .book .to-btn:nth-child(1) {
        margin-right: 3%;
    }

    .book .detail p:nth-child(n+2) {
        margin: 15% 0 0;
    }


    .book .btn-area {
        width: 90%;
        margin: 10% auto 25%;
    }

    .book .to-btn {
        position: relative;
        width: 190px;
        padding: 3% 0;
    }

    .book .arw-l::before {
        left: 10px;
    }

    .book .to-btn a {
        font-size: 3.5vw;
    }

    .book .arw-r::after {
        top: 10px;
    }

    .book .arw-l::before {
        top: 10px;
    }

    /* ----------------------------------
	----------------------------------
	Project-page-SP
	------------------------------------ 
	------------------------------------ */

    .project-cont .project-head {
        width: auto;
        margin: 10% 3%;
    }

    .project-cont .project-head .name {
        margin-top: 10%;
        letter-spacing: 0;
        font-size: 3.5vw;
    }

    .more-btn a {
        font-size: 3.5vw;
        letter-spacing: 0;
    }

    .more-btn span {
        font-size: 3.5vw;
        margin-right: 2vw;
    }

    .project-cont .project-object {
        margin-top: 7%;
    }

    .project-cont .wrap {
        width: auto;
        margin: 0 auto;
        padding: 13% 0;
    }

    .project-cont .wrap {
        width: auto;
        margin: 0 auto;
        padding: 13% 0;
    }

    .project-cont .ptrn01,
    .recruit-cont .ptrn01 {
        font-size: 4vw;
        letter-spacing: 2px;
    }

    .project-cont .ptrn01::before,
    .recruit-cont .ptrn01::before {
        width: 20%;
        border: 1px solid #fff;
    }

    .project-cont .ptrn01::after,
    .recruit-cont .ptrn01::after {
        width: 20%;
        border: 1px solid #fff;
    }

    /* 建築模型材料・POP材料 */
    .project-cont .project-material .show {
        width: auto;
        margin: 10vw 3% 0;
    }

    .project-cont .project-material .text {
        font-size: 3vw;
        line-height: 20px;
    }

    .project-cont .project-material .show .pc-none {
        display: block;

    }

    .project-cont .project-material .more-view {
        margin-top: 5vw;
        background-color: #fff;
    }

    /* 取り扱いアイテム */
    .project-cont .project-item {
        margin: 13% 0;
    }

    .project-cont .project-item .slider {
        width: auto;
    }

    .project-cont .project-item .slide-list {
        margin: 8vw 4% 2%;

    }

    /* 主な取引先  */
    .project-cont .project-customer {
        margin-top: 13%;
    }

    .project-cont .project-customer .customer-list {
        margin: 10vw 3%;
        column-count: 2;
    }

    .project-cont .project-customer .customer-list p {
        font-size: 3.5vw;
        text-align: left;
    }

    .project-cont .project-customer .customer-list p:nth-child(n+2) {
        margin-top: 6vw;
    }

    .project-cont .project-customer .work-gallery h3 {
        margin: 13vw 3% 0;
        padding: 3.5vw;
        font-size: 4vw;
    }

    .project-cont .project-customer .gallery-iamage {
        margin: 0 3%;
        padding: 4%;
    }

    .project-cont .project-customer .line {
        /*         columns: 2; */
        display: grid;
        grid-template-columns: 47% 47%;
        grid-template-rows: 20% 20% 20% 20% 20%;
        gap: 0px 20px;
        grid-template-areas:
            ". ."
            ". ."
            ". ."
            ". ."
            ". .";
    }

    .project-cont .project-customer .pic {
        margin-bottom: 17px;
    }

    /* ----------------------------------
	----------------------------------
	Overview-page-SP
	------------------------------------ 
	------------------------------------ */
    .overview-cont .btn-list {
        flex-wrap: wrap;
        width: auto;
        margin: 10vw 3% 0;
    }

    .overview-cont .unc-btn {
        margin: 0 3vw 3vw 0;
    }

    /* 経営理念 */
    .overview-cont .com-philosophy {
        margin: 10vw auto 0;
    }

    .overview-cont .com-philosophy p {
        margin-top: 10vw;
        letter-spacing: 0px;
        font-size: 5vw;
    }

    /* 代表の挨拶 */
    .overview-cont .com-greeting {
        margin: 10vw calc(50% - 50vw) 0;
        padding: 10vw 0;
    }

    .overview-cont .talk {
        width: auto;
        align-items: flex-start;
        margin: 10vw 3vw 0;
    }

    .overview-cont .talk p {
        margin-right: 1%;
        width: 540px;
        line-height: 5vw;
        letter-spacing: 0;
        font-size: 2.5vw;
    }

    /* 会社情報 */
    .overview-cont .ptrn02,
    .guideline .ptrn02 {
        width: auto;
        padding: 4vw;
        font-size: 4vw;
    }

    .overview-cont h3 {
        margin: 8vw 3% 0;
        padding: 0 0 2vw;
        letter-spacing: 2px;
        border-bottom: 3px solid #f1f1f1;
        font-size: 4vw;
    }

    .overview-cont .com-info table {
        font-size: 3vw;
    }

    .overview-cont .com-info tr {
        display: block;
        padding: 6vw 3% 1vw;
        border-bottom: 2px solid #f1f1f1;
        line-height: 4vw;
    }

    .overview-cont .com-info th {
        width: 25vw;
    }


    /* 会社沿革 */
    .overview-cont .com-histry {
        margin-top: 10vw;
    }

    .overview-cont .com-histry table {
        margin: 10vw 3%;
    }

    .overview-cont .com-histry tr {
        display: block;
        padding: 3vw 3%;
        font-size: 3vw;
    }

    .overview-cont .com-histry th {
        width: 20vw;
    }

    /* 会社アクセス */

    .overview-cont .com-access {
        margin-top: 10vw;
    }

    .overview-cont .com-access .address {
        display: block;
        justify-content: space-between;
        margin: 0vw 0 15px;
    }

    .overview-cont .com-access table {
        margin-top: 0;
        width: 100%;
    }

    .overview-cont .com-histry td {
        line-height: 5vw;
    }

    .overview-cont .com-access tr {
        padding: 5vw 3% 1vw;
        font-size: 3vw;
        font-size: 3vw;
    }

    .overview-cont .com-access th {
        width: 30vw;
    }

    .overview-cont .com-access iframe {
        width: 85%;
        margin: 10% 7%;
        text-align: center;
    }

    .overview-cont .ptrn01 {
        font-size: 3.5vw;
    }

    .overview-cont .gray-bar::before,
    .recruit-cont .gray-bar::before {
        border: 1px solid #f1f1f1;
    }

    .overview-cont .gray-bar::after,
    .recruit-cont .gray-bar::after {
        border: 1px solid #f1f1f1;
    }

    /* ----------------------------------
	----------------------------------
	Recruit-page-SP
	------------------------------------ 
	------------------------------------ */
    /* わたしたちのこと */
    .recruit-cont .aboutUs {
        margin-top: 8vw;
    }

    .recruit-cont .ptrn01 {
        font-size: 3vw;
        letter-spacing: 0;
    }

    .recruit-cont .aboutUs p {
        margin: 7vw auto;
        line-height: 16px;
        width: 90%;
        letter-spacing: -0.2px;
        font-size: 2.5vw;
    }

    /* 求める人物像 */
    .recruit-cont .ideal {
        margin: 10vw auto 0;
        padding: 10vw 0px 1vw;
        width: auto;
        background-color: #edf2ff;
    }

    .recruit-cont .ideal .inner {
        width: auto;
    }

    .recruit-cont .ideal .text {
        width: auto;
        margin: 10vw 3%;
    }

    .recruit-cont .ideal p {
        width: 550px;
        letter-spacing: -0.1px;
        font-size: 3vw;
        line-height: 5vw;
    }

    /* 募集要項 */
    .recruit-cont h3 {
        margin: 10vw 3% 0;
        padding: 0 0 2vw;
        letter-spacing: 0;
        font-size: 4vw;
    }

    .recruit-cont .guideline table {
        letter-spacing: 0;
        margin: 0 3%;
        font-size: 3vw;
    }

    .recruit-cont .guideline tr {
        padding: 4vw 0 4vw;
        border-bottom: 2px solid #f1f1f1;
    }

    .recruit-cont .guideline th {
        width: 24vw;
    }

    .recruit-cont .guideline td {
        line-height: 1.5;
    }

    .recruit-cont .btn-area {
        width: 90%;
        margin: 10% auto 25%;
    }

    .recruit-cont .to-btn {
        position: relative;
        width: 258px;
        height: 10vw;
        line-height: 10vw;
    }

    .recruit-cont .to-btn:nth-child(1) {
        margin-right: 3%;
    }

    .recruit-cont .to-btn a {
        font-size: 3.5vw;
    }

    .recruit-cont .arw-r::after {
        font-size: 2.5vw;
    }

    /* ----------------------------------
	----------------------------------
	Brand-page-SP
	------------------------------------ 
	------------------------------------ */
    .brand-cont .caption {
        margin: 10vw 7% 0;
        line-height: 20px;
        font-size: 3vw;
    }

    .brand-cont .brand-list {
        display: block;
        width: 100%;
    }

    .brand-cont .brand-list .item {
        margin: 10vw auto 0;
        padding: 7vw 6vw;
        width: 85%;
        box-shadow: 2px 2px 14px #efefef;
    }

    .brand-cont .brand-list .btn {
        width: 50vw;
        height: 13vw;
        line-height: 13vw;
        margin: 4vw auto 0;
    }

    .brand-cont .brand-list a {
        font-size: 3.5vw;
    }

    .brand-cont .brand-list .btn::after {
        content: '';
        position: absolute;
        top: 19.5px;
        right: 30px;
        width: 0;
        height: 0;
        border-left: 8px solid #000;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    .recruit-cont .more-view::after {
        content: '';
        position: absolute;
        top: 15px;
        right: 20px;
        width: 0;
        height: 0;
        border-left: 8px solid black;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    .contact {
        padding: 0px !important;
    }

    .contact-cont .seat {
        width: 100%;
        border-radius: 0;
        padding: 25px 15px;
    }

    .contact-cont .contact-section input,
    .consent input {
        margin: 25px 7px 0 0;
        -webkit-appearance: auto;
    }

    .wpcf7-list-item-label {
        font-size: 20px;
    }

    .entck .wpcf7-list-item-label {
        font-size: 16px;
    }

    .entck input {
        padding: 0px 0px;
        margin: 0px 5px;
        height: 23px;
    }

    .wpcf7-list-item {
        margin: 20px 0 !important;
    }

    .entck .wpcf7-list-item {
        margin: 50px 0 !important;
    }

    .contact .more-view::after {
        top: 11px;
    }

    .contact-cont .go-ahead {
        margin: 24px 0;
    }

    .contact-cont .enter-area {
        margin: 0;
    }

    .entry-cont .entry-form {
        padding: 0px;
    }

    .entry-cont .form-seat {
        width: 100%;
        padding: 20px 15px;
        border-radius: 0px;
    }

    .entry-cont .input-s {
        margin-right: 0px !important;
        width: 100%;
    }

    .entsubmit {
        width: 70%;
    }

    .entry-cont .drop {
        width: 100%;
    }

    .entnk {
        width: 92%;
        height: 318px;
    }

    .confirm-cont .seat {
        width: 100%;
        margin: 0 auto;
        padding: 47px 15px;
        border-radius: 0px;
        background-color: #fff;
    }

    .confirm-cont .reply {
        margin: 20px 10px;
    }

    .confirm-cont .to-btn-line {
        margin-right: 20px;
        width: 165px;
        height: 49px;
        line-height: 46px;
        text-align: center;
        border: 2px solid #0a63be;
        border-radius: 50px;
    }

    .confirm-cont .to-btn-bg {
        width: 165px;
        height: 49px;
        line-height: 50px;
        text-align: center;
        border-radius: 50px;
        background-color: #0a63be;
    }

    nav {
        padding: 0;
    }

    nav ul {
        display: block;
    }

    nav li.has-child ul,
    nav li.has-child ul ul {
        position: relative;
        left: 77px;
        top: 13px;
        width: 100%;
        visibility: visible;
        opacity: 1;
        display: none;
        transition: none;
    }

    nav ul ul li.has-child::before {
        transform: rotate(135deg);
        left: 20px;
    }

    nav ul li.has-child.active::before {
        transform: rotate(-45deg);
    }

    #suppliers {
        margin-top: 30px;
    }

    #suppliers p {
        width: 92%;
        margin: 15px auto 0;
        font-size: 12px;
    }

    .clm_cont {
        width: 100%;
        margin: 100px auto;
        display: block;
    }

    .clm_cont .book {
        width: 92%;
        margin: 60px auto;
    }

    .clm_cont p {
        font-weight: 400;
        font-size: 17px;
        line-height: 1.5;
        margin: 15px 0 0 !important;
    }

    .clm_cont h2 {
        margin: 40px 0 0 0 !important;
    }

    .col_sidebar {
        background: #fff;
        margin: 30px auto;
        width: 95%;
    }

    .sidebar {
        background: #fff;
        height: auto;
        width: 90%;
        margin: 30px auto;
    }

    .pdct section {
        width: 100%;
        margin: 50px auto;
        display: block;
    }

    .product_cont {
        width: 90%;
        margin: 0 auto;
    }

    .accordion-001 summary {
        width: 100%;
    }

    .accordion-001[open] p {
        line-height: 2;
    }

    .corp_btn a {
        border: 1px solid #0a63be;
        padding: 10px 20px;
        margin: 0px 20px 10px;
        border-radius: 20px;
        display: inline-block;
    }

}