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

/* =======================================================
* common
* ======================================================= */
body {
    color: #444;
    letter-spacing: 0.05em; /* 5% */
    /*line-height: 200%;*/
}

h2, h3, h4, h5 {
    border: none;
    padding: 0;
    margin: 0;
}

h3::after {
    border: none;
}

p {
    line-height: 200%;
    padding: 0;
    margin: 0;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0 !important;
}

a:hover {
    color: inherit;
    opacity: 0.7;
    transition: 0.3s;
}

li a, p a {
    text-decoration: none;
}

img {
    vertical-align: bottom;
}

:where(figure),
:where(.wp-block-columns) {
    margin: 0;
}

.flex-block {
    display: flex;
}

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

.flex-end {
    display: flex;
    justify-content: flex-end;
}


.sp-br { /* SP改行 */
    display: none;
}

.pc-br { /* PC改行 */
    display: block;
}

.btn-blk a {
    background: #191919;
    color: #FFF;
}

/*.btn-blk a span::before {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    background-color: #ead900;
    transition: transform 0.6s ease;
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
}

.btn-blk a span:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}*/




.btn-wht a {
    background: #FFF;
    color: #191919;
}

.btn-s a { /* 14px */
    display: block;
    width: 151px;
    height: 44px;
    align-items: center;
    border-radius: 100px;
    font-family: 'Inter';
    font-size: clamp(12px, 0.972vw, 14px);
    font-weight: 500;
    line-height: 1;
    padding: 12px 0 12px 30px;
}

.btn-m a { /* 36px */
    display: block;
    width: 286px;
    height: 83px;
    align-items: center;
    border-radius: 100px;
    font-family: 'Inter';
    font-size: clamp(18px, 2.5vw, 36px);
    font-weight: 500;
    
    line-height: 1;
    padding: 24px 32px 24px 60px;
}

.c-btn.btn-m span {
    align-items: center;
    border-radius: 100px;
    font-family: 'Inter';
    font-size: clamp(18px, 2.5vw, 36px);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
    padding: 0;
}
.c-btn.btn-m .c-btn__link {
    width: 286px;
    height: 83px;
    /*padding: 24px 32px 24px 60px;*/
    padding: 0;
}

.btn-s span {
    position: relative;
    bottom: 3px;
}

.btn-s img,
.btn-m img {
    position: relative;
    top: 0;
    transition: all .3s ease;
    margin-left: 8px;
}

.btn-m img {
    margin-left: 16px;
}

.btn-s:hover img {
    display: inline-block;
    content: url("/wp-content/uploads/2024/12/icon-arrow-right-black.svg");
    margin-left: 14px;
}

.btn-m:hover img {
    margin-left: 24px;
}

/* 色反転 左→右アニメーション */
input, button, textarea, select {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    font-family: 'Inter';
    font-weight: 500;
    text-indent: 0.01px;
    text-overflow: '';
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.c-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: inline-block;
    box-sizing: border-box;
    margin-left: 168px;
}

.c-btn:hover {
    opacity: unset;
    transition: unset;
}

.c-btn__link:hover {
    background: #E6E6E6;
    color: #191919;
}

.c-btn--wht__link:hover { /* buttonのclassに対してのhoverじゃないと効かない */
    background: #000;
    color: #FFF;
}

.c-btn__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 151px;
    height: 44px;
    border-radius: 100px;
    text-decoration: none;
}

.c-btn--blue .c-btn__link {
    background: #191919;
}

.c-btn--wht .c-btn__link {
    background: #FFF;
}

.c-btn__link::before {
    position: absolute;
    top: 50%;
    right: 11px;
    z-index: 2;
    display: block;
    width: 151px;
    height: 44px;
    background: url(/wp-content/uploads/2024/12/icon-arrow-right.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 15px;
    transition: all .3s ease;
}

.c-btn--wht .c-btn__link::before {
    background: url(/wp-content/uploads/2024/12/icon-arrow-right-black.svg) 0 0 no-repeat;
    background-size: 100% auto;
}

.c-btn__link::before {
    right: 8px;
    width: 20px;
    height: 20px;
}

.c-btn--icon .c-btn__link:hover::before {
    background-image: url(/wp-content/uploads/2024/12/icon-arrow-right-black.svg);
    margin-right: 9px;
}

.global-nav-contact--btn .c-btn__link:hover::before {
    background-image: url(/wp-content/uploads/2024/12/icon-arrow-right.svg);
}

.c-btn--wht.c-btn--icon .c-btn__link:hover::before {
    background-image: url(/wp-content/uploads/2024/12/icon-arrow-right.svg);
}

.c-btn__link-item {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    height: 100%;
    color: #FFF;
    font-weight: 500;
    font-size: clamp(12px, 0.972vw, 14px);
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-right: 20px;
}

.c-btn--wht .c-btn__link-item {
    color: #191919;
}

.c-btn--low2 .c-btn__link-item {
    min-width: 0;
    width: 100%;
}

.c-btn--blue .c-btn__link:hover .c-btn__link-item {
    color: #000;
}

.c-btn--wht .c-btn__link:hover .c-btn__link-item {
    color: #FFF;
}

.c-btn--blue .c-btn__link::after,
.c-btn--wht .c-btn__link::after {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    display: block;
    width: 0;
    height: 100%;
    content: "";
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
    pointer-events: none;
}

.c-btn--blue .c-btn__link::after {
    background-color: #E6E6E6;
}

.c-btn--wht .c-btn__link::after {
    background-color: #000;
}

.c-btn__link:hover::after {
    left: 0;
    width: 100%;
}

/* ボタン大 */
.c-btn.btn-m {
    padding: 0;
    margin: 0;
}

.c-btn.btn-m .c-btn__link::before {
    width: 24px;
    height: 24px;
    right: 20px;
    background: url(/wp-content/uploads/2025/03/icon-arrow-diagonal-lg.svg) 0 0 no-repeat;
}

.c-btn.btn-m .c-btn__link:hover::before {
    background-image: url(/wp-content/uploads/2025/03/icon-arrow-diagonal-lg-blu.svg);
}

.post-name-contact .c-btn.btn-m .c-btn__link::before {
    width: 29px;
    height: 32px;
    right: 26px;
    background: url(/wp-content/uploads/2025/01/icon-arrow-right-black-m.svg) 0 0 no-repeat;
}

.post-name-contact .c-btn.btn-m .c-btn__link:hover::before {
    background-image: url(/wp-content/uploads/2025/03/icon-arrow-right-wht-m.svg);
}

/* ここまで */









.container,
.container-lg,
.container-md,
.container-sm,.container-xl {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.site-body {
    padding: 0;
    /*margin: 0 !important;*/
}

#page_top {
    display: none;
}

/* アニメーション */
/* 0.5秒間かけてフェードイン */
.fadeIn500ms {
    animation-name: fadeIn500ms;
    animation-delay: 500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn500ms {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 0.7秒間かけてフェードイン */
.fadeIn700ms {
    animation-name: fadeIn700ms;
    animation-delay: 700ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn700ms {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 0.9秒間かけてフェードイン */
.fadeIn900ms {
    animation-name: fadeIn900ms;
    animation-delay: 900ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn900ms {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 1.1秒間かけてフェードイン */
.fadeIn1100ms {
    animation-name: fadeIn1100ms;
    animation-delay: 1100ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}
@keyframes fadeIn1100ms {
    0% {
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}




/* header */
.site-header {
    width: 100%;
    max-width: 1440px;
    background: none !important;
    /*mix-blend-mode: difference;*/ /* ブレンドモード用css */
    box-shadow: none;
	position: fixed;
    left: 0;
    right: 0;
    padding: 0 36px;
    margin: 0 auto;
}

.header_scrolled .site-header {
	top: unset;
	left: unset;
	width: 100%;
	max-width: unset;
	min-height: unset;
	box-shadow: unset;
	animation: unset;
    }

.header_scrolled.admin-bar .site-header {
    max-width: 1440px;
	animation: unset;
    left: 0;
    right: 0;
}


#site-header-container {
	max-width: 1368px;
    display: flex;
    justify-content: space-between;
    padding: 24px 0 36px;
    margin: 0 auto;
}

.fixed-mix-blend-mode {
    display: flex;
    justify-content: space-between;
    flex: 2;
}


.header_scrolled .header-top,
.header_scrolled .site-header-logo,
.header_scrolled .site-header-sub,
.header_scrolled .vk-campaign-text {
	display: block;
}

.site-header-logo {
    padding: 0;
    margin: 0;
}

.site-header-logo img {
    max-width: 330px;
    width: 330px;
}

.global-nav-list {
    display: grid;
    row-gap: 14px;
}

.global-nav-list > li > a {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 15px;
    text-align: left !important;
    letter-spacing: 0.15em;
    line-height: 1;
    padding: 0 !important;
}

.global-nav-list > li .global-nav-name {
    /*color: #FFF;*/ /* ブレンドモード用css */
    color: #0E0E0E;
    font-weight: 700;
    transition: 0.3s;
}

.global-nav-list > li,
.global-nav-list > li .global-nav-name:hover {
    /*color: #0e0e0e;*/ /* ブレンドモード用css */
    color: #E5E5E5;
}

.global-nav-list li a:hover {
    /*color: #0e0e0e;*/ /* ブレンドモード用css */
    color: #E5E5E5;
    opacity: 1;
}

.global-nav-list > li::before {
    display: none;
}

#menu-item-49 .global-nav-name {
    color: #0066FF;
}

#menu-item-49 .global-nav-name:hover {
    color: #E5E5E5;
}

#menu-item-49 .global-nav-name::after {
    display: inline-block;
    /*width: 14px;
    height: 14px; header構造変更前サイズ */
    width: 11px;
    height: 11px;
	background: url(/wp-content/uploads/2025/07/icon-arrow-right-blue.svg) no-repeat;
	background-size: contain;
    content: "";
    position: relative;
    top: 1px;
    transition: .4s;
}

#menu-item-49 .global-nav-name:hover::after {
    background: url(/wp-content/uploads/2025/04/icon-arrow-diagonal-gray-1.svg) no-repeat;
    background-size: contain;
}


.global-nav-contact a {
    display: block;
    /*background: #1e73be;*/ /* ブレンドモード用css */
    background: #D67C1D;
    border-radius: 3px;
    /*color: #000;*/ /* ブレンドモード用css */
    color: #0066FF;
    font-family: 'Inter';
    font-weight: 700;
    padding: 18px 30px;
    margin-left: 48px;
}

/* header 色反転 左→右アニメーション */
.global-nav-contact--btn {
    margin: 0;
}

.global-nav-contact--btn .c-btn__link:hover {
    background: #D67C1D;
    color: #FFF;
}


.global-nav-contact--btn button {
    display: block;
    width: 161px;
    height: 60px;
    background: #FFF !important;
    border: 1px solid #0066FF;
    border-radius: 3px;
    color: #0066FF;
    font-family: 'Inter';
    font-weight: 700;
    padding: 18px 30px;
    margin-left: 48px;
}




.global-nav-contact--btn button::before {
    background: url(/wp-content/uploads/2025/07/hreader-icon-arrow-righ_blue.svg) 0 0 no-repeat;
}

.global-nav-contact--btn button::after {
    background-color: #0066FF !important;
}

.global-nav-contact--btn button .c-btn__link-item {
    color: #0066FF;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding-right: 20px;
    margin: 0;
}

.global-nav-contact--btn .c-btn__link:hover {
    border: 1px solid #0066FF;
}

.global-nav-contact--btn .c-btn__link:hover .c-btn__link-item {
    /*color: #0066FF;*/
    color: #FFF;
}

/* end header 色反転 左→右アニメーション */

/* header構造変更後CSS */
body:not(.header_scrolled) .global-nav--layout--float-right,
.header_scrolled .site-header .global-nav {
    display: flex;
    align-items: flex-start;
    gap: 36px;
}

.header_scrolled .global-nav-list {
    height: auto;
}
/* end header構造変更後CSS */

@media screen and (max-width: 782px) {
    .admin-bar .vk-mobile-nav-menu-btn {
        /*top: calc(54px + 0px);*/
        top: calc(11px + 0px);
    }
}

@media screen and (max-width: 991px) {
    .header_scrolled.admin-bar .site-header {
        top: 0;
    }

    .site-header {
        position: fixed;
        padding: 0 12px;
        z-index: 2001;
    }

    #site-header-container {
        padding: 18px 0;
    }

    .site-header-logo img {
        max-width: 180px;
        margin: 0;
    }

    #global-nav,
    .site-header-container .global-nav-contact {
        display: none;
    }

    .under-header {
        height: 362px;
        padding: 102px 24px;
        margin-top: 120px !important;
    }

}

.widget_search {
    display: none;
}

.vk-mobile-nav {
    padding: 0 12px;
}

.admin-bar .vk-mobile-nav.vk-mobile-nav-open.vk-mobile-nav-drop-in,
.admin-bar .vk-mobile-nav.vk-mobile-nav-open.vk-mobile-nav-left-in,
.admin-bar .vk-mobile-nav.vk-mobile-nav-open.vk-mobile-nav-right-in {
    top: 0;
}

.vk-mobile-nav-menu-btn,
.vk-mobile-nav-menu-btn.menu-open {
    border: none;
    /*mix-blend-mode: difference;*/
}

.vk-mobile-nav-menu-btn {
    background: url(/wp-content/uploads/2025/07/mobile-nav-open_blue.svg) center 50% no-repeat rgba(255, 255, 255, 0);
    top: 9px;
}

.vk-mobile-nav-menu-btn.menu-open {
    background: url(/wp-content/uploads/2025/07/mobile-nav-close_blue.svg) center 50% no-repeat rgba(255, 255, 255, 0);
}

.vk-mobile-nav {
    overflow: unset;
}

.mobile-nav {
    padding: 86px 0 114px;
}

.mobile-nav ul {
    padding: 0;
}

.mobile-nav li {
    font-family: 'Inter';
    font-weight: 700;
    padding: 14px 0;
}

.mobile-nav li a {
    color: #191919;
    letter-spacing: 0.05em;
}

.mobile-nav li:nth-of-type(4) a::after {
    display: inline-block;
    width: 30px;
    height: 24px;
    background: url(/wp-content/uploads/2025/01/icon-arrow-diagonal-black.svg) no-repeat;
    background-size: contain;
    background-position: 6px -2px;
    content: "";
}

.mobile-nav ul ul {
    padding: 10px 0 36px;
}

.mobile-nav ul ul li {
    padding: 12px 0;
}

.mobile-nav-f-lg {
    font-size: 40px;
}

.mobile-nav-f-sm {
    font-size: 16px;
}

.mobile-nav .global-nav-contact a {
    background: #FFF;
    border: 1px solid #0066FF;
    color: #0066FF;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0.15em;
    line-height: 1;
    padding: 21px 0;
    margin: 0;
}

.mobile-nav .global-nav-contact a img {
    width: 25px;
    margin-left: 5px;
}

/* footer */
footer {
    background: #191919;
    padding: 48px 0 22px;
}

nav {
    display: none;
}

.site-footer {
    border: none;
}

.site-footer-content {
    max-width: 1440px;
    padding: 0 40px;
    margin: 0 auto;
}

.site-footer-content .row {
    justify-content: space-between;
}

.site-footer-content .row .col-lg-4 {
    padding: 0;
}

.site-footer-content .row .col-lg-4:nth-of-type(2) {
    width: auto;
    max-width: 100%;
    flex: unset;
}

.site-footer-content .row .col-lg-4:last-of-type {
    display: none;
}

.footer-nav {
    font-family: "Inter";
    font-size: clamp(12px, 1.388vw, 20px);
    padding: 0;
}

.footer-nav.flex-block {
    padding-bottom: 166px;
}

.footer-nav-inner:last-of-type a {
    font-size: 12px;
    margin-bottom: 18px;
}

.footer-nav-inner:nth-of-type(2) a:nth-of-type(2)::after {
    content: url(/wp-content/uploads/2024/12/icon-arrow-diagonal.svg);
    position: relative;
    top: 2px;
    padding-left: 6px;
}

.footer-nav a {
    display: block;
    color: #FFF;
    margin: 0 0 36px 60px;
}

.footer-nav a p {
    font-family: "Noto Sans JP";
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
}

.site-footer-copyright {
    color: #FFF;
    font-size: clamp(10px, 0.833vw, 12px);
    text-align: center;
    line-height: 1;
}

/* =======================================================
* top
* ======================================================= */
.kv-catchcopy {
    width: 100%;
    max-width: 1392px;
    color: #111;
    /*padding-top: 209px;
    margin: 0 auto;*/
    margin: 209px auto 0;
}

.kv-catchcopy .sp-none,
.kv-catchcopy .pc-none {
    font-size: clamp(34px, 4.444vw, 64px);
    font-weight: 700;
    position: relative;
}

.kv-catchcopy .sp-none {
    left: -35px;
    line-height: 0.8;
}

.kv-catchcopy .pc-none:nth-of-type(2) {
    left: -18px;
    line-height: 180%;
}

.kv-catchcopy .pc-none:nth-of-type(3) {
    left: 0;
    line-height: 1;
}

.kv-catchcopy p:last-of-type {
    font-family: 'Inter';
    font-size: clamp(10px, 1.111vw, 16px);
    font-weight: 700;
    line-height: 1;
    padding: 34px 0 30px;
}

.kv-catchcopy .pc-none {
    display: none;
}

@media screen and (max-width: 1392px) {
    .kv-catchcopy {
        margin: 187px 12px 0;
    }

    .kv-catchcopy .sp-none {
        display: none;
    }

    .kv-catchcopy .pc-none {
        display: block;
    }

    .kv-catchcopy p:last-of-type {
        padding: 19px 0 16px;
    }
}

.kv-image {
    width: 1392px;
    max-width: 100%;
    text-align: center;
    padding-bottom: 41px;
    margin: 0 auto;
}

.top-company,
.top-service .top-container,
.top-news,
.single-post .site-body-container {
    max-width: 1440px;
    margin: 0 auto;
}

.top-container {
    padding: 0 48px;
}

.header-type-r {
    background: url(/wp-content/uploads/2024/12/icon-R-white.svg) no-repeat;
    background-size: contain;
    padding: 90px 0 108px;
}

.header-type-r h2 {
    color: #111;
    font-family: 'Inter';
    font-weight: 700;
}

.header-type-r h2 p {
    font-size: clamp(55px, 9.027vw, 130px);
    letter-spacing: 0.05em;
    line-height: 0.75;
    padding-left: 4px;
}

.header-type-r h2 span {
    font-size: clamp(10px, 1.388vw, 20px);
    font-weight: 500;
    line-height: 1;
    padding-left: 6px;
}

.header-type-r h2 + p,
.header-type-under h2 + p {
    color: #111;
    font-size: clamp(10px, 1.388vw, 20px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0 !important;
}

.header-type-r h2 + p {
padding: 24px 0 0 10px;
}

.header-type-under h2 + p {
    padding: 24px 0 0 0;
}

.top-inner {
    position: relative;
    top: -68px;
}

.header-type h3 {
    color: #111;
    font-size: clamp(20px, 3.055vw, 44px);
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 96px;
    margin-left: 72px;
}

.header-type h3::before {
    width: 72px;
    height: 2px;
    background: #111;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
}

.header-type p {
    font-size: clamp(12px, 1.25vw, 18px);
    font-weight: 500;
    padding: 36px 0 38px 168px;
}

.top-inner .btn-s {
    padding-left: 168px;
}

.top-inner-img {
    padding-top: 60px;
}

.top-service-head {
    width: 60%;
    height: 80px;
    background: #191919;
    position: relative;
}

.top-service-head img {
    position: absolute;
    bottom: 0;
    left: 50%;
}

.top-service {
    background: #191919;
}

.top-service,
.top-service .header-type-r h2,
.top-service .header-type-r h2 + p,
.top-service .header-type h3 {
    color: #FFF;
}

.top-service .header-type h3::before {
    background: #FFF;
}

.top-service .header-type-r {
    background: url(/wp-content/uploads/2024/12/icon-R-gray.svg) no-repeat;
}

.header-type-under h2 p {
    color: #111;
    font-family: 'Inter';
    font-size: clamp(40px, 5.555vw, 80px);
    font-weight: 700;
    line-height: 0.75;
    padding: 0 12px 0 4px;
}

.company-container .header-type-under h2 p {
    font-size: clamp(55px, 5.555vw, 80px);
}

.top-news {
    padding: 105px 48px 120px;
}

.top-news .btn-s{
    padding-top: 48px;
}

.top-news .c-btn {
    padding: 48px 0 0;
    margin: 0;
}

.top-news .wp-block-column:first-of-type {
    flex-basis: 528px !important;
}

.top-news .wp-block-column:last-of-type {
    flex-basis: 816px !important;
    margin-right: 24px;
}

.top-news-list {
    padding: 32px 0;
    /* 線の長さ2pxの線を背景画像とする */
    background-image: linear-gradient(to right, #8E8E8E 5px, transparent 5px);
    /* 背景画像の大きさを設定 */
    background-size: 8px 1px;
    /* 背景の開始位置を指定 */
    background-position: left bottom;
    /* 横方向に繰り返す */
    background-repeat: repeat-x;
}

.top-news-list:first-of-type {
    /* 線の長さ2pxの線を背景画像とする */
    background-image:
    linear-gradient(to right, #8E8E8E 5px, transparent 5px),
    linear-gradient(to left, #8E8E8E 5px, transparent 5px);
    /* 背景画像の大きさを設定 */
    background-size:
    8px 1px,
    8px 1px;
    /* 背景の開始位置を指定 */
    background-position:
    left top,
    right bottom;
    /* 横方向に繰り返す */
    background-repeat:
    repeat-x,
    repeat-x;
}

.top-news-list .flex-block {
    width: 100%;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.postlist_time,
.entry-meta-item-date {
    font-size: clamp(12px, 0.972vw, 14px);
    font-weight: 600;
}

.postlist_cat,
.post-categories a {
    display: inline-block;
    background: #0066FF;
    color: #FFF;
    font-size: clamp(10px, 0.833vw, 12px);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    padding: 8px 21px;
    margin: 0 15px 0 17px;
}

.top-news-list h3 {
    font-size: clamp(12px, 1.111vw, 16px);
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-news .postlist_ul + .btn-s,
.top-news .postlist_ul + .c-btn  {
    display: none;
}

.top-news-list a:hover {
    color: #E5E5E5;
    opacity: 1;
}

/* =======================================================
* under
* ======================================================= */
#breadcrumb {
    display: none;
}

.main-section--col--two {
    width: 100%;
}

.sub-section--col--two {
    display: none;
}

.under-header {
    height: 441px;
    padding: 98px 73px;
    margin-top: 232px;
}

.under-header .header-type-r {
    background: url(/wp-content/uploads/2025/01/icon-R-opacity.svg) no-repeat;
    padding: 90px 0 108px;
}

.under-header .header-type-r h2 p {
    color: #FFF;
    font-family: 'Inter';
    font-size: clamp(50px, 6.944vw, 100px);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
}

.under-header .header-type-r p {
    color: #FFF;
    font-size: clamp(12px, 1.111vw, 16px);
    font-weight: 700;
}

.under-header-inner {
    display: flex;
    justify-content: flex-end;
    position: relative;
    top: -62px;
    right: 72px;
    padding-left: 72px;
}

.under-header-inner p {
    width: 100%;
    max-width: 912px;
    background: #191919;
    color: #FFF;
    font-size: clamp(11px, 1.111vw, 16px);
    padding: 62px 96px;
    margin-left: 66px;
}

.under-container { /* ネガティブマージン */
    margin-top: -62px;
}

/* =======================================================
* page-company
* ======================================================= */
.post-name-company .under-header {
    background: url(/wp-content/uploads/2025/01/under-company.png) no-repeat;
    background-size: cover;
}

.company-container .top-inner {
    width: 100%;
    max-width: 1368px;
    position: unset;
    padding: 0 12px;
    margin: 0 auto;
}

.company-container .company-message,
.company-container .company-office {
    padding: 100px 12px 150px;
}

.company-container .company-profile {
    padding-top: 150px;
}

.post-name-company .header-type-under h2 + p {
    padding-top: 18px;
}

.company-inner {
    max-width: 768px;
    position: relative;
}

.company-inner-title {
    color: #191919;
    font-size: clamp(18px, 2.5vw, 36px);
    font-weight: 700;
    padding-bottom: 60px;
}

.company-inner-img {
    text-align: right;
    padding-top: 60px;
}

.company-inner-inner {
    padding: 67px 0 0 264px;
}

.company-inner-inner .company-inner-title {
    display: flex;
    align-items: center;
    color: #111;
    font-size: clamp(20px, 2.083vw, 30px);
    padding-bottom: 40px;
}

.company-inner-inner .company-inner-img {
    padding: 0;
}

.layer-inner-box {
    position: relative;
}

.company-container .layer-container .layer-inner-box .flex-between {
    width: 100%;
    max-width: 1291px;
    gap: 56px;
    margin: 0 !important;
}

.box-circle {
    width: 100%;
    max-width: 282px;
    height: 282px;
    background: #191919;
    border: 1px solid #FFF;
    border-radius: 50%;
    text-align: center;
    z-index: 1;
}

.box-circle:first-of-type img {
    padding-top: 48px;
}

.box-circle:nth-of-type(2) img {
    padding-top: 44px;
}

.box-circle:nth-of-type(3) img {
    padding-top: 38px;
}

.box-circle:last-of-type img {
    padding-top: 54px;
}

.layer-inner .box-circle p {
    font-size: clamp(12px, 0.972vw, 14px);
    letter-spacing: 0.15em;
    line-height: 150%;
    padding-top: 24px;
}

/*.line-box {
    width: 1291px;
    border-top: 1px dashed #D67C1D;
    position: absolute;
    top: 50%;
    margin: 0;
    z-index: 0;
}*/

.company-container .layer-container .layer-inner-box .flex-between {
    /* 線の長さ8pxの線を背景画像とする */
    background-image: linear-gradient(to right, #FFF 8px, transparent 8px);
    /* 背景画像の大きさを設定 */
    background-size: 12px 1px;
    /* 背景の開始位置を指定 */
    background-position: center;
    /* 横方向に繰り返す */
    background-repeat: repeat-x;
}

@media screen and (max-width: 1333px) {
    .company-container .layer-container .layer-inner-box .flex-between {
        display: grid;
        justify-content: center;
        /* 線の長さ8pxの線を背景画像とする */
        background-image: linear-gradient(to bottom, #FFF 8px, transparent 8px);
        /* 背景画像の大きさを設定 */
        background-size: 1px 12px;
        /* 背景の開始位置を指定 */
        background-position: center;
        /* 横方向に繰り返す */
        background-repeat: repeat-y;
    }

    .box-circle {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .line-box {
        width: unset;
        height: 100%;
        border-top: none;
        border-left: 1px dashed #D67C1D;
        top: 0;
        left: 50%;
    }
}

.profile-inner {
    width: 768px;
}

.profile-inner li {
    display: flex;
    font-size: clamp(12px, 1.111vw, 16px);
    padding: 30px 0;
    /* 線の長さ2pxの線を背景画像とする */
    background-image: linear-gradient(to right, #8E8E8E 6px, transparent 2px);
    /* 背景画像の大きさを設定 */
    background-size: 9px 1px;
    /* 背景の開始位置を指定 */
    background-position: left top;
    /* 横方向に繰り返す */
    background-repeat: repeat-x;
}

.profile-inner li:last-of-type {
    /* 線の長さ2pxの線を背景画像とする */
    background-image:
    linear-gradient(to right, #8E8E8E 6px, transparent 2px),
    linear-gradient(to left, #8E8E8E 6px, transparent 2px);
    /* 背景画像の大きさを設定 */
    background-size:
    9px 1px,
    9px 1px;
    /* 背景の開始位置を指定 */
    background-position:
    left top,
    right bottom;
    /* 横方向に繰り返す */
    background-repeat:
    repeat-x,
    repeat-x;
}

.profile-inner li span {
    display: inline-block;
    line-height: 150%;
}

.profile-inner li span:first-of-type {
    width: 100%;
    max-width: 220px;
}

.profile-inner li span:nth-of-type(2) {
    color: #000;
}

.profile-inner li span .c-btn {
    width: 153px;
    font-size: 12px;
    padding: 0;
    margin: 0;
}

.profile-inner li span .c-btn a {
    width: 153px;
    font-size: 12px;
}

.profile-inner li span .c-btn span {
    display: inline;
    position: relative;
    top: 12px;
}

.company-office .company-inner p {
    padding-bottom: 10px;
}

.company-office .company-inner img {
    padding-top: 30px;
}

/* =======================================================
* page-service
* ======================================================= */
.post-name-service .under-header {
    background: url(/wp-content/uploads/2025/01/under-service.png) no-repeat;
    background-size: cover;
}

.post-name-service .under-container .service-container {
    max-width: 1344px;
    margin: -62px auto 0;
}

.post-name-service .under-container .service-container .header-type-r {
    background: unset;
    background-position: left 122px bottom 10px !important;
    padding: 102px 0;
}

.post-name-service .under-container .header-type-r h2 {
    align-items: center;
    position: relative;
}

.post-name-service .under-container .header-type-r h2 p {
    color: #111;
    font-family: 'Noto Sans JP';
    font-size: clamp(20px, 3.055vw, 44px);
    font-weight: 700;
    line-height: 150%;
    z-index: 1;
}

.post-name-service .under-container .header-type-r h2 p.number {
    color: #F1F1F1;
    font-family: 'Inter';
    font-size: clamp(220px, 30.763vw, 443px);
    font-weight: 700;
    position: absolute;
    padding-left: 112px;
    z-index: 0;
}


.post-name-service .under-container .header-type-r h2::before,
.company-inner-inner .company-inner-title::before {
    width: 74px;
    border-top: 2px solid;
    content: "";
    color: #111;
    margin-right: 23px;
}

.post-name-service .under-container .top-inner p {
    width: 100%;
    max-width: 504px;
    box-sizing: content-box;
    color: #111;
    padding-left: 96px;
}

.service-img {
    max-width: 600px;
    width: 100%;
    display: grid;
    row-gap: 24px;
    padding-top: 112px;
    margin-left: 24px;
}

.service-img-logo {
    width: 90px;
}

.service-img-title {
    font-size: clamp(18px, 2.222vw, 32px);
    font-weight: 700;
    letter-spacing: 0.15em;
}

.layer-container {
    background: #191919;
    color: #FFF;
}

.layer-inner {
    width: 100%;
    max-width: 1368px;
    padding: 150px 12px;
    margin: 0 auto;
}

.layer-inner h2 {
    font-family: 'Inter';
    font-size: clamp(50px, 9.166vw, 132px);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
}

.layer-description {
    padding-bottom: 42px;
}


.layer-inner h3 {
    font-size: clamp(20px, 3.055vw, 44px);
    font-weight: 700;
    line-height: 150%;
    padding: 80px 0 40px;
}

.layer-inner h4 {
    font-size: clamp(18px, 2.222vw, 32px);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-align: center;
    padding: 70px 0 30px;
}

.layer-inner h5 {
    font-size: clamp(14px, 1.666vw, 24px);
    font-weight: 700;
    letter-spacing: 0.15em;
    padding-bottom: 30px;
}

.layer-inner p {
    font-size: clamp(12px, 1.111vw, 16px);
}

.layer-inner .flex-between {
    width: 100%;
    max-width: 1128px;
    margin: 0 auto;
}

.layer-inner-box-lg {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 48px 0;
    /* 線の長さ2pxの線を背景画像とする */
    background-image:
    linear-gradient(to right, #FFF 6px, transparent 6px),
    linear-gradient(to bottom, #FFF 6px, transparent 6px),
    linear-gradient(to left, #FFF 6px, transparent 6px),
    linear-gradient(to top, #FFF 6px, transparent 6px);
    /* 背景画像の大きさを設定 */
    background-size:
    9px 1px,
    1px 9px,
    9px 1px,
    1px 9px;
    /* 背景の開始位置を指定 */
    background-position:
    left top,
    right top,
    right bottom,
    left bottom;
    /* 横方向に繰り返す */
    background-repeat:
    repeat-x,
    repeat-y,
    repeat-x,
    repeat-y;
}

.layer-inner-box-lg p,
.layer-inner-box-sm p {
    letter-spacing: 0.15em;
}

.layer-inner-box-sm {
    width: 100%;
    max-width: 504px;
    padding: 40px 0 45px 40px;
    /* 線の長さ2pxの線を背景画像とする */
    background-image:
    linear-gradient(to right, #FFF 6px, transparent 6px),
    linear-gradient(to bottom, #FFF 6px, transparent 6px),
    linear-gradient(to left, #FFF 6px, transparent 6px),
    linear-gradient(to top, #FFF 6px, transparent 6px);
    /* 背景画像の大きさを設定 */
    background-size:
    9px 1px,
    1px 9px,
    9px 1px,
    1px 9px;
    /* 背景の開始位置を指定 */
    background-position:
    left top,
    right top,
    right bottom,
    left bottom;
    /* 横方向に繰り返す */
    background-repeat:
    repeat-x,
    repeat-y,
    repeat-x,
    repeat-y;
}

.layer-inner-box-sm:last-of-type {
    max-width: 528px;
}

.layer-inner-box-sm .layer-inner-box {
    display: flex;
    gap: 60px;
}

.layer-inner-box-sm + img {
    margin: 0 8px;
}

.contact-area {
    text-align: center;
    padding: 150px 0;
}

.contact-area a {
    display: inline-block;
    border-bottom: 5px solid;
    color: #191919;
    font-family: 'Inter';
    font-size: clamp(65px, 14.861vw, 214px);
    font-weight: 700;
    line-height: 0.8;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.contact-area p {
    font-size: clamp(12px, 1.25vw, 18px);
    font-weight: 500;
    line-height: 150%;
}


/* =======================================================
* page-news
* ======================================================= */
.page-header,
.entry-meta-item-date i,
.entry-meta-item-updated,
.entry-meta-item-author,
.entry-footer /* カテゴリー表示 */ {
    display: none;
}

.post-name-news .top-news {
    padding-top: 100px;
}

/* =======================================================
* single-news
* ======================================================= */
.vk_posts.next-prev {
    display: none;
}

.single-post .site-body-container {
    padding: 100px 48px 0 48px;
}

.single-post .entry-container {
    max-width: 1152px;
    margin: 0 auto;
    margin-top: 72px;
    /* 線の長さ2pxの線を背景画像とする */
    background-image:
    linear-gradient(to right, #8E8E8E 5px, transparent 5px),
    linear-gradient(to left, #8E8E8E 5px, transparent 5px);
    /* 背景画像の大きさを設定 */
    background-size:
    8px 1px,
    8px 1px;
    /* 背景の開始位置を指定 */
    background-position:
    left top,
    right bottom;
    /* 横方向に繰り返す */
    background-repeat:
    repeat-x,
    repeat-x;
}

.single-post .entry-header .flex-block {
    align-items: center;
    padding: 15px 0 20px;
}

.single-post .entry-header h1 {
    color: #444;
    font-size: clamp(20px, 2.777vw, 40px);
    margin-bottom: 100px;
}

.single-post .entry-body h2 {
    display: inline-block;
    border-bottom: 2px solid #111;
    color: #000;
    font-size: clamp(16px, 1.666vw, 24px);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.single-post .entry-body h3 {
    border-left: 2px solid #111;
    color: #000;
    font-size: clamp(14px, 1.388vw, 20px);
    padding-left: 11px;
    margin: 0 0 30px;
}

.single-post .entry-body p,
.single-post .entry-body img {
    color: #000;
    line-height: 160%;
    padding-bottom: 50px;
}

.single-post .c-btn {
    display: block;
    padding: 60px 0 120px;
}

.single-post .global-nav-contact--btn {
	padding: 0;
}

.single-post .c-btn .c-btn__link {
    margin: 0 auto;
}

.single-post .global-nav-contact--btn .c-btn__link {
	margin-left: 48px;
}

div[id^="post-"] + .c-btn {
    display: none;
}

#post-70 + .btn-s {
    display: block;
}

/* =======================================================
*   page-contact
* ======================================================= */
.post-name-contact .under-header {
    background: url(/wp-content/uploads/2025/01/under-contact.png) no-repeat;
    background-size: cover;
}

.contact-container {
    width: 100%;
    max-width: 1176px;
    padding: 40px 12px;
    margin: 0 auto;
}

.contact-container h2 {
    color: #111;
    font-size: clamp(20px, 3.055vw, 44px);
    font-weight: 700;
}

.contact-container .flex-between:first-of-type {
    border-bottom: 1px solid #000;
    padding: 80px 0 70px;
}

.contact-container .flex-between:last-of-type {
    padding: 70px 0 80px;
}

.contact-inner p {
    font-size: clamp(12px, 1.25vw, 18px);
    font-weight: 500;
    padding-bottom: 80px;
}

.contact-other {
    background: #F1F1F1;
    text-align: center;
    padding: 80px 0;
}

.contact-other h2 span {
    font-size: clamp(18px, 2.222vw, 32px);
}

.contact-other p {
    color: #111;
    font-size: clamp(12px, 2.5vw, 16px);
    padding: 60px 0 66px;
}

.contact-other .flex-block {
    justify-content: center;
    gap: 0 48px;
}

.contact-other .c-btn {
    padding: 0;
	margin: 0;
}

.contact-other .c-btn__link { /* 36px */
    width: 270px;
    height: auto;
    font-weight: 500;
    line-height: 1;
    padding: 24px 0;
    margin: 0 auto;
}

.contact-other .c-btn--icon .c-btn__link::before,
.contact-other .c-btn--icon .c-btn__link:hover::before {
    background-image: none;
}

.contact-other .c-btn__link-item {
    font-size: clamp(12px, 2.5vw, 16px);
    margin: 0;
}

.contact-other .c-btn__link {
    background: #0066FF;
	outline: 1px solid #0066FF;
}

.contact-other .c-btn--blue .c-btn__link::after {
    background: #FFF;
	/*border: 1px solid #0066FF;*/
	color:#0066FF ;
	outline: none;
}

.contact-other .c-btn__link:hover .c-btn__link-item {
	color: #0066FF;
}

/* =======================================================
*   page-privacy-policy
* ======================================================= */
.post-name-privacy-policy .under-header {
    background: url(/wp-content/uploads/2025/08/under-privacy.png) no-repeat;
    background-size: cover;
}

.post-name-privacy-policy .under-header .header-type-r {
    /*padding: 10px 0 !important;*/
}

.post-name-privacy-policy .under-container {
    padding: 60px 0 120px;
}

.under-container .under-header-inner {
    top: unset;
    margin: 120px 0;
}

.under-container .under-header-inner p {
    max-width: 1080px;
}


.under-container .under-header-inner span {
    display: block;
    font-size: clamp(18px, 2.5vw, 36px);
    line-height: 200%;
    padding-bottom: 40px;
}

.privacy-list {
    width: 100%;
    max-width: 1248px;
    margin: 0 auto !important;
}

.privacy-list h3 {
    display: flex;
    align-items: center;
    color: #111;
    font-size: clamp(18px, 2.5vw, 36px);
    font-weight: 500;
    padding: 60px 0 36px;
}

.privacy-list h3::before {
    width: 74px;
    border-top: 2px solid;
    content: "";
    color: #111;
    margin-right: 23px;
}

.privacy-list p {
    font-size: clamp(12px, 2.5vw, 16px);
    padding-left: 97px;
}

.privacy-list p span {
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
}

.privacy-list table {
    display: block;
    width: 100%;
    max-width: 816px;
    border: none;
    box-sizing: content-box;
    padding: 35px 0 0 97px;
}

.privacy-list th {
    font-weight: 400;
    padding: 15px;
}

.privacy-list td {
    line-height: 200%;
    vertical-align: top;
    padding: 15px;
}

/* =======================================================
* page-careers
* ======================================================= */
.post-name-careers .under-header {
    background: url(/wp-content/uploads/2025/01/under-company.png) no-repeat;
    background-size: cover;
}

.contact-inner {
    text-align: right;
}

.contact-inner p {
    text-align: left;
}

.post-name-careers .contact-container .btn-m a {
    display: flex;
    justify-content: center;
    padding: 0;
}

.post-name-careers .contact-container .btn-m a span::after {
    content: url(/wp-content/uploads/2025/03/icon-arrow-diagonal-lg.svg);
    padding-left: 6px;
}

.post-name-careers .company-container .company-message {
    max-width: 1176px;
    padding: 110px 12px 0;
}

.careers-movie {
    gap: 56px;
    padding-top: 103px;
}

.careers-movie .company-inner {
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: 1;
}

.careers-movie .company-inner-title {
    padding-bottom: 28px;
}

.careers-movie iframe {
    width: 100%;
    height: 100%;
    margin: 28px 0 0;
}

/* =======================================================
*   max-width: 991.98px
* ======================================================= */
@media screen and (max-width: 991.98px) {
    .main-section {
        margin-bottom: 0;
    }

    .global-nav-contact--btn {
        display: none !important;
    }

    .site-footer-content .row {
        display: block;
    }

    .footer-logo img {
        width: 273px;
    }

    .footer-nav.flex-block {
        display: block;
        padding: 24px 0 107px;
    }

    .footer-nav a {
        margin: 0 0 16px 0;
    }

    .footer-nav-inner:nth-of-type(3) a::after {
        position: relative;
        top: 2px;
    }

    .footer-nav a p {
        display: none;
    }
}

/* =======================================================
*   max-width: 768px
* ======================================================= */
@media screen and (max-width: 768px) {
    .sp-br {
        display: block;
    }

    .pc-br {
        display: none;
    }

    footer {
        padding: 24px 0 10px;
    }

    .site-footer-content {
        padding: 0 12px;
    }

    .site-footer-content .row {
        margin: 0;
    }

    .kv-catchcopy p:first-of-type {
        line-height: 1.2;
        position: absolute;
    }

    .kv-catchcopy p:first-of-type span {
        position: relative;
        left: -20px;
    }

    .kv-catchcopy p:first-of-type span:last-of-type {
        position: relative;
        left: -20px;
    }

    .kv-image {
        padding-bottom: 50px;
    }

    .kv-image img {
        height: 366px;
        object-fit: cover;
    }

    .top-container {
        padding: 0 12px;
    }

    .top-container .header-type {
        width: 100%;
        padding: 80px 0 0 60px;
    }

    .top-container .header-type h3,
    .top-container .header-type p,
    .top-container .top-inner .btn-s,
    .c-btn {
        margin-left: 32px;
    }

    .top-inner {
        justify-content: flex-end;
        position: relative;
        top: -68px;
    }

    .header-type {
        width: 244px;
    }

    .header-type h3 {
        padding-left: 36px;
    }
    
    .header-type h3::before {
        width: 30px;
        height: 1px;
        top: 50%;
        left: 0;
    }
    
    .header-type p {
        padding: 24px 0 24px 36px;
    }
    
    .header-type-r,
    .top-service .header-type-r {
        background-size: 127px !important;
        padding: 50px 0 51px !important;
    }

    .header-type-r h2 + p {
        padding-top: 10px;
    }

    .header-type-under h2 + p {
        padding-top: 10px !important;
        padding-left: 10px;
    }

    .top-inner .btn-s,
    .c-btn {
        padding-left: 36px;
    }

    .top-service-head {
        height: 51px;
    }

    .top-service-head img {
        width: 96px;
        bottom: 35px;
        left: 24px;
    }

    .top-news {
        padding: 60px 12px;
    }

    .top-news .header-type-under .c-btn {
        display: none;
    }

    .top-news .wp-block-column:last-of-type {
        margin: 0;
    }

    .top-news-list {
        padding: 16px 0;
    }

    .top-news-list .flex-block {
        display: block;
    }

    .top-news-list h3 {
        padding-top: 16px;
    }

    .top-news .btn-s {
        display: none;
    }

    .top-news .postlist_ul + .btn-s,
    .top-news .postlist_ul + .c-btn {
        display: inline-block;
        padding: 0;
        margin-top: 24px;
    }

    /* =======================================================
    *   under
    * ======================================================= */
    .under-header-inner {
        top: -40px;
        right: 12px;
        padding-left: 0;
    }

    .under-header-inner p {
        width: 282px;
        padding: 25px;
    }

    .under-header .header-type-r p {
        padding-top: 12px;
    }

    /* =======================================================
    * page-company
    * ======================================================= */
    .company-container .company-message {
        padding: 80px 12px 60px;
    }

    .company-container .company-profile {
        padding-top: 80px;
    }

    .company-container .company-office {
        padding: 80px 12px;
    }

    .company-container .top-inner {
        display: block;
    }

    .company-inner-inner {
        padding-left: 0;
    }

    .company-container .company-message .company-inner p,
    .company-inner-inner p,
    .profile-inner,
    .company-container .company-office .company-inner {
        padding-left: 42px;
    }

    .company-container .company-message .company-inner > .company-inner-title {
        padding: 64px 0 30px 42px;
    }

    .company-inner-img {
        padding-top: 40px;
    }

    .company-inner-img img {
        width: 144px;
    }

    .company-inner-inner {
        padding-top: 30px;
    }

    .company-inner-inner .company-inner-title {
        padding-bottom: 18px;
    }

    .company-inner-inner .company-inner-img img {
        width: 24px;
    }

    .box-circle:first-of-type img {
        width: 50px;
        padding-top: 51px;
    }
    
    .box-circle:nth-of-type(2) img {
        width: 50px;
        padding-top: 56px;
    }
    
    .box-circle:nth-of-type(3) img {
        width: 50px;
        padding-top: 44px;
    }
    
    .box-circle:last-of-type img {
        width: 60px;
        padding-top: 63px;
    }
    
    .company-container .layer-inner h3 {
        padding: 45px 0;
    }

    .company-profile .header-type-under,
    .company-office .header-type-under {
        padding-bottom: 50px;
    }

    .profile-inner {
        width: 100%;
    }

    .profile-inner li {
        display: block;
        padding: 20px 0;
    }
    
    .profile-inner li span {
        display: block;
    }

    .profile-inner li span:first-of-type {
        padding-bottom: 15px;
    }

    .profile-inner li span .btn-s a span {
        position: relative;
        top: -1px;
    }

    .company-office .company-inner img {
        padding-top: 20px;
    }

    /* =======================================================
    *   page-service
    * ======================================================= */
    .post-name-service .under-container .service-container {
        padding: 60px 12px 0;
    }

    .post-name-service .under-container .top-inner {
        display: block;
    }

    .post-name-service .under-container .header-type-r h2 {
        padding-bottom: 30px;
    }

    .post-name-service .under-container .header-type-r h2::before,
    .company-inner-inner .company-inner-title::before {
        width: 30px;
        margin-right: 11px;
    }

    .post-name-service .under-container .top-inner p {
        box-sizing: border-box;
        padding-left: 42px;
    }

    .post-name-service .under-container .header-type-r h2 p.number {
        padding-left: 53px;
    }

    .service-img {
        padding: 30px 0 0 42px;
        margin: 0;
    }

    .layer-inner {
        padding: 60px 12px;
    }

    .layer-description {
        padding-bottom: 15px;
    }

    .layer-inner h3 {
        padding: 50px 0 30px;
    }

    .layer-inner h4 {
        padding: 45px 0 20px;
    }

    .layer-inner h5 {
        padding-bottom: 24px;
    }

    .layer-inner-box-lg {
        display: block;
        padding: 24px 0 36px 36px;
    }

    .layer-inner-box-sm {
        padding: 24px 0 30px 11px;
    }

    .layer-inner-box-sm .layer-inner-box {
        display: block;
    }

    .layer-inner-box-sm + img {
        width: 20px;
    }

    .contact-area {
        padding: 60px 0;
    }

    /* =======================================================
    *   page-news
    * ======================================================= */
    .post-name-news .top-news {
        padding-top: 120px;
    }

    /* =======================================================
    *   sinle-news
    * ======================================================= */
    .single-post .site-body-container {
        padding: 120px 12px 0 12px;
    }

    .single-post .entry-container {
        margin-top: 35px;
    }
    
    .single-post .entry-header .flex-block {
        padding: 16px 0;
    }

    .single-post .entry-header h1 {
        margin-bottom: 50px;
    }

    .single-post .entry-body h3 {
        margin: 0 0 15px;
    }

    .single-post .c-btn {
        padding: 30px 0 60px;
        margin: 0;
    }

    /* =======================================================
    *   page-contact
    * ======================================================= */
    .contact-container .flex-between {
        display: block;
    }

    .contact-container .flex-between:first-of-type {
        padding: 60px 0 36px;
    }

    .contact-container .flex-between:last-of-type {
        padding: 36px 0 60px;
    }

    .contact-inner p {
        padding: 35px 0 40px;
    }

    .btn-m a {
        width: 198px;
        height: auto;
        padding: 12px 0 12px 40px;
    }

    /*.btn-m span {
        bottom: 6px;
    }*/
    #menu-item-49 .global-nav-name::after
    .btn-m img {
        width: 28px;
        height: 28px;
    }


    .c-btn.btn-m .c-btn__link {
        width: 198px;
        height: auto;
        padding: 18px 0;
    }

    .c-btn.btn-m .c-btn__link::before {
        background-size: contain;
        height: 27px;
        right: 24px;
    }

    .post-name-careers .c-btn.btn-m .c-btn__link::before {
        width: 22px;
        height: 24px;
        right: 20px;
    }

    .contact-other {
        padding: 20px 0;
    }

    .contact-other p {
        padding: 30px 0 48px;
    }

    .contact-other .flex-block {
        display: grid;
        row-gap: 24px;
    }

    /* =======================================================
    *   page-privacy
    * ======================================================= */
    .post-name-privacy-policy .under-container {
        padding: 30px 0 60px;
    }

    .under-container .under-header-inner {
        margin: 60px 0;
    }

    .privacy-list {
        padding: 0 12px;
    }

    .privacy-list h3 {
        padding: 30px 0 13px;
    }

    .privacy-list h3::before {
        width: 34px;
        margin-right: 14px
    }

    .privacy-list p {
        padding-left: 48px;
    }

    .privacy-list table {
        box-sizing: border-box;
        padding: 12px 0 0 48px;
    }

    .privacy-list th,
    .privacy-list td {
        padding: 10px 6px;
    }

    /* =======================================================
    * page-careers
    * ======================================================= */
    .post-name-careers .company-container .company-message {
        padding: 20px 12px 0;
    }

    .post-name-careers .contact-container .btn-m a {
        padding: 12px 0;
    }

    .post-name-careers .contact-container .btn-m a span::after {
        position: relative;
        top: 5px;
    }

    .post-name-careers .company-container .header-type-under h2 p {
        line-height: 1;
    }

    .careers-movie .company-inner-title {
        padding-bottom: 15px !important;
    }

    .careers-movie .company-inner {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .careers-movie {
        display: block;
        padding-top: 0;
    }

    .careers-movie iframe {
        width: 100%;
        height: 100%;
        margin-top: 15px;
    }

    .company-container .company-message .careers-movie .company-inner > .company-inner-title {
        padding: 50px 0 30px;
    }

    .company-container .company-message .careers-movie .company-inner p {
        padding-left: 0;
    }
}

@media screen and (max-width: 440px) {
    /* sp時のアニメーション削除 */
    .c-btn--blue .c-btn__link::after,
    .c-btn--wht .c-btn__link::after {
        -webkit-transition: unset;
        transition: unset;
    }

    .c-btn__link-item,
    .c-btn__link::before {
        transition: unset;
    }

    .c-btn--icon .c-btn__link:hover::before {
        margin-right: 15px;
    }
    /* ここまで */


    .post-name-privacy-policy .under-header .header-type-r h2 p {
        line-height: 110%;
    }

    .post-name-privacy-policy .under-header .header-type-r {
        padding-top: 5px !important;
    }

    .post-name-privacy-policy .under-header .header-type-r p {
        padding-top: 5px;
    }
}