@charset "UTF-8";
/* CSS Document */
/*
Theme Name:ss-simple
Theme URI: 
Description: This is our original theme.
Author: 
Author URI:
Version:1.0
*/

html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:text-top;}sub{vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{font-size:100%;}legend{color:#000;}

:root {
    --maincolor: #009d85;
    --subcolor: #ffa43c;
    --basecolor: #d2f5e4;
    --basecolor2: #ffeabb;
    --line-color: #06c755;
    --black: #222;
    --white: #ffffef;
    --zoomvalue: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;

    &::before,
    &::after {
        content: none;
    }
}

html,
body {
    font-size: 100%;
    line-height: 1.6;
    scroll-behavior: smooth;
    color: var(--black);
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

li {
    list-style: none;
}

img {
    vertical-align: middle;
    padding: 0;
    margin: 0;
    line-height: 0;
    max-width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

p {
    text-align: justify;
}

#breadcrumb{display:flex;justify-content:flex-end;width:100%;gap:0.3em;}

/* @link */
a {
    text-decoration: none;
    transition: 0.3s;
    color: var(--maincolor);
}

a:hover,
a:active {
    color: var(--maincolor);
    text-decoration: none;
}

a img {
    border: none;
}

a:hover img {
    opacity: 0.8;
}

a img {
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}


/* @css base block */
.pc {
    display: none;
}

.sp {
    display: block;
}

.oh {
    overflow: hidden;
}

.f-min {
    font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

.cen {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

h1,
h2,
h3,
h4,
.bold {
    font-weight: bold;
}

.color {
    color: var(--maincolor);
}

.white {
    background: #fff;
    padding: 0.5em 2em;
    margin: 0;
}

.cen {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.bold {
    font-weight: bold;
}

.small {
    font-size: 0.9rem;
}

.big {
    font-size: 1.1rem;
}

html {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

body {
    background: var(--white);
    margin: 0 auto;
}

/*リストの基本形*/
/*list_boxと任意のリスト名クラスを付与し、gapと横列数を指定*/
.list_box {
    display: flex;
    width: 80%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    gap: var(--gap);
}

.list_box>li {
    width: calc((100% - var(--gap) * calc(var(--listitem-length) - 1)) / var(--listitem-length));
}

.list_box.animate li {
    opacity: 0;
}

.list_box.animation.slideup li {
    animation: slide-up 1.1s forwards;
}

.list_box.animation.slidel li {
    animation: slide-l 1.1s forwards;
}


/*header*/
.menubtn {
    position: sticky;
    background: var(--maincolor);
    color: var(--white);
    display: block;
    margin-left: auto;
    margin-right: 0.5em;
    top: -1px;
    right: 1em;
    padding: 3px 7px;
    text-align: center;
    transition: 0.4s;
    border-radius: 0 0 3px 3px;
    z-index: 10;
    font-size: 18px;
    border: none;
    cursor: pointer;

    &.open {
        background: var(--subcolor);
    }
}

header {
    position: relative;

    .site_name {
        padding: 0.5em 1em;
        background: var(--maincolor);
        font-size: 18px;
        width: 100%;
        color: var(--white);
        position: relative;
        z-index: 6;
        word-break: break-all;
    }


    nav {
        width: 100%;
        position: fixed;
        left: 50%;
        translate: -50% 0;
        top: -100%;
        background: var(--white);
        z-index: 5;
        transition: 0.3s;
        padding-top: calc(18px + 3px * 2 + 1px);
    }

    .menu_list {
        display: flex;
        font-weight: bold;
        width: 100%;
        bottom: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 1em;
        justify-content: flex-start;

        li {
            border-bottom: 2px dashed var(--maincolor);

            a {
                display: block;
                width: 100%;
                padding: 1em 2em;
                font-size: 16px;
                color: var(--maincolor);

                &:hover {
                    background: var(--white);
                    color: var(--maincolor);
                }
            }
        }
    }
}

/*下部のボタン*/
.fotmenu {
    display: flex;
    position: sticky;
    left: 50%;
    bottom: 0;
    z-index: 15;

    li {
        width: calc(100% / 3);
        text-align: center;
        background: #fff;

        &:first-child {
            border-right: 1px solid var(--maincolor);
        }

        a {
            display: block;
            padding: 0 2px;

            figure {
                padding: 0.5em 1.5em 0;
            }

            p {
                font-weight: bold;
                border-top: 1px dashed currentColor;
				text-align:center;
            }
        }
    }

    .fot_con {
        background: var(--line-color);

        a {
            p {
                color: var(--white);
            }
        }
    }
}



/*上の方*/
.topimg {
    background: #fff;
    margin: 0 auto;
    padding: 0 0 2em;
    position: relative;
}

.topimgbox {
    position: relative;
    margin: 0;
    padding: 0;

    &::before {
        content: '';
        display: block;
        width: 100%;
        height: 10%;
        position: absolute;
        left: 0;
        top: 0;
        background: linear-gradient(var(--white) 20%, transparent);
    }
}

.pick_list {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    width: 90%;
    overflow: hidden;
    --listitem-length: 1;
    --gap: 0.5em;
    padding: 0 0.3em;
    font-size: 21px;

    li {
        border-radius: 0.3em;
        background: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--maincolor);
        font-weight: bold;
        line-height: 1.3;
        border: 2px solid currentColor;
        padding: 0.5em;

        &:nth-child(even) {
            color: var(--subcolor);
        }
    }
}

.topcopy {
    font-size: 21px;
    margin: 1em auto;
    padding: 0 1em;
}

/*main*/

main {
    position: relative;

    >section {
        padding: 0 1em;
        margin-bottom: 2em;

        >p {
            margin-top: 1em;
            padding: 0 0.5em;
        }
    }
}



/*見出し*/
.section_title {
    font-size: 150%;
    letter-spacing: 0.05em;
    margin: 2em auto 1em;
    display: flex;
    flex-direction: column;
    gap: 0.4em;

    .small {
        display: block;
        font-size: 1.1rem;
        color: var(--maincolor);
    }

    &::after {
        content: '';
        display: block;
        width: 5em;
        height: 3px;
        background: linear-gradient(to right, var(--maincolor) 50%, transparent);
    }

    &.border_none::after {
        content: none;
    }
}

.section_title_mini {
    font-size: 130%;
    letter-spacing: 0.05em;
    margin: 1.5em auto 1em;
    display: flex;
    flex-direction: column;
    gap: 0.4em;
    color: var(--maincolor);

    &::after {
        content: '';
        display: block;
        width: 5em;
        height: 3px;
        background: linear-gradient(to right, var(--maincolor) 50%, transparent);
    }
}

.topic_title {
    text-align: center;
    font-size: 1.5rem;
    padding: 0.5em;
    margin: 1.5em auto 1em;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    position: relative;

    &::before {
        content: '';
        height: 100%;
        width: 100%;
        display: block;
        background: currentColor;
        opacity: 0.2;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .small {
        font-size: 1.1rem;
        display: block;
        color: inherit;
    }

    &.color01 {color: #e94619;}
    &.color02 {color: #499337;}
    &.color03 {color: #335290;}
}


/*flexbox設定*/
.flex {
    display: flex;
    gap: 2em;
    margin: 2em auto 4em;
}

.flex p {
    padding: 0 1.5em;
}

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

.flex.w40-60>*:first-child {
    width: 40%;
}

.flex.w40-60>*:last-child {
    width: 60%;
    flex-shrink: 0;
}

.flex.w30-70>*:first-child {
    width: 30%;
}

.flex.w30-70>*:last-child {
    width: 70%;
    flex-shrink: 0;
}

.flex.w50-50>* {
    width: 50%;
}

.flex.column-3>* {
    width: calc((100% - 2em * 2) / 3);
}

.flex.column-4>* {
    width: calc((100% - 2em * 3) / 4);
}

.flex.nogap {
    gap: 0;
}

.flex.alcen {
    align-items: center;
}

.flex.fw {
    flex-wrap: wrap;
}

/*ここまで*/


/*問い合せエリア*/
.contact_area {
    padding: 2em 0 1em;
    margin: 0 1em 2em;
    background: var(--basecolor2);
    border-radius: 1em;
    font-weight: bold;
    font-size: 110%;

    p {
        color: #444;

        span {
            display: inline-block;
            padding: 0 0.5em;
            line-height: 2;
            background: linear-gradient(to bottom, transparent 60%, #fcff3c 60%, #fcff3c 95%, transparent 95%);
        }
    }
}

.recruit_area {
    padding: 2em 0 1em;
    margin: 0 1em 2em;
    background: var(--white);
    border-radius: 1em;
    font-weight: bold;
    font-size: 110%;

    p {
        color: #444;

        span {
            display: inline-block;
            padding: 0 0.5em;
            line-height: 2;
            background: linear-gradient(to bottom, transparent 60%, #fcff3c 60%, #fcff3c 95%, transparent 95%);
        }
    }
}


/*強み*/
.strong_list {
    display: flex;
    flex-wrap: wrap;
    --gap: 0.5em;
    --listitem-length: 1;
    width: 100%;
    justify-content: center;
    margin: 1em auto;
    overflow: hidden;

    li {
        border-bottom: 2px dashed var(--subcolor);
        color: var(--subcolor);
        padding: 0.5em;
        font-size: 110%;
        font-weight: bold;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5em;
        align-items: center;

        &::before {
            content: '';
            display: block;
            width: 12px;
            height: 7px;
            border: solid var(--subcolor);
            border-width: 0 0 5px 5px;
            transform: translateY(-2px)rotate(-45deg);
        }

        p {
            width: 100%;
            font-size: 0.9rem;
            font-weight: normal;
            color: var(--black);
        }
    }
}


/*サービス一覧*/
.service_list {
    figure {
        margin: 1em 0;
    }

    .price {
        margin: 0.5em 0;
        padding: 0.5em 1em 0.8em;
        background: #fff;
        border: 2px solid var(--maincolor);
        font-weight: bold;

        span {
            color: var(--maincolor);
            font-size: 180%;
            margin: 0 0.5em;
            padding: 0 0.2em;
            background: linear-gradient(transparent 60%, var(--basecolor) 60%, var(--basecolor));
        }
    }
}


/*スケジュール*/
.sche_list {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5em;

    li {
        border: 1px solid var(--maincolor);
        border-radius: 7px;
        position: relative;

        &:not(:last-child)::before {
            position: absolute;
            content: '';
            background: var(--maincolor);
            top: 100%;
            left: 50%;
            translate: -50% 0;
            height: 1em;
            width: 1.5em;
            clip-path: polygon(0 0, 100% 0, 50% 100%);
        }

        h3 {
            background: var(--maincolor);
            border-radius: 7px;
            color: #fff;
            text-align: center;
            padding: 0.5em;
            cursor: pointer;
            transition: 0.2s;

            &.open {
                border-radius: 7px 7px 0 0;
            }

            &:hover {
                background: var(--basecolor);
                color: var(--maincolor);
            }
        }

        p {
            padding: 1em;
            background: #fff;
            border-radius: 0 0 7px 7px;
        }
    }
}

/*お客様の声*/
.big_blue {
    display: block;
    font-size: 120%;
    margin: 1em 0;
    color: var(--maincolor);
}

.cus_list {
    --gap: 3em;
    --listitem-length: 1;
    flex-wrap: wrap;

    li {
        margin: 0;
        padding: 1em;
    }
}

/*事例紹介*/
.card_list {
    --listitem-length: 1;
    --gap: 3em;
    width: 95%;
    margin-bottom: 2em;
    flex-wrap: wrap;

    li {
        border: 1px solid var(--maincolor);
        box-shadow: 10px 10px 5px 2px var(--basecolor);
        transition: 0.3s;

        &:hover {
            box-shadow: 2px 2px 2px 2px var(--basecolor);
        }

        a {
            display: block;
            height: 100%;
            width: 100%;
            background: var(--white);
            color: var(--black);
            padding: 1em;
        }
    }
}

/*よくある質問*/
#faq {
    background: var(--basecolor2);
    padding: 1em;
}

.faqbox {
    background: var(--white);
    border: solid 2px var(--maincolor);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    margin: 2em 0;

    li {
        border-bottom: dotted 2px var(--maincolor);

        &:last-child {
            border-bottom: none;
        }

        details[open] .faq_a {
            border-top: 2px dotted var(--subcolor);
        }
    }

    summary {
        display: flex;
        align-items: center;
        cursor: pointer;
        padding: 10px;
        transition: 0.3s;

        &:hover {
            background: rgba(31, 164, 192, 0.2);
        }
    }

    .faq_q {
        color: var(--maincolor);
        font-size: 110%;
        display: flex;
        gap: 0.5em;
        font-weight: bold;

        &::before {
            content: "Q";
            background: var(--maincolor);
            color: var(--white);
            border-radius: 50%;
            width: 1em;
            height: 1em;
            padding: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            flex-shrink: 0;
        }
    }

    .faq_a {
        padding: 10px;
        display: flex;
        gap: 0.8em;

        &::before {
            content: "A";
            background: var(--subcolor);
            border-radius: 50%;
            width: 1em;
            height: 1em;
            padding: 5px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            flex-shrink: 0;
        }

    }
}

/*スクロールするところ*/
.photo_wrap {
    display: flex;
    overflow: hidden;
    margin: 2em 0 0;
    padding: 0;
    position: relative;
}

.photo_scroll {
    display: flex;
    padding: 0;
    margin: 0;
    max-width: none;
    width: 250vw;
    animation: loop 60s infinite linear both running;
}

.photo_wrap:nth-of-type(2) .photo_scroll {
    animation-direction: reverse;
}

.photo_scroll li {
    width: calc(250vw / 6);
    padding: 0;
    height: auto;
    border-right: 2px solid var(--white);
}

.photo_scroll li img {
    height: auto;
    width: 100%;
}

@keyframes loop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}




/*footer*/
footer {
    border-top: 2px solid var(--maincolor);
    background: var(--maincolor);
    color: var(--white);

    .fot_flex {
        display: flex;
        flex-direction: column;
        padding: 1em;
        margin: 0 auto 1em;
        gap: 1em;
        background: #fff;
        color: var(--maincolor);

        .fot_info {
            text-align: center;
            font-size: 120%;
            font-style: normal;

            .com_name,
            .tel {
                font-size: 140%;
                font-weight: bold;
            }

            .tel {
                a {
                    text-decoration: underline;

                    &:hover {
                        color: var(--subcolor);
                    }
                }
            }
        }

        .fot_link {
            .linkbtn {
                margin: 0.5em 0;
            }
        }
    }
}

.area_list {
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
    padding: 0 1em;
    margin: 0.5em auto 1em;

    li {
        width: fit-content;

        a {
            display: inline-block;
            padding: 0.3em 0.5em;
            background: #fff;
            color: var(--maincolor);
            border-radius: 0.3em;
            line-height: 1.2;

            &:hover {
                background: var(--basecolor);
            }
        }
    }
}


.gmap {
    width: 300px;
    aspect-ratio: 6/4;

    iframe {
        width: 100%;
        height: 100%;
    }
}


.copy {
    background: var(--maincolor);
    font-size: 10px;
    color: var(--white);
    text-align: center;
    padding: 1em;
    margin-top: 1em;
    border-top: 1px solid var(--white);
}




/*-----サブページ-----*/
.subpage{
	main{
		padding-top:60px;
	}
}

.service_all_list{
	--listitem-length:2;
	--gap:1em;
	row-gap:2em;
	margin:2em auto;
	
	>*{
		width:calc((100% - var(--gap) * (var(--listitem-length) - 1)) / var(--listitem-length));
		border-radius:0.5em;
		overflow:hidden;
		border:2px solid var(--themecolor);
		align-self:flex-start;
	
    	&.color01 {--themecolor: #e94619;}
    	&.color02 {--themecolor: #499337;}
    	&.color03 {--themecolor: #335290;}	
		h2{
			padding:0.5em;
			background:var(--themecolor);
			color:#fff;
			text-align:center;
		}
		ul{
			padding:1em;
			font-size:16px;
			background:#fff;
			height:100%;
			li{
				list-style:square inside;
			}
		}
	}
}

.price_table{
	background:#fff;
	margin:1em auto;
	
	thead{
		border-bottom:none;
	}
	th{
		background:var(--maincolor);
		font-weight:bold;
		color:#fff;
		border:1px solid var(--maincolor);
		&:first-child{
			border-right-color:#fff;
		}
	}
	tr{
		border-color:var(--maincolor);
		td{
			border-color:inherit;
		}
		td:first-child{
			width:25%;
			background:#D2F5E4;
		}
	}
}




/*------------------------------------------------------------
タブレット用
------------------------------------------------------------*/
@media(min-width:979px) {
    body {
        font-size: 14px;
    }
	.service_all_list{
		--listitem-length:3;
	}


}

/*------------------------------------------------------------
PC用
------------------------------------------------------------*/
@media(min-width:900px) {

    .pc {
        display: block;
    }

    .sp {
        display: none;
    }

    body {
        font-size: 20px;
    }

    .menubtn {
        display: none;
    }

    header {
        width: 20%;
        flex-basis: 20vw;
        position: fixed;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 10;
        border-right: 2px solid var(--maincolor);

        .site_name {
            position: sticky;
            width: 100vw;
            max-width: 100vw;
            font-size: 24px;

            br {
                display: none;
            }
        }

        nav {
            position: static;
            top: 0;
            left: 0;
            max-width: 100%;
            translate: 0;
            padding-top: 30px;
            height: 100%;
            background: var(--basecolor);
        }
    }

    main {
        width: 80%;
        margin-left: auto;

        section,
        .white {
            width: 80%;
            max-width: 1200px;
            margin: 2em auto;
            padding: 2em;
        }

        .white,
        #faq {
            padding: 2em;
        }
    }

    footer {
        width: 80%;
        margin-left: auto;
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        gap: 0 2em;
        align-items: center;
        background: #fff;

        .fot_flex {
            flex-direction: row;
            width: 45%;
            flex-shrink: 0;
            padding: 2em;
            margin: 0;
            justify-content: space-between;
            align-items: center;

            .fot_info {
                font-size: 110%;
            }
        }

        .area_box {
            p {
                color: var(--maincolor);
                text-align: left;
            }

            .area_list {
                padding: 0;

                li a {
                    background: var(--maincolor);
                    color: #fff;
                }
            }
        }

        .copy {
            width: 100%;
            flex-shrink: 0;
        }

    }


    .fotmenu {
        justify-content: center;

        li:not(.fot_con) {
            display: none;
        }

        .fot_con {
            aspect-ratio: 1/1;
            border-radius: 50%;
        }
    }


    /*見出し*/
    .section_title {
        font-size: 160%;

        .small {
            font-size: 1.5rem;
        }
    }

    .section_title_mini {
        font-size: 150%;
        letter-spacing: 0.05em;
        margin: 1.5em auto 1em;
        display: flex;
        flex-direction: column;
        gap: 0.4em;
        color: var(--maincolor);


    }

    .topic_title {
        font-size: 180%;

        .small {
            font-size: 1.5rem;
        }
    }

    /*ボタン*/
    .btn_wide {
        max-width: 600px;
    }


    /*お問い合わせエリア*/
    .contact_area {
        font-size: 130%;
    }


    /*上の方*/
    .topimgbox {
        margin-top: 40px;
    }

    .topimg {
        .pick_list {
            flex-direction: row;
            margin: 2em auto;
            gap: 2em;

            li {
                font-size: 130%;
            }
        }

        .topcopy {
            text-align: center;
        }
    }

    .strong_list {
        li {
            p {
                font-size: 1.2rem;
            }
        }
    }

    .cus_list {
        width: 100%;
    }

    .faqbox {
        max-width: 80%;
        margin: 2em auto;
    }

    /*サービス*/
    .service {
        li {
            figure {
                max-width: 800px;
                margin: 2em auto;
            }

            p {
                padding: 0 2em;
            }

            .price {
                max-width: 800px;
                width: 70%;
                margin: 2em auto;
            }
        }
    }

    .card_list,
    .cus_list {
        --listitem-length: 2;
    }
	
	.service_all_list{
		--listitem-length:4;
	}


}