html{scroll-behavior: smooth;}
a,abbr,acronym,address,applet,article,aside,audio,b,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,span,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
    margin:0;
    padding:0;
    border:0;
    vertical-align:baseline;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    word-wrap:break-word;
    font-weight: normal;
    font-family: Noto Sans JP, "Helvetica Neue", "Helvetica", "Arial", "Hiragino Kaku Gothic Pro","Hiragino Sans", "Meiryo", "Yu Gothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
    letter-spacing: 0.02em;
    line-height: 2em;
    font-size: clamp(15px,2.5vw,17px);
    text-align: justify;
    hyphens: auto;
    color: #2e2e2e;
}
input,textarea{-webkit-box-sizing:border-box;box-sizing:border-box;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
body {padding: 0;margin: 0;-webkit-text-size-adjust:100%}
ol,ul{list-style:none}
blockquote,q{quotes:none}
blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}
table{border-collapse:collapse;border-spacing:0}
a{text-decoration:none}
img{max-width: 100%;height:auto;border:0;vertical-align:bottom}

a:hover,a:hover img {
    text-decoration:none;
    cursor: pointer;
}
p a{color: #008480;}
/*TELリンクPC版で非動作*/
@media (min-width: 890px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/*共通素材*/
h1,h2{font-family: serif;}
a.opacity:hover{opacity: 0.7;}

/*スムーススクロール位置調整*/
#links01,#links02,#links03{padding-top: 95px;margin-top: -95px;}

/*articleファーストビュー*/
.fv-title {
    width: 100%;
    height: 300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #c1c1c1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.fv-title img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.fv-title h1,
.fv-title h1 ruby {
    font-size: clamp(28px,3.5vw,42px);
    font-family: serif;
    color: #fff;
    text-align: center;
    letter-spacing: 0.15em;
    line-height: 1.8em;
    width: auto;
    z-index: 1;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 1));
}
@media only screen and (max-width: 890px) {
    .fv-title {
        height: 210px;
    }
    .fv-title img {
        height: 250px;
    }
}

/*お知らせ3件表示枠-トップページ用*/
.Infoblock{
    max-width: 1180px;
    padding: 0 50px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 3.5%;
}
/*お知らせ一覧はこちら-トップページ用*/
.newslist_link{
    width: 100%;
    text-align: right;
}
.newslist_link a{
    font-size: clamp(13px,2vw,14px);
    text-decoration: underline;
    transition: 0.4s;
}
.newslist_link a:hover{
    color: #008480;
}
@media only screen and (max-width: 890px) {
    .Infoblock {
        max-width: 680px;
        padding: 0 20px;
    }
}
/*お知らせ一覧用CSS-トップページ・info_list.php共通*/
.listInfo {
    max-width: 1180px;
    margin: auto;
    padding: 50px;
    background-color: #fff;
}
ul.list_block {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    grid-gap: 1.25%;
}
ul.list_block li{
    width: 32.5%;
    overflow: hidden;
    border-radius: 5px;
    border: solid 1px #efefef;
    background-color: #fff;
    margin-bottom: 20px;
    transition: 0.4s;
}
ul.list_block li:hover{
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}
ul.list_block li a img{
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: 0.4s;
}
ul.list_block li a p.date{
    font-size: clamp(12px,2vw,13px);
    padding: 2px 15px 2px 10px;
    background-color: #fff;
    width: fit-content;
    position: relative;
    top: -20px;
    border-radius: 0 10px 0 0;
    transition: 0.4s;   
}
ul.list_block li a p.title{
    font-size: clamp(13px,2vw,14px);
    line-height: 1.55em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: -20px;
    margin-bottom: 10px;
    padding: 0 10px;
    background-color: #fff;
    transition: 0.4s;
}
ul.list_block li a:hover img {
    transform: scale(1.05);
}
ul.list_block li a:hover p {
    color: #008480;
    text-decoration: underline;
}
@media only screen and (max-width: 767px) {
    .listInfo {
        max-width: 100%;
        margin: 0 auto;
        padding: 30px 20px;
        border: none;
    }
    /*お知らせ一覧では記事サイズ小さくして並べる*/
    .listInfo ul.list_block {
        justify-content: space-between;
    }
    .listInfo ul.list_block li{
        width: calc(50% - 5px);
    }
    ul.list_block li{
        width: 100%;
    }
    ul.list_block li a img{
        height: 140px;
    }
}

/*採用支援地域のバナー掲載レイアウト*/
ul.recruit_support{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    grid-gap: 30px;
    width: 100%;
    max-width: 885px;
    margin: auto;
    padding: 0 20px;
}
ul.recruit_support > li{
    width: calc(50% - 15px);
}
ul.recruit_support > li a.place{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    background: #efefef;
    height: 100px;
    width: fit-content;
    margin: auto;
    position: relative;
}
ul.recruit_support > li a.place p{
    width: fit-content;
    height: fit-content;
    font-size: clamp(20px, 2.5vw, 24px);
    font-family: serif;
    font-weight: bold;
    line-height: 1em;
    letter-spacing: 0.08em;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding-right: 20%;
    z-index: 2;
}
ul.recruit_support > li a.place img{
    height: 100px;
    width: auto;
    object-fit: cover;
    transition: 0.4s;
}
ul.recruit_support > li a.place:hover img{
    transform: scale(1.05);
}
@media only screen and (max-width: 890px) {
    ul.recruit_support{
        max-width: 580px;
    }
    ul.recruit_support > li{
        width: 100%;
    }
}

/*パンくずリンク*/
ol.breadcrumb{
    width: 100%;
    max-width: 1180px;
    padding: 20px 50px;
    margin: auto;
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}
ol.breadcrumb li:last-child{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
ol.breadcrumb li + li:before{
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #2e2e2e;
    border-right: 1px solid #2e2e2e;
    transform: rotate(45deg);
    margin-right: 5px;
    margin-left: 5px;
}
ol.breadcrumb span{
    font-size: clamp(12px,2.5vw,13px);
}
@media only screen and (max-width: 890px) {
    ol.breadcrumb{
        padding: 10px 20px;
    }    
}

/*コンテンツ内の見出し*/
.bg h2{
    font-size: clamp(26px,2.5vw,38px);
    letter-spacing: 0.15em;
    line-height: 1.5em;
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.bg h2:after{
    content: "";
    height: 1px;
    width: 85px;
    border-bottom: 1px solid #2e2e2e;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.bg h3 {
    font-size: clamp(18px,2.5vw,22px);
    font-weight: bold;
    color: #008480;
    margin-bottom: 20px;
    line-height: 1.6em;
}
.bg h4 {
    font-weight: bold;
    font-size: clamp(16px,2vw,18px);
}
p.explanation {
    text-align: center;
    width: 100%;
    max-width: 1140px;
    padding: 0 20px;
    margin-right: auto;
    margin-left: auto;
}
@media only screen and (max-width: 890px) {
    p.explanation {
        text-align: left;
        max-width: 680px;
    }
}

/*コンテンツの幅と写真・テキストのレイアウト*/
.inner80,.inner60,.inner30,.inner00{ 
    width: 100%;
    /*max-width: 1280px;*/
    margin: 0 auto;
}
.inner120{padding: 120px 0;}
.inner100{padding: 100px 0;}
.inner60{padding: 60px 0;}
.inner30{padding: 30px 0;}
.inner00{padding: 0;}

@media only screen and (max-width: 890px) {
    .inner120{padding: 60px 0;}
    .inner100{padding: 50px 0;}
    .inner60{padding: 40px 0;}
}

/*フォーマットコンテンツ*/
ul.contents{
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 50px;
    position: relative;
}
ul.contents li.left,
ul.contents li.right{
    width: calc(50% - 25px);
    display: flex;
    flex-wrap: wrap;
}
ul.contents li.left{
    justify-content: flex-end;
    text-align: justify;
    order: 1;
}
ul.contents li.left img.image{
    object-fit: cover;
    object-position: right center;
    border-radius: 5px;
}
ul.contents li.right{
    justify-content: flex-start;
    text-align: justify;
    order: 2;
}
ul.contents li.right img.image{
    object-fit: cover;
    object-position: left center;
    border-radius: 5px;
}
ul.contents li.right.m-height-none img.image,
ul.contents li.left.m-height-none img.image{
    max-height: 100%;    
}
ul.contents li.left .text {
    padding-left: 50px;
    z-index: 1;
}
ul.contents li.right .text {
    padding-right: 50px;
    z-index: 1;
}
ul.contents li .text p{
    margin-bottom: 20px;
}
ul.contents li .text p:last-child{
    margin-bottom: 0px;
}
.text p a{
    display: initial;
    font-weight: normal;
    text-decoration: underline;
}
.text h2 {
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
    max-width: 640px;
}
.text h2:after {
    border: none;
}

/*トップページ以外のコンテンツでlinehight少し調整*/
.text.mission p{
    font-size: clamp(15px,2vw,16px);
    line-height: 1.8em;
}

@media only screen and (max-width: 890px) {
    ul.contents li.right .text,
    ul.contents li.left .text {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    ul.contents li .text p{
        margin-bottom: 10px;
    }
    ul.contents li .text h2,
    ul.contents li .text h3{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: calc(100% - 40px);
        max-width: 640px;
    }
    ul.contents li.right,
    ul.contents li.left{
        width: 100%;
        max-width: 680px;
        margin: auto;
        padding-right: 20px;
        padding-left: 20px;
        justify-content: center;
    }
    ul.contents li.right img.image,
    ul.contents li.left img.image{
        width: 100%;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .order01{order: 1 !important;}
    .order02{order: 2 !important;}
    .order03{order: 3 !important;}
}


/*ご予約／お問い合わせ*/
.linkBtnBox{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 15px 10px;
    max-width: 860px;
    margin: auto;
    padding-right: 30px;
    padding-left: 30px;
}
.reserve a.telNo {
    position: relative;
    height: 46px;
    letter-spacing: normal;
    font-size: clamp(22px,2.5vw,28px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.reserve a.telNo span{
    font-weight: normal;
    font-size: clamp(12px,2.5vw,13.5px);
    letter-spacing: normal;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.linkBtnBox p.other{
    text-align: center;
    width: 100%;
}

@media only screen and (max-width: 890px) {
    .reserve .linkBtnBox{
        grid-gap: 40px;
    }
}

/*はみ出した時に非表示*/
.hidden{overflow: hidden;}
/*位置座標指定用*/
.relative{position: relative;}
/*背景の色・模様*/
.bg{
    width: 100%;
    padding: 1px 0;
    background-color: #fff;
}
.dot{
    background-color: #fff;
    background-image: radial-gradient(#fbfbfb 52%, transparent 52%);
    background-size: 12px 12px;}
.gray{background: #efefef;}
.white{background: #fff;}
.stripe{
    background-color: #fff;
    background-image:
    repeating-linear-gradient(-45deg,
    #f5f5f5, #f5f5f5 8px,
    transparent 0, transparent 14px);}

/*レイアウト関連*/
.center{text-align: center;}
/*マージン・パディング*/
.mt0{margin-top: 0px}
.mt10{margin-top: 10px}
.mt15{margin-top: 15px}
.mt20{margin-top: 20px}
.mt30{margin-top: 30px}
.mt50{margin-top: 50px}
.mt60{margin-top: 60px}
.mt70{margin-top: 70px}
.mb0{margin-bottom: 0px}
.mb10{margin-bottom: 10px}
.mb15{margin-bottom: 15px}
.mb30{margin-bottom: 30px}
.mb50{margin-bottom: 50px}
.mb60{margin-bottom: 60px}
.mb70{margin-bottom: 70px}

.m-auto{margin: auto}

.mx20{margin-right: 20px;margin-left: 20px;}
.mx30{margin-right: 30px;margin-left: 30px;}

.pt0{padding-top: 0px}
.pt15{padding-top: 15px}
.pt20{padding-top: 20px}
.pt30{padding-top: 30px}
.pt50{padding-top: 50px}
.pt60{padding-top: 60px}
.pt70{padding-top: 70px}
.pb0{padding-bottom: 0px}
.pb10{padding-bottom: 10px}
.pb15{padding-bottom: 15px}
.pb20{padding-bottom: 20px}
.pb30{padding-bottom: 30px}
.pb50{padding-bottom: 50px}
.pb60{padding-bottom: 60px}
.pb70{padding-bottom: 70px}

.px20{padding-right: 20px;padding-left: 20px;}
.px30{padding-right: 30px;padding-left: 30px;}
.px50{padding-right: 50px;padding-left: 50px;}

@media only screen and (max-width: 890px) {
    .mt50{margin-top: 30px}
    .mt70{margin-top: 50px}
    .mb50{margin-bottom: 30px}
    .mb70{margin-bottom: 50px}

    .mx20{
        margin-left: 20px;
        margin-right: 20px;
    }

    .pt50{padding-top: 30px}
    .pt70{padding-top: 50px}
    .pb50{padding-bottom: 30px}
    .pb70{padding-bottom: 50px}

    .px20{
        padding-left: 20px;
        padding-right: 20px;
    }
    .px50{
        padding-right: 30px;
        padding-left: 30px;
    }
}

/*表示・非表示*/
.sp{display: none;}
@media only screen and (max-width: 890px) {
.sp{display: block;}
}
.pc{display: block;}
@media only screen and (max-width: 890px) {
.pc{display: none;}
}