.tablet, .sp {
	display: none !important;
}
.navigation-bg {
    padding: 0;
    margin: 0;
    height: 98px;
    position: fixed;
    z-index: 600;
    top: 0;
    left: 0;
    width: 100%;
}

.navigation {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0px 4px 16px #0a19400d;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    padding: 8px;
    align-items: center;
    height: 80px;
    left: 16px;
    position: absolute;
    top: 16px;
    width: 98%;
    max-width: 1840px;
    z-index: 1000;
}
.reliefsign-logo {
    height: 54px;
    width: auto;
    margin: 0 12px;

}
.global-menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 2%;
    flex-grow: 1;
    justify-content: center;
}
.global-menu__list > a {
    height: 80px;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.global-menu__list a::after {
    content:"";
    background-color: var(--relief-blue);
    border-radius: 8px;
    margin-top: 4px;
    height: 4px;
    width: 12px;
    opacity: 0;
    transition: opacity .3s ease;
}
.global-menu__list:hover a::after {
    opacity: 1;
}
.global-menu__list .menu__list__title {
    color: var(--charcoal-gray);
    font-family: var(--font-family-zen_kaku_gothic_new);
    font-size: var(--font-size-m);
    font-style: normal;
    font-weight: 500;
}
.global-menu__list.--w-dropdown .dropdown-lists__wrapper {
    display: none;
    background-color: var(--mist-gray);
    border-radius: 0 0 8px 8px;
    width: 100%;
    max-width: 1840px;
    position: absolute;
    top: 77px;
    left: 0;
}
.global-menu__list.--w-dropdown:hover .dropdown-lists__wrapper {
    display: block;
    box-shadow: 0px 4px 16px #0a19400d, inset 0px 4px 16px #0a19400d;
}
.global-menu__list.--w-dropdown .dropdown-lists {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px;
    max-width: 1180px;
    margin: 0 auto;
}
.global-menu__list.--w-dropdown .dropdown-lists a::after {
    display: none;
}

.dropdown-list--category-top a {
    align-items: flex-start;
    background-color: transparent;
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}
.dropdown-list--category-top a .dropdown-list__item {
    align-items: flex-start;
    background-color: transparent;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    position: relative;
}

.dropdown-list--category-top .menu__title {
    background-color: transparent;
    position: relative;
    color: var(--sumi);
    font-family: var(--font-family-zen_kaku_gothic_new);
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.46px;
    line-height: 34.5px;
    text-align: left;
    white-space: nowrap;
    width: fit-content;
}

.dropdown-list {
    display: flex;
    position: relative;
    gap: 32px;
}
.dropdown-list a.submenu {
    align-items: center;
    background-color: transparent;
    border: 1px solid;
    border-color: var(--baby-blue);
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    height: 72px;
    text-align: left;
    width: 100%;
    min-width: 256px;
    transition: all .3s ease;
}
.dropdown-list a.submenu:hover {
    background-color: var(--baby-blue);
}
.dropdown-list a.submenu:hover .icon--arrow-circle svg circle.over {
    animation: circle ease 1s both;
}
.dropdown-list .submenu__wrapper {
    align-items: flex-start;
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 16px;
    position: relative;
    width: 30%;
}
.dropdown-list .submenu__title {
    color: var(--charcoal-gray);
    font-family: var(--font-family-zen_kaku_gothic_new);
    font-size: var(--font-size-m);
    font-style: normal;
    font-weight: 500;
}
.dropdown-list .submenu-child__lists {
    align-items: flex-start;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 16px;
    position: relative;
    text-align: left;
}
.dropdown-list .submenu-child__lists li {
    box-sizing: border-box;
    font-size: var(--font-size-s);
    position: relative;
    padding-left: 24px;
    width: 100%;
}
.dropdown-list .submenu-child__lists li::before {
    content: "";
    display: inline-block;
    height: 6px;
    width: 6px;
    border-radius: 100%;
    background-color: var(--storm-gray);
    margin: 4px;
    position: absolute;
    left: 0;
    top: 5px;
}
.submenu-child__lists li a {
    color:var(--dove-gray);
    transition: color .3s ease;
}
.submenu-child__lists li a:hover {
    color: var(--relief-blue)
}
.inquiry-options {
    display: inline-flex;
    gap: 8px;
    height: 64px;
    align-items: center;
    margin-left: auto;
}
.inquiry-options__item a {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    border-radius: 6px;
    gap: 4px;
    justify-content: center;
    overflow: hidden;
    padding: 21px 8px;
    position: relative;
    width: fit-content;
    transition: all 0.3s ease;
    box-sizing: border-box;
    height: 64px;
    min-width: 200px;
}
.inquiry-options__item a img {
    height: 24px;
    position: relative;
    width: 24px;
}
.inquiry-options__item.tel a img {
    height: 40px;
    position: relative;
    width: 40px;
}
.inquiry-options__item.tel a .number {
    color: var(--relief-blue);
    font-family: var(--font-family-questrial);
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    margin-top: -1.00px;
}
.inquiry-options__item.download a {
    background-color: var(--baby-blue);
    color: var(--relief-blue);
}
.inquiry-options__item.download a:hover {
    background-color: var(--baby-blue-hover);
}
.inquiry-options__item.contact a {
    background-color: var(--relief-blue);
    color: var(--white);
}
.inquiry-options__item.contact a:hover {
    background-color: var(--navy); 
}

.inquiry-options__item a .title {
    position: relative;
    text-align: left;
    white-space: nowrap;
    width: fit-content;
    font-family: var(--font-family-zen_kaku_gothic_new);
    font-size: var(--font-size-m);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.btn-toggle {
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    z-index: 10000;
    position: relative;
    cursor: pointer;
    height: 64px;
    width: 64px;
    display: none;
    transition: all .3s ease;
}
.btn-toggle .navbar-toggler {
    position: relative;
    display: block;
    width: 24px;
    height: 17px;
}
.btn-toggle .navbar-toggler span {
    display: block;
    background-color: var(--relief-blue);
    height: 2px;
    width: 24px;
    margin-bottom: 5px;
    transform: rotate(0);
    left: 0;
    opacity: 1;
}
.btn-toggle .navbar-toggler span:first-child, .navbar-toggler span:nth-child(3) {
    transition: transform .3s ease;
}
.btn-toggle--close {
    background: 0 0;
    position: fixed;
}
.btn-toggle:hover {
    background-color: var(--mist-gray);
}
.btn-toggle.--close .navbar-toggler span:first-child {
    position: absolute;
    top: 7px;
    left: 0;
    transform: rotate(135deg);
    opacity: 1;
}
.btn-toggle.--close .navbar-toggler span:nth-child(2) {
    height: 12px;
    visibility: hidden;
    background-color: transparent;
}
.btn-toggle.--close .navbar-toggler span:nth-child(3) {
    position: absolute;
    top: 7px;
    left: 0;
    transform: rotate(-135deg);
    opacity: 1;
}

.menu__items {
    display: grid;
    gap: 16px;
    justify-content: start;
    justify-items: start;
    text-align: left;
    gap: 32px;
}
.menu__item {
    display: grid;
    gap: 8px;
}
.menu__item ul {
    display: flex;
    gap: 4px;
}
.menu__item h4 a {
    font-size: var(--font-size-l);
    font-weight: bold;
    color: var(--charcoal-gray);
}
.menu__item li a, .policy a {
    font-size: var(--font-size-m);
    font-weight: normal;
    color: var(--dove-gray);
}
.menu__item a:hover, .menu__item li a:hover, .policy a:hover {
    color: var(--relief-blue)
}
.policy {
    border-top: 1px solid var(--baby-blue);
    display: grid;
    gap: 12px;
    padding: 32px 0;
    text-align: left;
}
.copyright {
    font-size: var(--font-size-s);
    color: var(--dove-gray);
    text-align: left;
}

@media screen and (max-width: 1440px) {
    .global-menu, .tablet-navigation .inquiry-options {
        display: none;
    }
    .btn-toggle {
        display: flex;
    }
    .tablet-navigation {
        background-color: var(--white);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 0 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        transition: transform .3s ease;
        z-index: 500;
    }
    .tablet-navigation .tablet-global-menu {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 0 32px 32px;
        box-sizing: border-box;
        width: 100%;
        height: 90vh;
        overflow-y: scroll;
    }
    .tablet-navigation .tablet-global-menu .dropdown-lists {
        display: flex;
        border-bottom: 1px solid var(--baby-blue);
        padding: 32px 0;
        align-items: flex-start;
        justify-content: space-between;
        gap: 32px;
    }
    .tablet-navigation .dropdown-list--category-top a {
        width: 100%;
    }
    .dropdown-list {
        width: 25%;
    }
    .dropdown-list .submenu__wrapper {
        width: calc(33.333% - 32px);
        flex-grow: 1;
        box-sizing: border-box;
    }
    .dropdown-list a.submenu {
        min-width: 200px;
    }
}
/* @media screen and (max-width: 1180px) {
    .tablet {
        display: block !important;
    }
    .tablet-navigation .tablet-global-menu .dropdown-lists.no-submenu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 32px;
    }
    .tablet-navigation .tablet-global-menu .dropdown-lists.no-submenu li {
        width: 25%;
    }
} */
@media screen and (max-width: 1200px) {
    .pc-visible {
        display: none !important;
    }
    .navigation {
        justify-content: space-between;
        width: calc(100% - 32px);
    }
    .tablet-navigation .inquiry-options {
        box-sizing: border-box;
        display: flex;
        background-color: var(--mist-gray);
        border-radius: 8px;
        flex-wrap: wrap;
        justify-content: space-between;
        height: fit-content;
        margin: 24px auto;
        padding: 12px;
        width: calc(100% - 32px);
    }
    .tablet-navigation .inquiry-options .inquiry-options__item {
        width: 49%;
    }
    .tablet-navigation .inquiry-options .inquiry-options__item a {
        width: 100%;
    }
    .inquiry-options__item.tel:hover a {
        background-color: var(--white);
    }
    .inquiry-options__item.tel a .number {
        font-size: var(--font-size-xxl);
    }
    .tablet-navigation .inquiry-options .inquiry-options__item.tel {
        width: 100%;
    }
    .tablet-navigation .tablet-global-menu .dropdown-lists {
        flex-wrap: wrap;
        gap: 32px;
    }
    .dropdown-list {
        flex-wrap: wrap;
        width: 47%;
    }
    .tablet-navigation .dropdown-list.dropdown-list--category-top {
        width: 100%;
    }
    .dropdown-list .submenu__wrapper {
        width: 46%;
    }
    .dropdown-list a.submenu {
        max-width: 100%;
    }
    .tablet-navigation .tablet-global-menu .dropdown-lists.no-submenu {
        justify-content: space-between;
    }
    .tablet-navigation .tablet-global-menu .dropdown-lists.no-submenu li {
        width: 47%;
    }

}
@media screen and (max-width: 640px) {
    .tablet-navigation .tablet-global-menu .dropdown-lists {
        flex-direction: column;
    }
    .dropdown-list {
        gap: 16px;
        flex-direction: column;
        width: 100%;
    }
    .tablet-navigation .inquiry-options .inquiry-options__item, .dropdown-list a.submenu, .dropdown-list .submenu__wrapper, .dropdown-list a.submenu, .dropdown-list .submenu__wrapper:last-child, .tablet-navigation .tablet-global-menu .dropdown-lists.no-submenu li {
        width: 100%;
        max-width: 100%;
    }
    .dropdown-list--category-top {
        width: 100%;
    }
    .dropdown-list--category-top a {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    .tablet-navigation .tablet-global-menu .dropdown-lists:first-child {
        gap: 16px
    }
}

.invisible {
    display: none;
}
.visible {
    transition: transform .3s ease;
    transform: translateY(-100vh);
}
.fade-in {
    animation: fadeIn ease .3s;
    animation-fill-mode:forwards;
}
.fade-out {
    animation: fadeOut ease .3s;
    animation-fill-mode:forwards;
}
@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-1000px);
    }
    from {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
}

a .link--detail {
    position: relative;
}
a .link--detail::after {
    content: "";
    display: block;
    background-color: var(--relief-blue);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: top left;
    transition: all .3s ease;
}
a:hover .link--detail::after {
    transform: scaleX(1);
}
a .link--detail {
    align-items: center;
    display: inline-flex;
    flex-direction: row;
    flex: 0 0 auto;
    gap: 8px;
    position: relative;
}

a .link--detail .title {
    background-color: transparent;
    position: relative;
    color: var(--relief-blue);
    font-family: var(--font-family-zen_kaku_gothic_new);
    font-size: var(--font-size-m);
    font-style: normal;
    font-weight: 500;
    line-height: 28.8px;
    text-align: left;
    white-space: nowrap;
    width: fit-content;
}
a .link--detail .icon--arrow {
    background-color: transparent;
    position: relative;
    height: 16px;
    width: 16px;
}


/* -------------------------------------------------------------------- 
 footer
-------------------------------------------------------------------- */

.footerWrap {
	padding: 50px 24px;
	background: var(--mist-gray);
	color: var(--charcoal-gray);
}

.footerWrap a {
	color: var(--dove-gray);
}

.footerWrap a:link {
	color: var(--dove-gray);
	text-decoration: none;
}

.footerWrap a:visited {
	color: var(--dove-gray);
	text-decoration: none;
}

.footerWrap a:hover {
	color: var(--relief-blue);
	opacity: .75;
}

.footerWrap a:active {
	color: var(--dove-gray);
	text-decoration: none;
}

.footerWrap .contIn {
    max-width: 1200px;
    margin: auto;
}

.footerBlock01 {
	display: block;
}

.footerIn01 {
    border-bottom: 1px solid var(--baby-blue);
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    justify-content: space-between;
	margin-bottom: 40px;
    padding: 0 0 40px;
}

.footerIn01 .footerLogo01 {
	display: inline-block;
	width: initial;
}

.footerIn01 .footerTxt01 {
	display: inline-block;
	width: initial;
	font-size: 16px;
    color: var(--dove-gray)
}

.footerIn01 img {
	width: 243px;
	height: auto;
}

.footerIn02 {
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.footerNaviCol01 {
	margin: 0;
	padding-top: 10px;
	width: 23%;
}

.footerNaviCol01.col01 {
	width: 236px;
}

.footerNaviCol01.col02 {
	width: 352px;
}

.footerNaviCol01.col03 {
	width: 181px;
}

.footerNaviCol01.col03 .footerIn02Cell {
    margin-bottom: 32px;
}

.footerNaviCol01.col04 {
	width: 181px;
}

.footerIn02Cell {
	box-sizing: border-box;
	text-align: left;
	white-space: nowrap;
	margin: 0 0 20px;
}

.footerLink01 {
	position: relative;
}

.footerIn02Cell .footerLink01 p {
    color: var(--relief-blue);
    font-size: 16px;
	line-height: 1.0em;
	font-weight: bold;
	display: block;
	margin: 10px 0 10px;
}

.footerIn02Cell .footerLink01>a {
	font-size: 16px;
	line-height: 1.0em;
	font-weight: bold;
	display: block;
	margin: 10px 0 10px;
}

.footerIn02Cell ul {
	margin: 0 0 15px;
	list-style: inside;
}

.footerIn02Cell li {
	font-size: 14px;
	line-height: 2.0em;
	list-style: none;
}

.footerCopyWrap {
	padding: 40px 0px 0px 0px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--baby-blue);
}

.footerCopyWrap .footer-policy {
    display: flex;
    gap: 16px;
}

.footerCopy01 {
	font-size: 14px;
	line-height: 1.2em;
}


/*@media screen and (max-width:768px) {*/
@media screen and (max-width:768px) {


	/*-----*/
	.footerWrap {
		padding: 30px 16px;
		margin-top: 30px;
	}

	.footerBlock01 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.footerIn01 {
		display: block;
		box-sizing: border-box;
		width: auto;
		text-align: center;
		margin-bottom: 30px;
	}

	.footerIn01 .footerLogo01 {
		padding-right: 0;
		margin-bottom: 10px;
		display: block;
	}

	.footerIn01 .footerTxt01 {
		padding-right: 0;
		display: block;
	}

	.footerIn01 img {
		width: 224px;
		height: auto;
	}

	.footerIn02 {
		display: block;
		box-sizing: border-box;
		width: auto;
		padding: 0px 15px 0px;
	}

	.footerNaviCol01 {
		display: block;
	}

	.footerNaviCol01.col01 {
		width: 100%;
	}

	.footerNaviCol01.col02 {
		width: 100%;
	}

	.footerNaviCol01.col03 {
		width: 100%;
	}

	.footerNaviCol01.col04 {
		width: 100%;
	}

	.footerIn02Cell {
		box-sizing: border-box;
		/*width: 40%;*/
		padding-right: 0px;
		text-align: left;
		white-space: normal;
	}

	.footerIn02Cell:nth-child(1) {
		width: auto;
	}

	.footerIn02Cell:nth-child(2) {
		width: auto;
	}

	.footerIn02Cell:nth-child(3) {
		width: auto;
		padding-right: 0px;
	}
    .footerIn02Cell .footerLink01 p {
		font-size: 14px;
        font-weight: bold;
	}
	.footerIn02Cell p {
		font-size: 14px;
		line-height: 1.8em;
	}

	.footerIn02Cell ul {
		margin-bottom: 20px;
	}

	.footerIn02Cell li {
		font-size: 14px;
		line-height: 2.0em;
		display: block;
	}

	.footerCopyWrap {
		padding: 30px 16px 0px;
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
        gap: 64px;
	}

    .footerCopyWrap .footer-policy {
        flex-direction: column;
    }

	.footerCopy01 {
		font-size: 12px;
		line-height: 1.2em;
	}

	/*-----*/
}

