/*メディア下層のカスタム投稿ページ（LP）に反映させる基本スタイル*/

/*----------------------------------
共通スタイル
-----------------------------------*/
:root{
    --color-black: #111;
    --color-white: #fff;
    --color-orange: #E6731E;
    --color-blue: #006EE6;
    --color-red: #D80000;
    --color-pink: #FF5F99;
    --color-dark-gray: #A0A0A0;
    --color-light-orange: #fff8e8;
    --bg-gray: #f1f4f7;
    --font-m-plus: "M PLUS 1p", sans-serif;
    --font-poppins: "Poppins", sans-serif;
}

.bg-gra{
    background: #F6B200;
    background: linear-gradient(90deg, rgba(246, 178, 0, 1) 0%, rgba(240, 112, 2, 1) 100%);
}

.text-orange{
    color: var(--color-orange);
}

.text-blue{
    color: var(--color-blue);
}

.text-white{
    color: var(--color-white);
}

.lp__inner{
    max-width: 1300px;
    margin-inline: auto;
    padding-inline: 50px;
}

.lp__inner_articles {
	max-width: 1100px;
}

.is-tab{
    display: none;
}

.inbl {
	display: inline-block;
}

/*グラデーションボタンのホバー設定（キラッと光る感じの）*/
a.bg-gra{
    overflow: hidden;
    /* background: linear-gradient(90deg, #F6B200 0%, #F07002 100%); */
}

a.blue-gra{
    overflow: hidden;
    /* background: linear-gradient(90deg, #006EE6 0%, #1c91e2 100%); */
}

a.bg-gra:hover,
a.blue-gra:hover{
    opacity: 1;
}

a.bg-gra::after,
a.blue-gra::after{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    transform: skewX(-25deg);
    transition: left 0.4s ease;
    pointer-events: none;
}

a.bg-gra::after{
    background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.2) 100%);
}

a.blue-gra::after{
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
}

a.bg-gra:hover::after,
a.blue-gra:hover::after {
    left: 130%;
}

@media(max-width:1280px) {
    .is-tab{
        display: block;
    }
}

@media(max-width:767px) {
    .lp__inner{
        padding-inline: 5vw;
    }

    .is-pc{
        display: none;
    }
}

/*----------------------------------
header
-----------------------------------*/
#header.media-header{
    height: 90px;
}

.media-header .header-logo {
    width: 310px;
}

.header-logo img{
    width: 100%;
    aspect-ratio: 310/77;
}

.header-list-box{
    flex: 1;
    width: auto;
}

.header-list-box{
    padding-right: 19px;
}

.media-header__nav{
    display: flex;
    align-items: center;
    line-height: 1;
}

.media-header__nav-tel{
    display: flex;
    flex-direction: column;
    color: var(--color-blue);
    font-size: 25px;
    margin-right: 35px;
    padding-left: 25px;
    padding-bottom: 0.2em;
    position: relative;
}

.media-header__nav-tel::before {
    content: "";
    background-image: url(../common/img/icon-tel-blue.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 0.6em;
    aspect-ratio: 15/20;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0.1em;
}

.media-header__nav-tel .--num a{
    color: inherit;
    font-family: var(--font-m-plus);
    font-weight: 800;
    letter-spacing: 0.035em;
}

.media-header__nav-tel .--text{
    font-size: max(11px, 0.45em);
    font-weight: bold;
    letter-spacing: 0.1em;
    padding-top: 0.3em;
}

.media-header__nav-btn.--download{
    margin-right: 10px;
}

.media-header__nav-btn a{
    display: block;
    border-radius: calc(1px / 0);
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.02em;
    text-align: center;
    /* width: 227px; */
    height: 60px;
    line-height: 60px;
    position: relative;
}

.media-header__nav-btn a::before{
    content: "";
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 0.5em;
    aspect-ratio: 8/12;
    display: inline-block;
    position: absolute;
    right: 0.9em;
    top: 50%;
    transform: translateY(-50%);
}

.media-header__nav-btn.--download a{
    color: var(--color-white);
    width: 250px;
}

.media-header__nav-btn.--contact a{
    width: 227px;
}

.media-header__nav-btn.--download a::before{
    background-image: url(../common/img/icon-arrow-right-white.svg);
}

.media-header__nav-btn.--contact a{
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    background-color: var(--color-white);
}

.media-header__nav-btn.--contact a:hover{
    color: var(--color-white);
    background-color: var(--color-blue);
    opacity: 1;
}

.media-header__nav-btn.--contact a::before{
    background-image: url(../common/img/icon-arrow-right-blue.svg);
}

.media-header__nav-btn.--contact a:hover:before{
    background-image: url(../common/img/icon-arrow-right-white.svg);
}

.header-list-box .is-pc{
    display: contents;
}

@media(max-width:1280px) {
    #header.media-header {
        height: 70px;
    }

    .media-header .header-logo {
        width: 280px;
        height: 70px;
        position: static;
    }

    .media-header__nav-btn a {
        font-size: 13px;
        /* width: 190px; */
        height: 44px;
        line-height: 44px;
        position: relative;
    }

    .media-header__nav-btn.--download a{
        width: 200px;
    }

    .media-header__nav-btn.--contact a{
        width: 188px;
    }

    .media-header__nav-tel {
        font-size: 22px;
        margin-right: 25px;
        padding-left: 16px;
    }

    .media-header__nav-tel::before {
        width: 0.5em;
        top: 0.35em;
    }
}

@media(max-width:1024px) {
    .header-list-box {
        padding-right: 10px;
    }

    .media-header__nav-btn.--download a{
        width: 190px;
    }

    .media-header__nav-btn.--contact a{
        width: 158px;
    }
}

@media(max-width:949px) {
    .media-header .header-logo {
        width: 220px;
}

    .media-header .header-logo a{
        display: flex;
    }

    .media-header__nav-tel {
        font-size: 19px;
        margin-right: 12px;
    }

    /* .media-header__nav-btn a {
        height: 44px;
        line-height: 44px;
    } */

    .media-header__nav-btn.--download a{
        width: 185px;
    }

    .media-header__nav-btn.--contact a{
        width: 148px;
    }

    .media-header__nav-btn a::before {
        right: 0.6em;
    }
}

@media(max-width:767px) {
    #header.media-header{
        position: static !important;
    }

    .media-header .header-logo {
        width: 269px;
    }

    .media-header .header-list-box{
        display: block;
    }

    .media-header__nav {
        justify-content: flex-end;
    }

    .header-list-box .is-pc{
        display: flex;
        justify-content: center;
        /* padding: 10px; */
        padding: 10px 5vw;
        gap: 20px;
        background-color: var(--color-white);
        filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 0px 10px);
        position: fixed;
        width: 100%;
        bottom: -100px;
        left: 0;
        z-index: 100;
        box-sizing: border-box;
		transition: bottom 0.8s ease;
    }

	.is-pc.visible {
        bottom: 0;
	}

    .media-header__nav-btn{
        flex-basis: calc((100% - 10px) / 2);
    }

    .header-list-box .is-pc a{
        font-size: 18px;
        height: 2.9em;
        line-height: 2.9em;
        width: 100%;
        /* width: 100%;
        max-width: 13.9em; */
        margin-inline: auto;
    }

    .media-header__nav-btn.--download{
        margin-right: 0;
    }

    .media-header__nav-tel {
        font-size: 25.5px;
        margin-right: 0;
    }

    .media-header .header-list-box {
        padding-right: 15px;
    }
}

@media(max-width:599px) {
.header-list-box .is-pc {
        padding: 10px;
        gap: 10px;
    }

    .header-list-box .is-pc a {
        font-size: 16px;
    }
}

@media(max-width:519px) {
    #header.media-header {
        height: 13.462vw;
    }

    .media-header .header-logo {
        width: 51.73vw;
        height: 13.462vw;
    }

    .media-header .header-list-box {
        padding-right: 2.88vw;
    }

    .media-header__nav-tel {
        font-size: 4.9vw;
        padding-left: 0.62em;
    }

    .media-header__nav-tel .--text {
        font-size: max(9px, 0.45em);
    }
}

@media(max-width:499px) {
    .header-list-box .is-pc a {
        font-size: 14px;
        letter-spacing: -0.02em;
    }
}

@media(max-width:419px) {
    .media-header__nav-btn.--download {
        flex-basis: 195px;
    }

    .media-header__nav-btn.--contact{
        flex: 1;
    }
}

@media(max-width:399px) {
    .header-list-box .is-pc {
        /* padding-inline: 5px; */
        gap: 8px;
    }

    .header-list-box .is-pc a {
        font-size: 12px;
    }

    .media-header__nav-btn.--download {
        flex-basis: 55%;
    }
}

/*----------------------------------
footer
-----------------------------------*/
.media-footer{
    background-color: var(--bg-gray);
    border-bottom: 2px solid #BBE8F2;
    height: 100%;
    padding-top: 220px;
}

.media-footer__contents{
    display: flex;
    gap: 35px;
}

.media-footer__logo{
    flex-basis: 35em;
    height: 35em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5.8em;
    aspect-ratio: 1/1;
    background-color: var(--color-white);
    border-radius: 50%;
    font-size: 10px;
    padding-bottom: 2.7em;
}

.media-footer__logo img{
    width: 21.3em;
    aspect-ratio: 213/153;
}

.media-footer__logo-info{
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
}

.media-footer__nav-wrap{
    flex: 1;
    margin-top: 10px;
}

.media-footer__nav{
    display: flex;
    justify-content: flex-end;
    gap: 60px;
}

.media-footer__nav-list > *+*{
    margin-top: 2em;
}

.media-footer__nav-item{
    font-size: 20px;
}

.media-footer__nav-item a{
    color: var(--color-black);
    /* font-size: 20px; */
    font-weight: bold;
    letter-spacing: 0.02em;
    padding-left: 1.3em;
    position: relative;
    transition: all 0.3s !important;
}

.media-footer__nav-item a:hover{
    color: var(--color-orange);
    opacity: 1;
    transition: all 0.3s !important;
}

.media-footer__nav-item a::before{
    content: "";
    display: block;
    background-color: var(--color-orange);
    border-radius: 50%;
    width: 0.6em;
    aspect-ratio: 1/1;
    position: absolute;
    left: 0;
    top: 0.55lh;
    transform: translateY(-50%);
}

.media-footer__copyright {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 160px;
}

.media-footer__copyright p {
    font-size: 18px;
    font-weight: 500;
    /* color: #fff; */
    letter-spacing: 0.04em;
}

@media(max-width:1280px) {
    .media-footer {
        padding-top: 150px;
    }

    .media-footer__nav {
        gap: 50px;
    }

    .media-footer__copyright {
        margin-top: 120px;
    }
}

@media(max-width:1194px) {
    .media-footer__logo {
        flex-basis: min(27.3vw, 350px);
        height: min(27.3vw, 350px);
        gap: 5em;
    }

    .media-footer__nav {
        gap: min(2.9vw, 30px);
    }

    .media-footer__nav-item {
        font-size: 18px;
    }
}

@media(max-width:1024px) {
    .media-footer {
        padding-top: 100px;
    }

    .media-footer__contents {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .media-footer__logo {
        width: 30em;
        height: auto;
        aspect-ratio: 1/1;
        gap: 4em;
    }

    .media-footer__nav {
        gap: 60px;
    }

    .media-footer__copyright {
        height: 60px;
        margin-top: 80px;
    }
}

@media(max-width:767px) {
    .media-footer {
        padding-top: 80px;
    }

    .media-footer__contents {
        gap: 40px;
    }

    .media-footer__logo {
        font-size: 9px;
    }

    .media-footer__logo-info {
        font-size: 1.3em;
    }

    .media-footer__nav {
        gap: min(3.3vw, 60px);
    }

    .media-footer__nav-item {
        font-size: 16px;
    }

    .media-footer__copyright {
        height: 48px;
        margin-top: 40px;
    }

    .media-footer__copyright p {
        font-size: 14px;
    }
}

@media(max-width:599px) {
    .media-footer {
        padding-top: 60px;
    }

    .media-footer__logo {
        font-size: 8px;
    }

    .media-footer__logo-info {
        font-size: 1.4em;
    }

    .media-footer__nav{
        flex-wrap: wrap;
        gap: 60px 30px;
        max-width: 400px;
    }

    .media-footer__nav-list.--01{
        flex-basis: calc((100% - 30px) / 2);
    }

    .media-footer__nav-list.--02{
        flex-basis: calc((100% - 30px) / 2);
    }

    .media-footer__nav-list.--03{
        flex-basis: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }

    .media-footer__nav-list.--03 li{
        flex-basis: calc((100% - 30px) / 2);
    }

    .media-footer__nav-list.--03 > *+* {
        margin-top: 0;
    }
}

@media(max-width:449px) {
    .media-footer__logo {
        font-size: 7px;
        gap: 3em;
    }

    .media-footer__logo-info {
        font-size: 1.5em;
    }

    .media-footer__nav-list.--01,
    .media-footer__nav-list.--02{
        flex-basis: 100%;
    }

    .media-footer__nav {
        gap: 24px;
    }

    .media-footer__nav-list > *+* {
        margin-top: 24px;
    }

    .media-footer__nav-list.--03 {
        gap: 24px;
    }

    .media-footer__nav-list.--03 li {
        flex-basis: 100%;
    }
}





/* 

.footer-area.footer-media{
    background-color: var(--bg-gray);
}

.footer-media .footer-area-flex-left-box-img {
    width: 180px;
    height: auto;
    aspect-ratio: 213/153;
}

.footer-media a.footer-area-flex-left-box-tel {
    font-size: 26px;
    margin: 8px 0 6px;
}

.footer-media a.footer-area-flex-left-box-tel::before {
    height: auto;
    aspect-ratio: 18/24;
    width: 0.5em;
}

.footer-media .footer-area-flex-right-pc{
    width: 100%;
}

.footer-media .footer-area-flex-right {
    justify-content: center;
	align-items: center;
    gap: 100px;
}

.footer-media .footer-area-flex-left-box{
    width: 300px;
    height: auto;
    aspect-ratio: 1/1;
    background-color: var(--color-white);
    border-radius: 50%;
}

.footer-media .footer-area-flex-right-box-title::before{
    background-color: var(--color-orange);
}

.footer-media .footer-area-list li a::before{
    background-color: var(--color-orange);
}

.footer-media .footer-area-list-left {
	display: flex;
	justify-content: center;
	align-items: center;
	gap:10px;
}

.footer-media .footer-area-list-left li + li {
	margin-top:0;
}

.footer-area-flex-left {
	gap: 25px 0!important;
}

.footer-media .inner {
	margin-top: 4em;
}

.footer-media .footer-area-copyright{
    background-color: var(--color-orange);
}

@media(max-width:1280px) {
    .footer-media.footer-area {
        padding-top: 40px;
    }
}

@media(max-width:1194px) {
    .footer-media.footer-area {
        padding-top: 10px;
    }

    .footer-media .footer-area-flex-left-box-img {
        width: max(120px, 15vw);
    }

    .footer-media a.footer-area-flex-left-box-tel {
        font-size: max(18px, 2.3vw);
    }

    .footer-media .footer-area-flex-left-box-info {
        font-size: max(9px, 1vw);
    }

    .footer-media .footer-area-flex-right {
        gap: 4vw;
    }

    .footer-media .footer-area-flex-left-box {
        width: max(190px, 25vw);
    }
}


@media(min-width:767px) and (max-width:1024px) {
	.footer-media .footer-area-list-left {
		display: block;
	}
}

@media(max-width:767px) {
    .footer-media .footer-area-flex-right {
        gap: 2vw;
    }

    .footer-media .footer-area-flex-right {
        gap: 3vw;
    }

    .footer-media .footer-area-flex-right-box {
        width: 180px;
    }
}

@media(max-width:649px) {
    .footer-media .inner {
        margin-top: 0;
    }

    .footer-media .footer-area-flex-left-box {
        width: 250px;
        height: 250px;
    }

    .footer-media .footer-area-flex-left-box-img {
        width: 160px;
    }

    .footer-media a.footer-area-flex-left-box-tel {
        font-size: 22px;
    }

    .footer-media .footer-area-flex-left-box-info {
        font-size: 11px;
    }

    .footer-media .footer-area-flex-right {
        gap: 40px;
    }

    .footer-media .footer-area-flex-right-box {
        width: auto;
        margin-left: 0;
    }
}

@media(max-width:450px) {
    .footer-media .footer-area-flex-right-box {
        width: 100%;
    }

    .footer-media .footer-area-flex-right {
        gap: 0;
    }

    .footer-media .footer-area-flex-left {
        margin-bottom: 40px;
        margin-top: 20px;
    }
}

@media(max-width:399px) {
    .footer-media .footer-area-flex-left-box {
        width: 220px;
        height: 220px;
    }

    .footer-media .footer-area-flex-left-box-img {
        width: 130px;
    }

    .footer-media a.footer-area-flex-left-box-tel {
        font-size: 20px;
        margin: 8px 0 5px;
    }
} */

/*----------------------------------
記事一覧
-----------------------------------*/
.lp__article{
    display: flex;
    gap: 50px;
}

.lp__article.-others{
    padding-bottom: 40px;
}

.lp__articles-list article{
    position: relative;
}

.lp__articles-list > *+*{
    margin-top: 30px;
}

.lp__article.--others{
	padding-bottom: 40px !important;
}

.lp__article-thumbnail{
    flex-basis: 250px;
}

.lp__article-thumbnail img{
    width: 100%;
    vertical-align: middle;
}

.lp__article-body{
    flex: 1;
}

.lp__article-title{
    color: #111111;
    font-size: 20px;
    font-weight: 600;
}

.lp__article-published_at{
	color: #111111;
    display: inline-block;
    font-size: 14px;
    padding-top: 8px;
    opacity: 0.8;
}

.lp__article-text{
    margin-top: 0.7em;
}

.lp__article-view-more{
    padding-top: 0.8em;
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.lp__article-tags{
    position: absolute;
    bottom: 41px;
    left: 300px;
}

.lp__article-tags a{
    display: inline-block;
    border: 1px solid #001A5F;
    color: #001A5F;
    font-size: 12px;
    padding: 2px 15px;
}

.lp__article-tags i {
    margin-right: 5px;
}

@media(max-width:767px) {
    .lp__article{
        flex-direction: column;
        gap: 16px;
    }

    .lp__articles-list > *+* {
        margin-top: 40px;
    }

    .lp__article-thumbnail {
        flex-basis: auto;
    }

    .lp__article-tags {
        bottom: 39px;
        left: 0;
    }
}

@media(max-width:499px) {
    .lp__article {
        gap: 10px;
    }

    .lp__article-title {
        font-size: 18px;
    }

    .lp__article-view-more{
        padding-top: 1em;
    }
}
