@charset "UTF-8";
html {
    font-size: 62.5%;/* -> 10px */
}
body {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
}
img {
    max-width: 100%;
}
li {
    list-style: none;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-4 {
    margin-bottom: 4px;
}
.mb-8 {
    margin-bottom: 8px;
}
.fs-2r {
    font-size: 2.4rem !important;
}
.sec-title {
    font-family: 'Catamaran', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.05rem;
    line-height: 1.65;
}
.sec-subtitle {
    font-family: 'Yu Gothic',sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.005rem;
    line-height: 1.76;
    color: #111;
    margin-bottom: 72px;
}
.service-number {
    font-family: 'Catamaran', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6;
    color: #111;
    padding-bottom: 10px;
}
.service-name-en {
    font-family: 'Catamaran', sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.6;
    color: #111;
    padding-bottom: 8px;
}
.service-name-ja {
    font-family: 'YuGothic','Yu Gothic',sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.6;
    color: #111;
    padding-bottom: 40px;
}
.service-text  {
    font-family: 'YuGothic','Yu Gothic',sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.015rem;
    line-height: 1.7;
    color: #111;
}
.serviceTextGroup {
    position: relative;
    width: 455px;
}
/*headerMenu*/
#headerMenu {
    height: 200px;
    position: relative;
}
.headerMenuLanguage {
    position: fixed;
    top: 0px;
    right: 0px;
    font-family: 'catamaran', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.6rem;
    color: #fff;
    background-color: #FF002A;
    padding: 10px 20px 10px 20px;
    opacity: 1;
    transition: .5s;
}
.headerMenuLanguage.hide {
    opacity: 0;
}
.headerUl ul{
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.headerUl li {
    font-family: 'catamaran', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.625;
    color: #111;
    padding-right: 70px;
    transition: 0.3s ease;
    white-space: nowrap;
}
.headerUl li:last-child {
    padding-right: 0px;
}
.headerUl li a:hover {
    color: #f7f7f8;
}
.headerUl ul li a.active {
    color: #FF002A;
}
/* ナビのアニメーション */
.headerNav li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.headerNav li.active a,
.headerNav li a:hover{
	color: #FF002A;
}

.headerNav li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background:#FF002A;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

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

/*文字の水平線*/
.service-name-en {
    display: flex;
    align-items: center;
}
.service-name-en::after {
    content: '';
    border: solid 1px #333;
    position: relative;
    top: 6px;
    margin-left: 18.5px;
    flex-grow: 1;
}
/*more*/
.more {
    font-family: 'catamaran', sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    line-height: 1.5;
    color: #111;
    padding-left: 5px;
}
.arrow {
    width: 220px;
    height: 7px;
    border-bottom: 2px solid #FF002A;
    border-right: 3px solid #FF002A;
    transform: skew(45deg);
}