/*
Theme Name: Lightning Child Sample
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/
/* 

共通

*/
/* margin初期化 */
.m-reset {
    margin: 0 !important;
}
/* flex */
.flex {
    display: flex;
}
/* strong */
strong {
    font-weight: normal;
}
input:focus-visible {
    outline: none;
}

/* ヘッダー */
@media (min-width: 992px) {
    .site-header--layout--nav-float .site-header-container {
        display: block !important;
    }
    .header_scrolled.admin-bar .site-header {
        animation: none !important;
    }
    body:not(.header_scrolled) .global-nav--layout--float-right {
        width: 100%;
        margin: auto;
        transition: width 0.5s ease;
    }
}
.site-header-container {
    position: relative;
}
.site-header-logo {
    display: none;
}
.header-utility__wrap {
    padding: 20px 0;
    width: 100%;
}
.header-utility {
    margin-left: auto;
}
.header-utility__left, .header-utility__center {
    margin-right: 10px;
}
.header-utility__lang {
    padding-left: 0;
    margin: 0;
}
.header-utility__lang li {
    width: 50%;
    text-align: center;
}
.header-utility__lang li:first-child {
    border-right: 1px solid;
}
.s-border {
    border-radius: 0 !important;
    border-right: none !important;
}
.search {
    height: 38px;
    width: 170px !important;
    font-size: 12px !important;
}
.s-button {
    width: 38px;
    position: relative;
    background-color: #150578;

}
.s-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}
i {
    margin-right: 0 !important;
}
.ct-access {
    padding: 7px 45px;
    background: #32add4;
    font-size: 16px;
    color: #fff;
}
.btn-access {
    color: #fff;
}
.header-utility__center {
    width: 100px;
    text-align: center;
}
.header-utility__fontsize {
    height: 100%;
    position: relative;
}
.fs-text {
    position: relative;
    height: 50%;
    display: block;
    background: #999;
}
.fs-text span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: block;
}
.fs-contents {
    height: 50%;
}
.fs {
    width: 50%;
    position: relative;
    cursor: pointer;
}
.fs:first-child {
    background-color: #888;
}
.fs:last-child {
    background-color: #777;
}
.fs span {
    position: absolute;
    top: 50%;
    display: block;
    transform: translateY(-50%);
    width: 100%;
}
.header-utility__contact {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
}
.ct-tel i {
    padding: 8px;
    background: #3437a3;
    color: #fff;
    border-radius: 40%;
    margin-right: 5px !important;
    width: fit-content;
}
.ct-tel span:last-child {
    font-size: 12px;
}
.text-l {
    font-size: 20px;
}
/* グローバルメニュー */
.menu {
	width: 100%;
}
.menu-item {
	width: 25%;
	height: 60px;
}
.global-nav-list li::before {
	height: 70%;
	border-right: 1px solid #999;
	top: 50%;
	transform: translatey(-50%);
	content: '';
	transition: none !important;
	opacity: 1 !important; 
	left: auto !important;
    right: 0 !important;
    will-change: auto !important;
    transform-origin: center !important;
}
.global-nav-list li:last-child::before {
	display: none;
}
.global-nav-list>li:hover:before {
	border-bottom: none;
}
.menu-item strong {
    font-size: 18px !important;
}
/* スクロール挙動 */
.is-hidden {
  transition: transform 0.5s ease;
  transform: translateY(calc(-100% - 21px));
}
body.scrolled #global-nav {
    width: calc(200% / 3);
}
/* body.scrolled .nav.menu {
    position: absolute;
    transition: transform 0.5s ease;
    transform: translateY(-100%);
} */