@charset "utf-8";

/* outline
------------------------------*/
.l-footer-sp{
    display: none;
}
.l-footer {
    background-color: #1BA1E6;
    position: relative;
    color: white;
    padding: 98px 0 20px;
}
.l-footer a{
    width: max-content;
    background: linear-gradient(currentColor 0 0) 0 100%/var(--d, 0) 2px no-repeat, linear-gradient(currentColor 0 0) 100% 100%/var(--d, 0) 2px no-repeat;
    transition: 0.2s;
}
.l-footer a:hover{
    text-decoration: none;
    color: #fff;
    --d: 51%;
}
.l-footer * {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #FFFFFF;
}
.l-footer img{
    width: 100%;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-areas:
        "company-info links"
        "policies policies"
        "copyright copyright";
    grid-template-columns: 1fr 2fr;
    gap: 23px;
}
.footer-company-info {
    grid-area: company-info;
    text-align: left;
}
.footer-company-info .footer-logo-wrap {
    width: 486px;
    margin-bottom: 10px;
}
.link-collection {
   width: 380px;
   margin-left: auto;
   display: grid;
   grid-template-areas:
      "services company"
      "trial contact";
   grid-template-columns: 1fr 1fr;
   gap: 20px;
   color: white;
   text-align: left;
}
.collection__ttl{
    margin-bottom: 16px;
}
.collection__ttl a{
    font-size: 24px;
}
.collection__list{
    width: 120px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-nav{
    width: 485px;
    margin: auto;
    padding-top: 150px;
    display: flex;
    justify-content: space-between;
    grid-area: policies;
}
.copy-right{
    grid-area: copyright;
    text-align: center;
}

@media screen and (max-width: 768px){
    .l-footer{
        display: none;
    }
    .l-footer.l-footer-sp{
        display: block;
        padding: 12vw 0 4vw;
    }
    .l-footer.l-footer-sp * {
        font-size: 2.66vw;
    }
    .l-footer-sp .footer-logo-wrap{
        width: 81vw;
    }
    .l-footer-sp  .footer-inner{
        max-width: 83vw;
        grid-template-areas:
            "links links"
            "linksunder policies"
            "company-info company-info"
            "copyright copyright";
        grid-template-columns: 1fr;
    }
    .link-collection{
        display: flex;
        flex-wrap: wrap;
        width: 36vw;
        margin-left: auto;
        grid-area: links;
    }
    .l-footer-sp  .collection__list{
        width: 19vw;
        gap: 1vw;
    }
    .l-footer-sp .collection__ttl a{
        font-size: 3.2vw;
        font-weight: 500;
    }
    .link-collection-under{
        width: 41vw;
        grid-area:linksunder;
    }
    .footer-nav{
        width: 36vw;
        padding: 0;
        flex-wrap: wrap;
        gap: 1vw;
    }
}

.cookie1 {
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: #093349;
	padding: 15px;
	width: 100% !important;
	z-index: 10001;
	box-sizing: border-box;
}
.cookie_inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}
.cookie_text {
	color: #FFFFFF;
	line-height: 1.5;
	font-size: 14px;
	display:block;
}
.cookie_text a {
	display:inline !important;
}
.cookie_link {
	color: #FFFFFF;
	font-weight: bold;
}
.cookie_btn {
	height: 38px;
	width: 80%;
	font-size: 14px;
	background: #fff;
	color:#333;
	border-radius: 5px;
	cursor: pointer;
	box-sizing: border-box;
	align-items: center;
	margin:12px auto;
}
@media (min-width: 768px) {
.cookie1 {
	padding: 15px;
	width: 100% !important;
	z-index: 10001;
}
.cookie_inner {
	flex-direction: row;
	justify-content: space-between;
	max-width: 920px;
}
.cookie_btn {
	height: 40px;
	width: 100px;
	right: 320px;
}
}
@media screen and (max-width: 480px) {
.cookie {
	padding: 9px;
}
.cookie_text {
	font-size: 12px;
}
.cookie_button {
	height: 30px;
	width:90%;
	margin: 14px auto;
}
}
.hidden_cookie {
	opacity: 0;
	visibility: hidden;
	display:none;
}