@charset "UTF-8";


.t-mv {
    background: url(../img/mv_pc.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 47.86vw; /* 670px */
    background-position: center;
}

.t-mv__inner {
    max-width: 91.43vw; /* 1280px */
    width: 100%;
    margin: 0 auto;
    padding: 21.43vw 1.43vw 0; /* 300px 20px 0 */
}

.t-mv__title {
    font-size: 3.43vw; /* 3rem = 48px */
    font-weight: bold;
    letter-spacing: 0.1em;
}

.t-mv__title span {
    background: rgba(255, 255, 255, 0.8);
}

.t-mv__contactbtn {
    margin-top: 5.29vw; /* 74px */
    margin-left: 2.79vw; /* 39px */
}

@media screen and (max-width: 760px) {

    .t-mv {
        background: url(../img/mv_sp.png);
        height: 160vw; /* 600px */
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
		position: relative;
    }

    .t-mv__title {
        font-size: 8.53vw;
		position: absolute;
        top: 67vw;
    }

    .t-mv__title span {
        background: rgba(255, 255, 255, 0.8);
        display: inline-block;
        margin-top: 4vw;
        padding: 2.67vw;
    }

	.t-mv__contactbtn {
		margin-top: 0;
		margin-left: 0;
		position: absolute;
		bottom: 20.79vw;
		left:50%;
		transform: translateX(-50%);
	}
}

.t-service {
	background: #FFFCF8;
	position: relative;
}

.t-service::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: url("../img/service__circle1.png");
	background-repeat: no-repeat;
	background-size: cover;
	width: 230px;
	height: 224px;
	z-index: 1;
	background-position: center;
}

.t-service::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	background: url("../img/service__circle2.png");
	background-repeat: no-repeat;
	background-size: cover;
	width: 230px;
	height: 224px;
	z-index: 1;
}

.t-service__inner {
	position: relative;
	z-index: 2;
}

.t-service__text {
	margin-top: 60px;
	line-height: 2;
	text-align: center;
}



@media screen and (max-width:760px) {
	.t-service::before {
		width: 113px;
		height: 107px;
	}
	.t-service::after {
		width: 113px;
		height: 107px;
	}
}

.t-company {
	background: url("../img/company_bg_pc.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.t-company__inner {
	padding: 100px 40px 70px;
}

.t-company__content {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	background: #fff;
	padding: 50px 50px 70px;
}

.t-company__text {
	line-height: 1.56;
	margin-top: 60px;
	text-align: center;
}

@media screen and (max-width:760px) {
	.t-company__inner {
		padding: 109px 8px 114px;
	}

	.t-company__content {
		background: rgba(255, 255, 255, 0.8);
		padding: 40px 16px;
	}
}

.t-news {
	background: #FFFCF8;
}

.t-news__inner {
	max-width: 700px;	
}

.t-news a{
	color: #333;
}

.t-news__list {
	margin-top: 60px;
}

.t-news__list__li{
	padding: 15px 10px;
	border-bottom: dotted 1px #333;
}

.t-news__list__li a{
	display: flex;
	align-items: center;
}

.t-news__list__li__date {
	width: 20%;
	font-size: 12px;
}

.t-news__list__li__title {
	width: 80%;
	font-size: 14px;
}

@media screen and (max-width:760px) {
	.t-news__list__li a {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.t-news__list__li__date {
		width: 100%;
	}
	
	.t-news__list__li__title {
		width: 100%;
	}
}