header{
	background: #FFCF14;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    line-height: 1.5;
}

.header-logo-area{
	position: absolute;
    background: #FFF;
    border: 2px solid #000000;
	border-radius: 0px 60px 60px 0px;
    padding: 20px 60px;
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 1);
    margin: 0;
    left: -10px;
    bottom: -27px;
}

.header-logo{
    height: 40px;
    width: auto;
    display: block;
}

.header-link-list,
.header-link-text-group,
.header-link-button-group{
    display: flex;
	justify-content: flex-end;
    align-items: stretch;
}

.header-link-list{
	gap: 40px;
    margin:0 40px;
}

.header-link-text-group{
	gap: 30px;
}

.header-link-button-group{
	justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.header-link-normal,
.header-link-heading-box{
    display: flex;
    align-items: center;
    font-weight: bold;
}

.header-link-normal:hover{
	opacity: 0.6;
}

.header-link-heading{
	position: relative;
	padding-right: 1.25em;
}

.header-link-heading:after{
	background-image: url(https://www.dos-osaka.co.jp/deviceshutter/img/dev_bshita.svg);
    content: '';
    width: 13px;
    height: 7px;
    position: absolute;
	top: calc((100% - 5px) / 2);
    right: 0;
	background-size: contain;
    background-repeat: no-repeat;
}

.header-dropDown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 1300px;
    background: #757575;
    z-index: -1;
    padding: 50px calc((100% - 1300px) / 2);
    justify-content: space-between;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
}

.is-open .header-dropDown{
	opacity: 1;
    visibility:visible;
}

.header-dropDown-title{
	color: #FFF;
    font-size: 28px;
}

.header-dropDown-link-group{
	display: flex;
    gap: 20px;
}

.header-dropDown-link{
	display: block;
    width: 230px;
    color: #FFF;
    border-bottom: 1px solid;
    font-size: 14px;
    padding-left: 1em;
	position: relative;
    display: flex;
    align-items: center;
}

.header-dropDown-link:before{
	position: absolute;
    content: '';
    width: 100%;
	height:100%;
    background: #FFF;
    opacity: 0.4;
    left: 0;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.header-dropDown-link:hover:before{
    transform: scale(1, 1);
}

.header-dropDown-link:after{
    position: absolute;
    content: '';
    background-image: url(https://www.dos-osaka.co.jp/deviceshutter/img/dev_wyaji.svg);
    width: 12px;
    height: 9px;
    right: 15px;
    top: calc((100% - 9px) / 2);
	background-size: contain;
    background-repeat: no-repeat;
}

.header-link-button{
    background: #000000;
    color: #FFF;
    width: 150px;
    padding: 15px;
    display: block;
    text-align: center;
    border-radius: 28px;
	position: relative;
	border: 2px solid #000;
}

.header-link-button:after{
    position: absolute;
    content: '';
    background-image: url(https://www.dos-osaka.co.jp/deviceshutter/img/dev_wyaji.svg);
    width: 12px;
    height: 9px;
    right: 15px;
    top: calc((100% - 9px) / 2);
	background-size: contain;
    background-repeat: no-repeat;
}

.header-link-button:hover{
	background: #FFF;
	color: #000;
}

.header-link-button:hover:after{
    background-image: url(https://www.dos-osaka.co.jp/deviceshutter/img/dev_byaji.svg);
}

.global-header-navi-sp-btn,
.spmenu-modal-overray,
.modal-close {
	display: none;
}

/*レスポンシブ*/

@media (max-width: 1500px) {


	header	{
		height: 65px;
	}


.header-logo-area{
	bottom: auto;
    top: 20px;
        z-index: 10000;
}

.header-logo-area{
	width: 260px;
}

.header-link-list{
	display:none;
}

    .global-header-navi-sp-btn {
        position: absolute;
        top: 10px;
        right: 20px;
        display: block;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        z-index: 100;
        cursor: pointer;
    }

    .global-header-navi-sp-btn-icon {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 40px;
		height: 4px;
        border-radius: 5px;
        background: #000;
    }

    .global-header-navi-sp-btn-icon:before {
        position: absolute;
        top: -12px;
        left: 0;
        content: "";
        display: block;
        width: 40px;
		height: 4px;
        border-radius: 5px;
        background: #000;
    }

	.global-header-navi-sp-btn-icon:after {
        position: absolute;
        top: 12px;
        left: 0;
        content: "";
        display: block;
        width: 40px;
		height: 4px;
        border-radius: 5px;
        background: #000;
    }

.spmenu-modal-overray{
	position: fixed;
	top: 65px;
        left: 0;
        width: 100%;
        height: calc(100% - 65px);
        background: #757575;
        z-index: 1000;
        overflow-y: auto;
        padding: 0;
}

.spmenu-modal-navi{
    padding: 95px 30px;
}

.spmenu-modal-navi-link,
.spmenu-modal-navi-sub-link-area p{
    display: block;
    color: #FFF;
    border-top: 2px solid;
    padding: 20px;
	position: relative;
}

.spmenu-modal-navi-link:after{
	position: absolute;
	content:'';
	background-image:url(https://www.dos-osaka.co.jp/deviceshutter/img/dev_wyaji.svg);
	width:12px;
	height:9px;
	right: 15px;
	top: 27px;
	background-size: contain;
    background-repeat: no-repeat;
}

.spmenu-modal-navi-link-area .spmenu-modal-navi-link:first-child{
    border-top: none;
}

.spmenu-modal-navi-link-area .spmenu-modal-navi-link:last-child{
    border-bottom: 2px solid;
}

.submenu .spmenu-modal-navi-link:first-child{
    border-top: 2px solid;
}

.submenu .spmenu-modal-navi-link:last-child{
    border-bottom: none;
}

.spmenu-modal-navi-sub-link-area p:after{
	position: absolute;
	content: '';
	color: #FFF;
	line-height: 1;
	width: 0.5em;
	height: 0.5em;
	border: 0.15em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-25%) rotate(135deg);
	right: 15px;
	top: 27px;
}

.spmenu-modal-navi-sub-link-area div{
    padding: 0 20px;
	display:none;
}

.spmenu-modal-navi-cta-area {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spmenu-modal-navi-cta {
    display: block;
    width: 100%;
    background: transparent linear-gradient(180deg, #FFCF14 0%, #FFF31C 100%) 0% 0% no-repeat padding-box;
    border: 2px solid #000000;
    border-radius: 62px;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
	position: relative;
}

.spmenu-modal-navi-cta:after{
        position: absolute;
        content: '';
        background-image: url(https://www.dos-osaka.co.jp/deviceshutter/img/dev_bmaru.svg);
        width: 25px;
        height: 25px;
        right: 30px;
        top: 19px;
        background-size: contain;
}

.sp-navi-checkbox{
    display: none;
}

.header-dropDown-title{
    display: block;
    color: #FFF;
    border-top: 2px solid;
    padding: 20px;
	position: relative;
	font-size: 16px;
}

.header-dropDown-title:after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}

/* checkboxを非表示 */
.sp-navi-checkbox {
    display:*none;
}

/* 初期状態は非表示 */
.submenu {
    display: none;
}

/* labelクリック時に表示 */
.sp-navi-checkbox:checked + .header-dropDown-title + .submenu {
    display: block;
}

    .modal-close {
        position: absolute;
        top: 10px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        z-index: 100;
        cursor: pointer;
        background: #FFCF14;
    }

    .modal-close-icon {
        position: absolute;
        top: 50%;
        left: 0;
        width: 40px;
        height: 4px;
	display: block;
    }

.modal-close-icon:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 40px;
        height: 4px;
        border-radius: 5px;
        background: #000;
        transform: rotate(45deg);
    }

    .modal-close-icon:after {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 40px;
        height: 4px;
        border-radius: 5px;
        background: #000;
        transform: rotate(-45deg);
    }


}



@media (max-width: 1400px) {


}

@media (max-width: 800px) {

.header-logo-area{
	width: auto;
	padding: 15px 40px 15px 30px;
	top: 15px;
}

.header-logo-area div{
	display:block;
}

.header-logo{
	height: 25px;
    vertical-align: middle;
}

.spmenu-modal-navi{
        padding: 60px 30px;
}

}