/* ===================== */


/* PC用のスタイル */


/* ===================== */


/* PC・スマホ共通スタイル */

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

html {
    scroll-behavior: smooth;
    @media (prefers-reduced-motion: reduce) {
        scroll-behavior: auto;
    }
}

body {
    font-family: "Shippori Mincho B1", serif;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 28px;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.grecaptcha-badge {
    visibility: hidden;
}

.txt_xsm {
    font-size: 1.2rem;
    line-height: 17px;
    font-weight: 400;
}

.txt_sm {
    font-size: 1.4rem;
    font-weight: 400;
}

.txt_md {
    font-size: 2.4rem;
    font-weight: 400;
}

.txt_lg {
    font-size: 3.2rem;
    line-height: 45px;
    font-weight: 600;
}

.txt_xlg {
    font-size: 4.2rem;
    line-height: 74px;
    font-weight: 600;
}

.txt_xxlg {
    font-size: 4.8rem;
    line-height: 48px;
    font-weight: 600;
}

li {
    list-style: none;
}

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

a {
    text-decoration: none;
    color: #000;
    font-size: 1.6rem;
}

img {
    max-width: 100%;
}

.filter_wh {
    filter: invert(100%) sepia(0%) saturate(7467%) hue-rotate(33deg) brightness(96%) contrast(110%);
}

.pc_br {
    display: block;
}

.sp_br {
    display: none;
}

.two_layout .lt_cont,
.two_layout .rt_cont {
    width: 49%;
}

.three_layout .lt_cont,
.three_layout .rt_cont,
.three_layout .ctr_cont {
    width: 30%;
}


/* loading css */

#loading {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #000;
    text-align: center;
    color: #fff;
}

.loading_cont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

#loading_img img {
    width: 380px;
}

#loading_txt {
    height: 60px;
}


/* progress-cont css */

#progress-cont {
    position: fixed;
    z-index: 999;
    right: 50px;
    bottom: 50px;
    mix-blend-mode: exclusion;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#progress-cont a {
    color: white;
    font-size: 1.2rem;
}

#progress-cont .progress-img {
    position: fixed;
    right: 38px;
    bottom: 30px;
    width: 50px;
    transform-origin: center center;
    -webkit-transform-origin: center center;
}

#progress-cont.fade-out {
    opacity: 0;
    pointer-events: none;
}

#progress-cont.fade-in {
    opacity: 1;
}


/* 背景の設定 */

.cont_bg {
    transition: background-color 1s ease, color 0.1s ease;
    padding: 100px 0;
    background: #fff;
}

.cont_bg.bg_bk {
    background: #000;
}

.bg-black {
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.bg-black a {
    color: white;
}

.cont_bg.bg-white {
    background: white;
    color: black;
}

.cont_bg.bg-white a {
    color: black;
}

.bg-purple {
    background: rgba(97, 68, 118, 0.8);
    color: #fff;
}

.bg-purple a {
    color: white;
}


/* コンテンツ */

.cont_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cont_center {
    text-align: center;
}

.cont_head {
    margin-bottom: 70px;
}

.cont_foot {
    margin-top: 70px;
}

.cont_head h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

.cont_head p {
    margin-top: 20px;
}

.txt_grad {
    display: inline-block;
    background-image: linear-gradient(45deg, #614476 10%, #e8caee 50%, #0c1467 90%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-name: gradationTextAnimation;
    animation-duration: 8s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.txt_grad_pt02 {
    background: linear-gradient(120deg, rgba(97, 68, 118, 1) 0%, rgba(12, 20, 103, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.txt_gray {
    color: #878787;
}

@keyframes gradationTextAnimation {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}


/* 背景のアニメーション */

.animated-bg {
    position: relative;
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下にずらす */
    transition: opacity 1s ease-out, transform 1s ease-out;
    /* アニメーション設定 */
}

.animated-bg.active {
    opacity: 1;
    /* 表示 */
    transform: translateY(0);
    /* 元の位置に戻す */
}

.smoothText {
    overflow: hidden;
    display: block;
}


/* アニメーションで傾斜がついている文字列を水平に戻す*/

span.smoothTextTrigger {
    transition: 0.8s ease-in-out;
    transform: translate3d(0, 110%, 0) skewY(0deg);
    transform-origin: center;
    display: block;
}

span.smoothTextTrigger.smoothTextAppear {
    transform: translate3d(0, 0, 0) skewY(0);
}


/* スクロールに応じて文字が出現*/

.fadeinTrigger span {
    opacity: 0;
}

.fadeintext {
    opacity: 0;
    transform: translateY(20px);
    animation-name: fadeInUp;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ud_line css*/

.ud_line li {
    position: relative;
}

.ud_line li::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -10px;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background: #000;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center bottom;
}

#header.scrolled .ud_line.gnavi_pc li::after {
    bottom: -18px;
}


/*現在地とhoverの設定*/

.ud_line li:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}


/* ぼかしから出現 */

.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.1);
    }
    to {
        filter: blur(0);
        transform: scale(1);
    }
}


/* 左に線をつける設定 */

.lt_line {
    border-left: 2px solid #614476;
    padding-left: 20px;
}

.btm_line {
    border-bottom: 1px solid #fff;
    padding-bottom: 30px;
}


/* リンクにアイコンをつける設定 */

.link_icon a {
    position: relative;
}

.link_icon a:before {
    content: '';
    /*何も入れない*/
    display: inline-block;
    width: 17px;
    /*画像の幅*/
    height: 17px;
    /*画像の高さ*/
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.link_icon .btn:before {
    right: 6%;
}

.link_icon.next a:before {
    background-image: url(../img/btn_icon_02.svg);
}

.link_icon.outside a:before {
    background-image: url(../img/btn_icon_04.svg);
}

.link_icon.pop a:before {
    background-image: url(../img/btn_icon_03.svg);
}

.link_icon.move a:before {
    background-image: url(../img/btn_icon_01.svg);
}

.link_icon.next.icon_wh a:before,
.link_icon.outside.icon_wh a:before,
.link_icon.pop.icon_wh a:before,
.link_icon.move.icon_wh a:before {
    filter: invert(100%) sepia(0%) saturate(7467%) hue-rotate(33deg) brightness(96%) contrast(110%);
}


/* ボタンの設定 */

.btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5em;
    border: 1px solid #fff;
    width: 300px;
    height: 50px;
    line-height: 50px;
    padding: 0 2%;
    overflow: hidden;
    position: relative;
}

.bg-white .btn {
    border: 1px solid #000;
}

.mar {
    transition: opacity 0.2s ease, width 0.2s ease;
    white-space: nowrap;
}


/* ボタンアニメーション設定 */

.btn .txt {
    transition: transform 0.2s ease-in-out;
}

.btn:hover .mar {
    opacity: 0;
    width: 0;
}

.btn:hover .txt {
    transform: translateX(-0.5em);
}


/* header css */

#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2%;
    position: fixed;
    width: 96%;
    background: rgba(255, 255, 255, 0);
    z-index: 1000;
    transition: all 1s ease-in-out;
}

#header.scrolled {
    background: rgba(255, 255, 255);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

header.scrolled {
    animation: slideDown 1s ease-out;
}

#header .hd_logo {
    position: relative;
}

#header .hd_logo img {
    width: 150px;
}


/* gnavi_pc css */

.gnavi_pc.gnavi_lc {
    margin-right: 33px;
}

.gnavi_pc.gnavi_lc>a {
    margin-left: 20px;
}

.gnavi_lc li a {
    position: relative;
    overflow: hidden;
    display: block;
    padding: 10px 60px 20px 60px;
}

.gnavi_lc li span {
    position: absolute;
    left: 0%;
    top: 0;
    transition: all .5s;
    transform: translate(0%, 0);
    display: block;
    opacity: 1;
    white-space: nowrap;
}

.gnavi_lc li span:nth-child(2) {
    opacity: 0;
    transform: translate(0%, 100%);
}

.gnavi_lc li:hover span:nth-child(1) {
    opacity: 0;
    transform: translate(0%, -100%);
}

.gnavi_lc li:hover span:nth-child(2) {
    opacity: 1;
    transform: translate(0%, 0);
}

.gnavi_pc.gnavi_lc li span {
    left: 50%;
    transform: translate(-50%, 0);
}

.gnavi_pc.gnavi_lc li span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, 100%);
}

.gnavi_pc.gnavi_lc li:hover span:nth-child(1) {
    opacity: 0;
    transform: translate(-50%, -100%);
}

.gnavi_pc.gnavi_lc li:hover span:nth-child(2) {
    opacity: 1;
    transform: translate(-50%, 0);
}


/*gnav_menu css*/

#gnavi_menu {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    filter: blur(50px);
    visibility: hidden;
    transition: opacity 0.5s ease, filter 0.5s ease;
}

#gnavi_menu.panelactive {
    opacity: 1;
    z-index: 999;
    visibility: visible;
    filter: blur(0);
}

#gnavi_menu.panelactive #gnavi_menu_list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#gnavi_menu ul,
#gnavi_menu .rt_cont {
    display: none;
}

#gnavi_menu.panelactive ul {
    display: flex;
    flex-wrap: wrap;
}

#gnavi_menu.panelactive .rt_cont {
    display: block;
}

#gnavi_menu li a {
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
}

#gnavi_menu .btn {
    margin-top: 20px;
    height: 60px;
    line-height: 60px;
}


/*========= ボタンのためのCSS ===============*/

.openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 14px;
    right: 23px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    top: 9px;
}

.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    background-color: #000;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 16px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
    width: 17px;
}

.openbtn span:nth-of-type(3) {
    top: 30px;
    width: 10px;
}

.openbtn.active span {
    background-color: #fff;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

#gnavi_menu {
    color: #fff;
}

#gnavi_menu .two_layout .lt_cont {
    width: 40%;
    margin-right: 4%;
}

#gnavi_menu .two_layout.flex {
    justify-content: flex-end;
}

#gnavi_menu .two_layout .rt_cont img {
    height: 100vh;
    object-fit: cover;
    object-position: center;
}


/*gnavi_menu_01 css*/

.gnavi_menu_01 li {
    margin-bottom: 20px;
}

.gnavi_menu_01 li:nth-child(5),
.gnavi_menu_01 li:nth-child(6) {
    margin-bottom: 0;
}

.gnavi_menu_01 li span:nth-child(2) {
    display: block;
}

#gnavi_menu .flex .flex li {
    width: 50%;
}

.gnavi_menu_01 {
    padding: 70px 0 40px 0;
}


/*gnavi_menu_02 css*/

.gnavi_menu_02 li {
    width: 45% !important
}

.gnavi_menu_02 {
    padding: 40px 0;
}

.gnavi_menu_02 li {
    margin-bottom: 30px;
}

.gnavi_menu_02 li:nth-child(3),
.gnavi_menu_02 li:nth-child(4) {
    margin-bottom: 0;
}

.gnavi_menu_02 li a {
    font-size: 1.4rem;
}


/*gnavi_menu_03 css*/

.gnavi_menu_03 {
    border-top: 1px solid #fff;
    padding: 40px 0 70px 0;
}

.gnavi_menu_03 li {
    width: 100%;
}

.gnavi_menu_03 li:first-child {
    margin-bottom: 20px;
}

.gnavi_menu_03 img {
    width: 150px;
}


/* fv css */

#fv .catch-copy img {
    margin-bottom: 30px;
    width: 400px;
}

#fv .catch-copy p {
    font-size: 2rem;
    line-height: 44px;
}


/* 動画 */

.video-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: fixed;
    z-index: -1;
}

.video-wrapper .catch-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 70%;
}

.video-wrapper .catch-copy p {
    position: absolute;
    top: 18%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}


/* about css */

#about,
#contact {
    position: relative;
    overflow: hidden;
}

#about.cont_bg,
#contact.cont_bg {
    width: 100%;
}

#about.cont_bg {
    padding: 150px 0;
}

#contact.cont_bg {
    padding: 200px 0;
}

#about .cont_body span {
    line-height: 50px;
}

#about .cont_head,
#about .cont_head h2 {
    margin-bottom: 40px;
}

.text_loop_cont {
    width: 100%;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: -1;
    mix-blend-mode: overlay;
}

.text_loop {
    display: inline-block;
    animation: loopText 200s linear infinite;
    /* アニメーション設定 */
}

.text_loop span {
    display: inline-block;
    padding-right: 50px;
    font-size: 13rem;
    color: #000;
    font-weight: 600;
}

@keyframes loopText {
    0% {
        transform: translateX(0);
        /* 最初の位置 */
    }
    50% {
        transform: translateX(-50%);
        /* 中間点で半分移動 */
    }
    100% {
        transform: translateX(-100%);
        /* 最終位置で完全に左へ移動 */
    }
}


/* service css */


/* スライダー css*/

.slider,
.service_slider {
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.slider img {
    width: 100%;
    height: auto;
}

.slider .slick-slide {
    margin-left: 60px;
}

.service_slider .slick-slide {
    margin: 0 15px;
}

.slick-list {
    overflow: hidden;
}

.slick-track {
    display: flex;
    align-items: flex-start;
    margin-left: 0;
}

.slider h4 {
    margin: 20px 0;
}

.service_slider h4 {
    margin: 30px 0;
}

.slider p,
.slider .sns_icon {
    margin-bottom: 20px;
}

.service_slider span {
    display: block;
    margin-top: 10px;
}

.slider .btn {
    width: 94%;
    margin-bottom: 10px;
}

.slider .btn span {
    margin-top: 0;
}

.slider .sns_icon.flex {
    justify-content: flex-start;
    align-items: center;
}

.slider .sns_icon li {
    margin-right: 20px;
}

.slider .sns_icon img {
    width: 20px;
    height: auto;
}

.slider .link_icon .btn:before {
    right: 2%;
}

#service .service_slider img {
    width: 60px;
}


/*矢印 css*/

.slick-prev,
.slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: -10%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border: 1px solid #000;
    /*矢印の色*/
    height: 30px;
    width: 30px;
    border-radius: 30px;
}

.service_slider .slick-prev,
.service_slider .slick-next {
    top: -20%;
}

.slick-prev {
    right: 3.5%;
}

.slick-prev::before {
    content: '←';
    color: #000;
}

.slick-next {
    right: 0;
}

.slick-next::before {
    content: '→';
    color: #000;
}

.slick-prev::before,
.slick-next::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}


/* プログレスバー css*/

.slick-dots {
    display: flex;
    justify-content: center;
    margin: 35px 0 0 0;
    padding: 0;
    list-style: none;
}

.slick-dots li {
    flex: 1;
    height: 2px;
    background: #d6d6d6;
    position: relative;
    overflow: hidden;
}

.slick-dots li.slick-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #000000;
    animation: progressBar 4s linear forwards;
    width: 100%;
}

.slick-dots li button {
    display: none;
}

@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}


/* works css */


/* popup css */

.popup_head {
    margin-bottom: 40px;
}

.popup_body {
    margin-bottom: 40px;
}

.popup {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup.view {
    display: flex;
}

.popup_inner {
    position: relative;
    width: 40%;
    max-height: 80vh;
    padding: 50px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .25);
    color: #000;
}

.popup_item {
    display: inline-block;
    background: #fff;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    right: 0;
    bottom: 0;
    position: absolute;
    width: 100px;
    height: initial;
}

.close.btn {
    border: none;
}

.txt_link .btn {
    border: none;
    padding: 0;
}

.close_icon {
    margin-left: 1px;
}


/* partner css */

#partner .popup_foot p:nth-child(1) {
    border-bottom: 1px solid #a7a7a7;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

#partner .popup_body .two_layout .lt_cont,
#partner .popup_body .two_layout .rt_cont {
    width: 47%;
}

#partner .popup_body li {
    margin-bottom: 15px;
}

#partner .popup_body img {
    width: 100%;
}

#partner .popup_body .link_icon .btn:before {
    right: initial;
    left: 125px;
}

#partner .partner_item ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

#partner .partner_item .two_layout .rt_cont {
    display: flex;
    justify-content: center;
}

#partner .ud_line .btn {
    width: 100%;
}

#partner .partner_item .open.two_layout .lt_cont {
    width: 50%;
}

#partner .partner_item .open.two_layout .rt_cont {
    width: 49%;
}

#partner .partner_item {
    margin-bottom: 30px;
    width: 48%;
}

#partner .partner_item .open.two_layout .lt_cont img {
    width: 25px;
}

#partner .partner_item .txt_md {
    line-height: 30px;
}

#partner .partner_item .open.two_layout .lt_cont li:last-child img {
    width: 15px;
}

#partner .partner_item:nth-child(5),
#partner .partner_item:nth-child(6) {
    margin-bottom: 0;
}

#partner .partner_item .popup ul {
    justify-content: center;
}

.ud_line.txt_link a {
    position: relative;
}

.ud_line.txt_link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    transition: all .3s;
    transform: scale(0, 1);
    background: #4a05a8;
    transform-origin: left bottom;
    width: 66%;
}

.ud_line.txt_link a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}


/* strength css */

.cont_head .two_layout .lt_cont {
    width: 40%;
}

.cont_head .two_layout .rt_cont {
    width: 58%;
}

.cont_head .two_layout p {
    margin-top: 0;
}

#strength .three_layout .lt_cont,
#strength .three_layout .ctr_cont {
    border-right: 1px solid #000;
    padding-right: 2%;
}

#strength .cont_body {
    height: 240px;
}

#strength .cont_body ul {
    width: 32%;
}

#strength .cont_body ul .txt_md.flex {
    line-height: 32px;
}

#strength ul {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

#strength ul li:nth-child(4) {
    text-align: end;
}

#strength ul img {
    width: 52px;
}


/* contact css */

#contact .text_loop {
    animation: loopText 200s linear infinite;
}

#contact .txt_lg {
    line-height: 55px;
}

#contact .cont_head h2 {
    margin-bottom: 40px;
}


/* footer css */

#footer,
#footer a {
    color: #fff;
}

#footer .two_layout .lt_cont {
    width: 40%;
}

#footer .two_layout .lt_cont img {
    width: 150px;
}

#footer .two_layout .lt_cont li:nth-child(1) {
    margin-bottom: 30px;
}

#footer .two_layout .lt_cont li:nth-child(2) {
    margin-bottom: 20px;
}

#footer .two_layout .rt_cont {
    width: 58%;
}

#footer .two_layout .rt_cont li {
    width: 30%;
    margin-bottom: 32px;
}

#footer .two_layout .rt_cont li a {
    font-size: 1.4rem;
}

#footer .cont_foot {
    margin-top: 20px;
}

.page_top img {
    margin-right: 10px;
    width: 20px;
}

#footer .ud_line li::after,
#gnavi_menu .ud_line li::after {
    background: #fff;
}

#footer .gnavi_lc li a,
#gnavi_menu .gnavi_lc li a {
    padding: 20px 60px 13px 60px;
}

#gnavi_menu .link_icon a:before {
    top: 46%;
}


/* ===================== */


/* モバイル用スタイル */


/* ===================== */


/* 必要に応じて、モバイル用のメディアクエリを追加 */

@media (max-width: 1400px) {
    .video-wrapper .catch-copy {
        width: 80%;
    }
}

@media (max-width: 1200px) {
    #loading_img img {
        width: 300px;
    }
    #fv .catch-copy img {
        width: 300px;
    }
    .cont_inner {
        max-width: 100%;
        padding: 0 5%;
    }
    .slick-prev,
    .slick-next {
        top: -8%;
    }
    .slick-prev {
        right: 4%;
    }
    #partner .partner_item {
        width: 48%;
    }
    #partner .partner_item .two_layout .rt_cont img {
        object-fit: cover;
        object-position: center;
    }
    .popup_body.two_layout .lt_cont,
    .popup_body.two_layout .rt_cont {
        width: 100%;
    }
    .popup_head h4,
    .popup_head h5 {
        width: 100%;
    }
    .popup_head h4 {
        margin-bottom: 10px;
    }
    #fv .catch-copy p {
        position: initial;
    }
}

@media (max-width: 1100px) {
    .service_slider .slick-slide {
        margin: 0 0 0 50px;
    }
    #strength ul img {
        width: 35px;
    }
}

@media (max-width: 1000px) {}

@media (max-width: 800px) {
    #progress-cont .progress-img {
        right: 15px;
        bottom: 10px;
        width: 45px;
    }
    #progress-cont {
        right: 25px;
        bottom: 28px;
    }
    #progress-cont a {
        font-size: 1.1rem;
    }
    .pc_br {
        display: none;
    }
    .sp_br {
        display: block;
    }
    body {
        font-size: 1.4rem;
        line-height: 24px;
    }
    a {
        font-size: 1.4rem;
    }
    .txt_xsm {
        font-size: 1.1rem;
    }
    .txt_sm {
        font-size: 1.3rem;
    }
    .txt_md {
        font-size: 1.5rem;
    }
    .txt_lg {
        font-size: 2rem;
        line-height: 35px;
    }
    .txt_xlg {
        font-size: 2.4rem;
        line-height: 48px;
    }
    .txt_xsm,
    .txt_sm,
    .txt_base {
        font-weight: 500;
    }
    .txt_md,
    .txt_lg,
    .txt_xlg {
        font-weight: 600;
    }
    #fv .catch-copy p {
        font-size: 1.8rem;
        line-height: 32px;
    }
    .ud_line li::after {
        bottom: -5px;
    }
    .lt_line {
        padding-left: 15px;
    }
    .cont_head h2 {
        margin-bottom: 10px;
    }
    #header.scrolled .ud_line li::after {
        bottom: -10px;
    }
    #header {
        padding: 10px 2%;
        position: fixed;
        width: 96%;
    }
    #header .hd_logo img {
        width: 120px;
    }
    .gnavi_pc {
        display: none;
    }
    .two_layout .lt_cont,
    .two_layout .rt_cont,
    #partner .partner_item .open.two_layout .lt_cont,
    #partner .partner_item .open.two_layout .rt_cont,
    .cont_head .two_layout .lt_cont,
    .cont_head .two_layout .rt_cont,
    .three_layout .lt_cont,
    .three_layout .rt_cont,
    .three_layout .ctr_cont,
    #footer .two_layout .lt_cont,
    #footer .two_layout .rt_cont {
        width: 100%;
    }
    #header #gnavi_menu .gnavi_menu_02 a,
    #footer .two_layout .rt_cont li a {
        font-size: 1.3rem;
    }
    .cont_head {
        margin-bottom: 40px;
    }
    .cont_foot {
        margin-top: 50px;
    }
    #gnavi_menu .flex .flex li {
        width: 48%;
    }
    #gnavi_menu .two_layout .lt_cont {
        width: 100%;
        padding: 0 5%;
        position: relative;
        z-index: 2;
        margin-right: 0;
    }
    #gnavi_menu.panelactive .rt_cont {
        display: none;
    }
    .gnavi_menu_01 {
        padding: 40px 0 0px 0;
    }
    .gnavi_menu_01 li {
        margin-bottom: 15px;
    }
    .gnavi_menu_02 {
        padding: 30px 0 20px 0;
    }
    .gnavi_menu_02 li {
        width: 100% !important;
        margin-bottom: 15px;
    }
    .gnavi_menu_02 li:nth-child(3) {
        margin-bottom: 15px;
    }
    .gnavi_menu_03 {
        padding: 30px 0 0 0;
    }
    .gnavi_menu_03 li:first-child {
        margin-bottom: 15px;
    }
    #header .gnavi_menu_03 img {
        width: 120px;
    }
    #header #gnavi_menu .btn {
        margin-top: 15px;
        height: 50px;
        line-height: 50px;
    }
    #header #gnavi_menu .gnavi_menu_03 .link_icon a:before {
        top: 50%;
    }
    #about.cont_bg {
        padding: 100px 0;
    }
    #about .cont_body span {
        line-height: 40px;
    }
    #about .cont_head,
    #contact .cont_head {
        margin-bottom: 15px;
    }
    #about .cont_head h2,
    #contact .cont_head h2 {
        margin-bottom: 30px;
    }
    #about .cont_foot,
    #contact .cont_foot {
        margin-top: 40px;
    }
    .service_slider .slick-slide {
        margin: 0 0 0 70px;
    }
    #service .cont_head .txt_xlg {
        font-size: 2.1rem;
        line-height: 40px;
    }
    .slider .slick-slide {
        margin-left: 70px;
    }
    .slider h4 {
        margin: 15px 0;
    }
    .slick-dots {
        margin: 10px auto 0 auto;
        width: 80%;
    }
    .service_slider .slick-dots {
        margin: 30px auto 0 auto;
    }
    .slick-prev,
    .slick-next {
        top: initial;
        bottom: -15px;
    }
    .service_slider .slick-prev,
    .service_slider .slick-next {
        top: initial;
        bottom: -15px;
    }
    #service .service_slider img {
        width: 50px;
    }
    .slick-prev {
        right: initial !important;
        left: 0;
    }
    .openbtn {
        right: 0;
        top: 1px;
    }
    #partner .partner_item .txt_md {
        line-height: 22px;
    }
    #partner .partner_item .open.two_layout {
        flex-direction: column-reverse;
    }
    #partner .partner_item .two_layout .rt_cont img {
        width: 100%;
    }
    #partner .partner_item .open.two_layout .rt_cont {
        margin-bottom: 10px;
    }
    #partner .partner_item .open li {
        margin-bottom: 5px;
    }
    #partner .partner_item .open li:last-child {
        margin-bottom: 0;
    }
    .popup_head h4 {
        margin-bottom: 0;
    }
    .popup_head {
        margin-bottom: 27px;
    }
    .popup_body {
        margin-bottom: 30px;
    }
    .popup_inner {
        width: 60%;
        padding: 50px 5%;
    }
    #partner .partner_item .popup ul {
        width: 100%;
    }
    .popup_body.two_layout .lt_cont {
        margin-bottom: 15px;
    }
    #partner .ud_line .btn {
        height: auto;
        line-height: 1;
    }
    #partner .popup_body li {
        margin-bottom: 20px;
    }
    #partner .popup_body li:nth-child(1),
    #partner .popup_body li:nth-child(2) {
        margin-bottom: 10px;
    }
    #partner .popup_body li:last-child {
        margin-bottom: 0;
    }
    .btm_line {
        padding-bottom: 20px;
    }
    #partner .partner_item {
        margin-bottom: 25px;
    }
    #partner .partner_item .open.two_layout .lt_cont img {
        width: 20px;
    }
    #strength .cont_body ul {
        width: 100%;
    }
    #strength .cont_head .two_layout .rt_cont {
        margin-top: 20px;
    }
    #strength ul {
        flex-direction: initial;
        height: initial;
        flex-wrap: wrap;
    }
    #strength ul li {
        width: 100%;
        margin-bottom: 10px;
    }
    #strength ul li:last-child {
        margin-bottom: 0;
    }
    #strength .three_layout .lt_cont,
    #strength .three_layout .ctr_cont,
    #strength .three_layout .rt_cont {
        border-right: initial;
        padding-right: initial;
        border-bottom: 1px solid #000;
    }
    #strength .three_layout .lt_cont {
        padding-bottom: 20px;
    }
    #strength .three_layout .ctr_cont,
    #strength .three_layout .rt_cont {
        padding: 20px 0;
    }
    #strength .cont_body {
        height: initial;
    }
    #contact.cont_bg {
        padding: 100px 0;
    }
    #contact .txt_lg {
        line-height: 40px;
    }
    #contact .cont_inner {
        padding: 0 3%;
    }
    #footer .two_layout .rt_cont li {
        width: 48%;
        margin-bottom: 20px;
    }
    #footer .two_layout .rt_cont li:last-child {
        margin-bottom: 0;
    }
    #footer .cont_foot {
        flex-direction: column-reverse;
        align-items: flex-end;
    }
    #footer .two_layout .lt_cont img {
        width: 120px;
    }
    #footer .two_layout .lt_cont li:nth-child(1),
    #footer .two_layout .lt_cont li:nth-child(2) {
        margin-bottom: 10px;
    }
    #footer .two_layout .lt_cont {
        border-bottom: 1px solid #fff;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    #footer .cont_foot {
        margin-top: 30px;
    }
    .page_top {
        margin-bottom: 15px;
    }
    .link_icon a:before {
        width: 13px;
        height: 13px;
    }
    #footer .rt_cont .link_icon a:before,
    #gnavi_menu .link_icon a:before {
        top: 36%;
    }
}

@media (max-width: 600px) {
    .service_slider .slick-slide {
        margin: 0 0 0 60px;
    }
    .slider .slick-slide {
        margin-left: 60px;
    }
    .popup_inner {
        width: 80%;
        padding: 50px 5%;
    }
}

@media (max-width: 480px) {
    #fv .catch-copy img {
        width: 250px;
    }
    .service_slider .slick-slide {
        margin: 0 0 0 40px;
    }
    .slider .slick-slide {
        margin-left: 40px;
    }
    .slider .link_icon .btn:before {
        right: 4%;
    }
    .slider p,
    .service_slider p {
        font-size: 1.3rem;
    }
    .slick-dots {
        width: 70%;
    }
}

@media (max-width: 420px) {
    #footer .two_layout .rt_cont li {
        width: 100%;
        margin-bottom: 7px;
    }
    #footer .ud_line li::after {
        bottom: 0px;
    }
}

@media (max-width: 380px) {
    .slider .slick-slide {
        margin-left: 35px;
    }
    .service_slider .slick-slide {
        margin: 0 0 0 35px;
    }
}
