@charset "utf-8";

body {
    position: relative;
	font-family: 'Noto Sans JP', sans-serif;
}
img {
    width: 100%;
    max-width: 100%;
}
.fixed {
    position: fixed;
    width: 100%;
    height: 100svh;
    height: 100vh;
}

.text_b01 {
	display: inline-block;
}


/*ヘッダー_______________________________________*/
.block_header {
    position: fixed;
    width: 100%;
    z-index: 99999;
    top: 0;
    left: 0;
    transition: .3s;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: bold;
}
.block_header.on {
    background-color: rgba(200, 200, 200, .8);
}
.block_header .header_inner {
    width: 1400px;
    max-width: 100%;
	height:90px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s;
}
.block_header .header_inner .header_logo{
  width:360px;
}
@media screen and (max-width:900px) {
.block_header .header_inner .header_logo{
  width:260px;
}
}


/*ヘッダー メニュー_______________________________________*/
.box_menu {}
.box_menu ul {
    display: flex;
    align-items: center;
	font-size:13px;
}
.box_menu ul li {
    margin-right: 0;

}
.box_menu ul li a {
    display: block;
    width: fit-content;
    padding: 0 15px;
	color:#fff;
	letter-spacing: .1em;
	position: relative;
}
.box_menu ul li a::before {
   	content:"";
	display: block;
	position: absolute;
  	background-color:#E60000;
	bottom:-5px;
	left:15px;
	transform:scale(0,1) ;
	transform-origin: center right ;
	width:calc(100% - 30px);
	height:2px;
	transition: .3s transform;
}
.box_menu ul li:hover a::before {
	transform-origin: center left ;
	transform: scale(1,1) ;
}
/*#service .box_menu ul li .service::before,
#company .box_menu ul li .company::before,
#privcy .box_menu ul li .privcy::before,
#contact .box_menu ul li .contact::before {
	transform-origin: center left ;
	transform: scale(1,1) ;
}
*/
.box_menu ul .sns {
    display: flex;
    align-items: center;
}
.box_menu ul .sns a {
    width: 30px;
    height: 30px;
    padding: 0;
}
.box_menu ul .sns a:not(:first-of-type) {
    margin-left: 10px;
}
.btn_menu {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 10;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
}
.box_menu .btn_menu {
    display: none;
    height: auto;
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 27px 0;
    background-color: transparent;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}
.box_menu .btn_menu .dec01 {
    position: relative;
}
.box_menu .btn_menu .dec01::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #FFD900;
    border-radius: 2px;
    top: 0;
    left: -1em;
    width: 4px;
    height: 18px;
    transform: rotate(45deg);
}
.box_menu .btn_menu .dec01::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #FFD900;
    border-radius: 2px;
    top: 0;
    left: -1em;
    width: 4px;
    height: 18px;
    transform: rotate(-45deg);
}
.btn_menu .border00 {
    display: block;
    width: 28px;
    height: 1px;
    background-color: #fff;
    transform-origin: center;
    transition: .1s;
    position: relative;
	transform-origin: left center;
}
.btn_menu .border02 {
    margin-top: 10px;
}
.btn_menu.open .border01 {
    transform: rotate(23deg);
}
.btn_menu.open .border02 {
    transform: rotate(-23deg);
}
.btn_tel_sp {
    display: none;
    width: 59px;
    height: 65px;
    position: relative;
    z-index: 10;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}
@media screen and (max-width:768px) {
    .block_header .header_inner {
		height: 50px;
    }
    .block_header .header_inner,
	.block_header.on .header_inner {
        background-color: rgba(0, 0, 0, 0);
    }
    .box_menu {
        position: absolute;
        top: 0;
        left: 0;
        height: 100svh;
        height: 100vh;
        width: 100%;
        transform: translateX(100%);
        overflow: hidden;
        transition: .3s;
        opacity: 0;

    }
    .box_menu.open {
        transform: translateX(0);
        opacity: 1;
    }
    .box_menu ul {
		width:60%;
		margin-left:auto;
        height: 100%;
        justify-content: center;
        flex-flow: column;
		background-color:#E60000;
    }
    .box_menu ul li {
        width: calc(100% - 40px);
        margin: 0 0 40px 40px;
    }
	.box_menu ul li a::before {
  	background-color:#fff;
}
    .box_menu ul li:last-of-type {
	position: relative;
	}
    .box_menu ul li:last-of-type::after{
	content:"";
	position: absolute;
	display: block;
  	background-color:#fff;
	width:32px;
	height:1px;
	bottom:-55px;
	left:15px;
	}
    .box_menu ul .sns {
        justify-content: center;
    }
    .box_menu ul .sns a {
        width: 50px;
        height: 50px;
    }
    .btn_menu {
        display: flex;
    }
	.box_menu .btn_menu {
  display: block;
}
}
/*フッター_______________________________________*/
.block_footer {
    background-color: #1E1E1E;
	color:#fff;
}
.block_footer .footer_inner {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
	height:100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*TOPへ戻る*/
.to_top {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    transition: .3s;
}
.to_top .inner {
    overflow: hidden;
    width: 1160px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}
.btn_to_top {
    transform: translateY(100%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    color: #fff;
    background-color: #E60000;
    border-radius: 9999px;
	font-family: "Josefin Sans", sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    transition: opacity, background .3s;
    pointer-events: none;
    cursor: pointer;
	padding-top:.3%;
	transition: opacity .3s;
}
.btn_to_top:hover {
    background-color:rgb(255, 78, 78);
}
.on .btn_to_top {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
@media screen and (max-width:768px) {
    .btn_to_top {
        width: 67px;
        height: 67px;
        font-size: 11px;
    }
}

/*コンテンツ*/
/*コンテンツ　共用*/

.sub_ttl01 {
	font-size:16px;
	font-weight: bold;
	display: flex;
	align-items: center;
	letter-spacing: .1em;
	margin-bottom:30px;

}
.sub_ttl01:before {
	content:"";
	display: block;
  	background-color:#E60000;
	width:.5em;
	height:.5em;
	margin-right: .9375em;
	border-radius: 99px;
}
.sub_ttl02 {
	color:#fff;
	font-size:16px;
	font-weight: bold;
	display: flex;
	align-items: center;
	line-height: 1;
	letter-spacing: .1em;
	margin-bottom:50px;
}
.sub_ttl02:before {
	content:"";
	display: block;
  	background-color:#E60000;
	width:.5em;
	height:.5em;
	margin-right: .9375em;
	border-radius: 99px;
}

.ttl01 {
	font-size:50px;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: bold;
	line-height: 1;
	letter-spacing: .1em;
	margin-bottom:40px;
}
.text01 {
	font-size:14px;
	letter-spacing: .1em;
	line-height: 1.6;
}

@media screen and (max-width:768px) {
.sub_ttl01 {
	font-size:14px;
	margin-bottom: 10px;
}
.ttl01 {
	font-size:8vw;
	margin-bottom: 5.33vw;
}
}

/*下層ページMV*/
.sub_mv {
  	background-repeat: no-repeat;
	background-size: cover;
    background-position: center center; 
}
.sub_mv .inner {
	height:310px;
  	width:1100px;
	max-width: 95%;
	margin:0 auto;
	position: relative;
}
.sub_mv .mv_text{
	position: absolute;
	left:0;
  	bottom: -5px;
}




.sub_mv .mv_text .sub_ttl02 {
	margin-bottom:0;
}


.sub_mv h1{
	font-family: 'Josefin Sans', sans-serif;
	font-weight: bold;
	color: #fff;
	font-size:110px;
	line-height: .6;
	letter-spacing: .05em;
	margin-top:.4545em;
}
@media screen and (max-width:768px) {
.sub_mv .mv_text .sub_ttl02 {
	font-size:clamp(14px,2.08vw,16px);
}
.sub_mv .inner {
	height:clamp(142px,37.56vw,310px);
}
.sub_mv h1{
	font-size:clamp(38px,14.7vw,110px);
}
}

/*下層ページ*/
/*背景*/
main.subpage {
	position: relative;
	z-index: 0;
	min-height:calc(100vh - 100px);
	min-height:calc(100svh - 100px);
}
main.subpage::before {
	content:"";
	display: block;
	position: absolute;
	top:0;
	left:50%;
	transform: translateX(-50%);
	width:767px;
	max-width:clamp(212.25px,56.6%,767px);
	height:100%;
	z-index: -1;
	border:solid #F0F0F0;
	border-width: 0 1px; 
}
main.subpage::after {
	content:"";
	display: block;
	position: absolute;
	background-color: #F0F0F0;
	top:0;
	left:50%;
	transform: translateX(-50%);
	width:1px;
	height:100%;
	z-index: -1;
}
/*パンくず*/
.breadcrumbs {
	width:1100px;
	max-width: 90%;
	margin:20px auto 120px;
	display: flex;
	font-size:12px;
	color: #555;
}
.breadcrumbs li{
	margin-right:11px;
}
.breadcrumbs li:nth-of-type(n+2){
	display: flex;
	align-items: center;
}
.breadcrumbs li:nth-of-type(n+2)::before{
	content:"";
  	background-color: #555;
	width:1.125em;
	height:1px;
	margin-right:11px;
}
@media screen and (max-width:768px) {
.breadcrumbs {
	margin:10px  auto 60px;
}
}












