@charset "utf-8";
/*common
-----------------------------------------------------------------------------------------*/
section{
	padding: 150px 0;
}

.contents-wrapper {
	width: calc(100% - 100px);
	max-width: 1200px;
	margin: 0 auto;
}

.contents-wrapper.big {
    width: 100%;
	max-width: 1440px;
}

.contents-wrapper.mini {
	max-width: 1000px;
}



@media screen and (max-width:767px) {
    section{
        padding: 30px 0;
    }

    .contents-wrapper{
        width: calc(100% - 60px);
    }
}


/*home
-----------------------------------------------------------------------------------------*/
:root {
    --letter-spacing-default: 0.05em;
    --line-height-default: 1.6;
    --text-color-default: #333333;
}

html,body {
    overflow-x: hidden;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: var(--letter-spacing-default);
    line-height: var(--line-height-default);
    color: var(--text-color-default);
}

.arch-bg {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 500px;
    background-color: #FFFFFF;
    border-radius: 50%;
    z-index: 0;
}

.top-text-orange {
    color: #ED980F;
}

.top-text-pink {
    color: #EFA7BA;
}

.top-text-blue {
    color: #85A5CE;
}

.top-section-header {
    font-family: "Zen Maru Gothic", sans-serif;
    padding-bottom: 50px;
}

.top-section-title {
    font-size: 1.8rem;
    font-weight: 500;
}

.top-section-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: #00A47C;
}

.top-reverse {
    flex-direction: row-reverse;
}

.top-btn-primary-contact {
    background-color: #ED980F;
    border-radius: 80px;
}

.top-btn-primary-link {
    display: inline-block;
    position: relative;
    color: #00A47C;
    border: 2px solid #00A47C;
    border-radius: 50px;
    width: 100%;
    max-width: 235px;
    padding: 10px 0 10px 26px;
}

.top-btn-primary-link::before {
    content: "";
    position: absolute;
    right: 26px;
    top: 50%;
    width: 18.02px;
    height: 2px;
    background-color: #00A47C;
    transform: translateY(-50%);
}

.top-btn-primary-link::after {
    content: "";
    position: absolute;
    right: 26px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #00A47C;
    border-right: 2px solid #00A47C;
    transform: translate(0, -50%) rotate(45deg);
}

/* ヘッダー　*/
.top-main-visual-wrapper {
    position: relative;
    background-color: #FBFFEF;
    background-image: url(../images/noise-texture-bg-01.png);
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255 255 255 / 70%);
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    z-index: 99999;
}

.top-header-logo .top-logo {
    display: block;
}

.top-header-logo .top-logo img {
    height: 100px;
}

.top-header-nav {
    margin-left: auto;
}

.top-header-nav-list {
    display: flex;
}

.top-header-nav-list li {
    position: relative;
    padding: 0 27.5px;
    
}

.top-header-nav-list li:last-child {
    padding-right: 0;
}

.top-header-nav-list li+li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0; 
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background-color: #7E7D7D;
}

.top-header-nav-list a {
    color: var(--text-color-default);
    line-height: 1;
}

.top-header-nav-list .top-btn-contact-mini {
    padding: 27px 15px 27px 59px;
    color: #FFFFFF;
    position: relative;
}

.top-header-nav-list .top-btn-contact-mini::before {
    content: "";
    position: absolute;
    display: block;
    width: 33px;
    height: 33px;
    background-image: url(../images/icon-mail.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);

}

/* メインビジュアル　*/
.top-main-visual {
    position: relative;
    padding: 0 0;
}

.top-main-visual-title {
    position: absolute;
    left: 10%;
    bottom: 13%;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2;
    text-shadow:
        -2.5px -2.5px 0 #FFF,
         2.5px -2.5px 0 #FFF,
        -2.5px  2.5px 0 #FFF,
         2.5px  2.5px 0 #FFF,
         0px  3px 0 #FFF,
         0px -3px 0 #FFF,
         3px  0px 0 #FFF,
        -3px  0px 0 #FFF;
}

.top-main-visual-title span {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.top-main-visual-title span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 0.5em);
    border-bottom: 2px dotted #5B5B5C;
}

.top-main-visual-bg {
    display: block;
    width: 85%;
    height: auto;
    margin: 0 0;
    margin-left: auto;
}

.top-main-visual-people {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(-18%, 12%);
    display: block;
    width: 50%;
    max-width: 644px;
    height: auto;
    margin: 0 0;
}

/* 私たちの想い */
.top-philosophy {
    padding-bottom: 300px;
}

.top-philosophy .contents-wrapper.big {
    position: relative;
}

.top-philosophy .contents-wrapper.big::after {
    position: absolute;
    content: "";
    display: block;
    right: 0;
    bottom: 0;
    width: 30%;
    max-width: 420px;
    aspect-ratio: 420/107;
    transform: translateY(50%);
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.top-philosophy-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 23px;
}

.top-philosophy-info {
    width: 47%;
}

.top-philosophy-info-catch {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 500;
}

.top-philosophy-info-text {
    padding: 50px 0 24px 0;
}


.top-philosophy-img {
    width: 43%;
}

.top-philosophy-img img{
    width: 100%
}

/* 私たちのサービス */
.top-service {
    position: relative;
    padding-top: 0;
}

.top-service .contents-wrapper {
    position: relative;
    z-index: 1; 
}

.top-service-header {
    text-align: center;
}

.top-service-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 100px;
}

.top-service-item {
    text-align: center;
    width: 100%;
    max-width: 360px;
}

.top-service-img {
    width: 100%;
    height: auto;
    display: block;
}

.top-service-text {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: -110px;
}

.top-service-detail-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.top-service-detail-info {
    width: 37%;
}

.top-service-detail-title {    
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.top-service-detail-img {
    width: 37%;
}

.top-service-detail-img img { 
    width: 100%;
}

/* 採用情報 */
.top-recruit {
    padding: 100px 0;
    background-image: url(../images/noise-texture-bg-02.png);
    background-repeat: repeat;
    background-size: cover;
    background-position: center;
}

.top-media-inner{
    display: flex;
    align-items: center;
}

.top-media-img {
    width: 47%;
}

.top-media-img img {
    width: 100%;
    height: auto;
    display: block;
}

.top-media-info {
    width: 42%;
    margin-left: auto;
    margin-right: 8.3%;
}

.top-media-catch {
    padding-bottom: 25px;
}

.top-media-text {
    padding-bottom: 50px;
}

.top-btn-recruit {
    background-color: #FFFFFF;
}

/* 会社概要 */
.top-company {
    background-color: #FBFFEF;
}

.top-reverse .top-media-info {
    margin-right: auto;
    margin-left: 8.3%;
}

/* ブログ */
.top-blog {
    background-color: #FBFFEF;
    padding-top: 0;
    padding-bottom: 300px;
}

.top-blog .contents-wrapper.big {
    position: relative;
}


.top-blog .contents-wrapper.big::after {
    position: absolute;
    content: "";
    display: block;
    left: 0;
    bottom: 0;
    width: 60%;
    max-width: 554px;
    aspect-ratio: 554/225;
    transform: translateY(35%);
    background-image: url(../images/blog.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;   
}

.top-blog-inner {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.top-blog-info {
    width: 20%;
}

.top-blog-news {
    width: 60%;

}

.top-blog-news-list li {
    padding: 25px 0;
    border-bottom: 2px solid #BBB8BA;
}

.top-blog-news-list li:first-child {
    padding-top: 0;
}

.top-blog-news-date {
    margin-right: 30px;
}

.top-blog-news-category {
    display: inline-block;
    width: 130px;
    text-align: center;
    padding: 4px 0;
    margin-right: 25px;
    border: 1px solid;
    border-radius: 5px;
}

.top-blog-news-category-notice {
    color: #056EDE;
    border-color: #056EDE;
}

.top-blog-news-category-blog {
    color: #00A47C;
    border-color: #00A47C;
}

.top-blog-news-category-care-info {
    color: #DE9905;
    border-color: #DE9905;
}

.top-blog-news-category-recruit {
    color: #A768DB;
    border-color: #A768DB;
}

/* アクセス */
.top-access {
    position: relative;
    padding-top: 0;
}

.top-access-inner {
    position: relative;
    z-index: 1;
}

.top-access-header {
    text-align: center;
}

.top-access-info {
    width: 36%;
}

.top-access-logo .top-logo {
    display: block;
}

.top-access-logo .top-logo img {
    height: 100px;
    margin: 0;
    width: auto;
}

.top-access-body {
    display: flex;
    align-items: center;
    gap: 50px;
}

.top-access-map {
    width: 60%;
    aspect-ratio: 721/429;
}

.top-access-item {
    display: flex;
    margin-bottom: 20px;
}

.top-access-item dt {
    position: relative;
    padding-left: 50px;
    width: 120px;
}

.top-access-item:nth-child(1) dt::before {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../images/icon-map-pin.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 0;
    left: 0;
}

.top-access-item:nth-child(2) dt::before {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../images/icon-phone.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.top-access-item:nth-child(3) dt::before {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../images/icon-fax.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}


.top-access-item:first-child dt::after {
    content: "";
    position: absolute;
    right: 0; 
    top: 0;
    width: 1px;
    height: 32px;
    transform: translateY(-5%);
    background-color: #7E7D7D;
}

.top-access-item:not(:first-child) dt::after {
    content: "";
    position: absolute;
    right: 0; 
    top: 50%;
    width: 1px;
    height: 32px;
    transform: translateY(-50%);
    background-color: #7E7D7D;
}


.top-access-item dd {
    margin-left: 20px;
}

/* お問い合わせ */
.top-contact {
    padding-top: 0;
}

.top-contact-body {
    padding: 50px 137px;
    background-image: url(../images/noise-texture-bg-03.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.top-contact-body a {
    display: block;
    font-size: 2rem;
}

.top-contact-body p {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
}

.top-btn-contact-big {
    width: 100%;
    max-width: 444px;
    padding: 17px 78px 17px 166px;
    color: #FFFFFF;
    position: relative;
    margin: 0 auto;
}

.top-btn-contact-big::before {
    content: "";
    position: absolute;
    display: block;
    width: 65px;
    height: 65px;
    background-image: url(../images/icon-mail.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 50%;
    left: 78px;
    transform: translateY(-50%);
}

/* フッター　*/
.top-footer {
    padding-top: 57px;
    background-image: url(../images/noise-texture-bg-04.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.top-footer-logo .top-logo {
    display: block;
    margin-bottom: 57px;
}

.top-footer-logo .top-logo img {
    height: 100px;
    margin: 0;
    width: auto;
}

.top-footer-info {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.top-footer-nav-list {
    display: flex;
}

.top-footer-nav-list li {
    position: relative;
    padding: 0 47px 0 23px;
    
}

.top-footer-nav-list li::before {
    content: "";
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icon-arrow-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 54%;
    left: 0;
    transform: translateY(-50%);
}


.top-footer-nav-list a {
    color: #FFFFFF;
    line-height: 1;
}

.top-footer-link {
    color: #FFFFFF;
    line-height: 1;
    margin-left: auto;
}

.top-footer-copyright {
    border-top: 1px solid #FFFFFF;
    text-align: center;
    color: #FFFFFF;
}

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

/*
-----------------------------------------------------------------------------------------*/

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


/*
-----------------------------------------------------------------------------------------*/

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


/*
-----------------------------------------------------------------------------------------*/

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


/*
-----------------------------------------------------------------------------------------*/
