@charset "UTF-8";
/*
Theme Name: STELLAWORKStheme
Theme URI: http://stella-hr.co.jp/
Description: STELLAWORKSのテーマです。
Author: STELLAWORKS
Author URI: http://stella-hr.co.jp/
Version: v.01
*/
* {
    margin: 0;
    padding: 0;
}
.body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
menu,
video,
audio,
mark,
time,
canvas,
details {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a {
    color: #333;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    line-height: 2;
    letter-spacing: .075rem;
}
a:hover {
    opacity: .7;
}
a img {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
}
section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
figcaption {
    display: block;
}
input,
select {
    vertical-align: middle;
}
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
    color: #333;
    width: 100%;
    min-width: 1025px;
    overflow-x: scroll;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: #fff;
    font-size: 16px;
    line-height: 2;
    letter-spacing: .075rem;
}
img {
    max-width: 100%;
    margin: auto;
    vertical-align: bottom;
}
ul,
li,
dl,
dt,
dd,
form {
    margin: 0px;
    padding: 0px;
    border: 0px;
    list-style: none;
    letter-spacing: normal;
    /* For IE 6/7 */
    *display: inline;
    *zoom: 1;
}
li::marker {
    margin: 0;
    padding: 0;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
ins {
    /* remember to highlight inserts somehow! */
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
table {
    /* markup tables with 'cellspacing="0"' */
    border-collapse: collapse;
    border-spacing: 0;
}
.alc {
    text-align: center !important;
}
.all {
    text-align: left !important;
}
.alr {
    text-align: right !important;
}
.floatL {
    float: left;
}
.floatR {
    float: right;
}
.clr {
    zoom: 1;
}
.clr:after {
    content: ' ';
    display: block;
    clear: both;
    height: 0;
}
.clearboth {
    clear: both !important;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.blue {
  color: #14628b;
}
main {
  padding-top: 105px;
}
/* 動き */
.inviewContents {
	opacity: 0;
  -webkit-transform: translate(0, 40px);
      -ms-transform: translate(0, 40px);
          transform: translate(0, 40px);
	-webkit-transition: .7s;
	-o-transition: .7s;
	transition: .7s;
}
.fadein {
	opacity: 1.0;
	-webkit-transform: translate(0, 0);
	    -ms-transform: translate(0, 0);
	        transform: translate(0, 0);
}
/* 共通 */
@property --ring-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.btn {
  width: 100%;
  position: relative;
   /* 色関連 */
  --_bg: #eb8f0c; /* ボタン内部の背景色 */
  --_border-color: #eb8f0c; /* デフォルトのボーダー色 */
  --_gradient-from: #fa5300; /* 開始色 */
  --_gradient-to: #fa5300; /* 終了色 */
  /* サイズ関連 */
  --_border-width: 3px;
  --_radius: 10px;
  /* アニメーション関連 */
  --_duration: 0.75s;
  --_easing: cubic-bezier(0.4, 0, 0.2, 1);
  --_start-angle: 0deg; /* リングアニメーションの開始角度 */
  /* レイヤー構成（前面（--_foreground）と後面（--_background）） */
  --_foreground: conic-gradient(
    from var(--_start-angle),
    var(--_gradient-from) 0,
    var(--_gradient-to) var(--ring-angle),
    transparent var(--ring-angle) 360deg
  );
  --_background: var(--_border-color);

  /* スタイル適用 */
  display: block;
  background: var(--_foreground), var(--_background);
  padding: var(--_border-width);
  border-radius: var(--_radius);
  transition: --ring-angle var(--_duration) var(--_easing);
}
.btn .btnInn {
color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: var(--_bg);
  padding: 8px 0;
  border-radius: calc(var(--_radius) - var(--_border-width));
    text-align: center;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.btn::after {
  content: '';
    width: 10px;
    height: 10px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    -webkit-transform: translateY(-50%) rotate(-135deg);
        -ms-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
    position: absolute;
    top: 50%;
    right: 20px;
}
@media (any-hover: hover) {
  .btn:hover {
    --ring-angle: 360deg; /* リングアニメーションの終了角度 */
    opacity: 1;
  }
  .btn:hover .btnInn {
    background-color: #eba543;
  }
}
/* header */
header {
  height: 105px;
  width: 100%;
  background-color: #fff;
  position: fixed;
  -webkit-box-shadow: 0px 10px 10px -3px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 10px 10px -3px rgba(0, 0, 0, 0.07);
  z-index: 9999;
}
.header_inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
header h1 {
    max-width: 360px;
}
.header_menubtn {
    display: none;
}
.header_menubg {
    /* width: 75%; */
    width: 50%;
    max-width: 675px;
}
.accodion .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.accodion .menu>li {
    position: relative;
}
.accodion .menu li a {
    font-weight: 500;
    line-height: 1.5;
    display: block;
    width: 100%;
}
.accodion .menu .menu-title {
    font-size: 16px;
    font-weight: bold;
    padding: 5px;
}
.accodion .menu .menu-title.havchild {
    padding: 5px 25px 5px 5px;
    position: relative;
}
.accodion .menu .menu-title.havchild::after {
    position: absolute;
    content: "";
    top: 45%;
    right: 0;
    width: 6px;
    height: 6px;
    -webkit-transform: translate(-50%, -40%) rotate(135deg);
        -ms-transform: translate(-50%, -40%) rotate(135deg);
            transform: translate(-50%, -40%) rotate(135deg);
    border-top: 3px solid #1977b5;
    border-right: 3px solid #1977b5;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}
.accodion .menu .menu-title.havchild:hover::after {
    top: 60%;
    -webkit-transform: translate(-50%, -60%) rotate(-45deg);
    -ms-transform: translate(-50%, -60%) rotate(-45deg);
    transform: translate(-50%, -60%) rotate(-45deg);
}
.accodion .menu .sub-menu {
    position: absolute;
    z-index: 1;
    width: 185px;
    top: 100%;
    padding: 10px !important;
    left: 0;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0 9px 0px rgba(118, 187, 201, .2);
            box-shadow: 0px 0 9px 0px rgba(118, 187, 201, .2);
}
.accodion .menu .sub-menu li {
    width: 100%;
}
.accodion .menu .sub-menu li:not(:last-child) {
    border-bottom: dotted 2px #afafaf;
    margin-bottom: 5px;
}
.accodion .menu .sub-menu li a {
    display: block;
    width: 100%;
    padding: 7px 0;
    font-size: 16px;
    letter-spacing: 0;
}
.accodion .menu li a:hover {
    opacity: .6;
}
/*  */
.header_contact .btn {
  max-width: 200px;
  width: 100%;
  --_border-width: 3px;
  --_radius: 9px;
  margin: 0 0 10px auto;
}
.header_contact .btn::after {
  content: none;
}
.header_contact .btn .btnInn {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: bold;
  padding: 0 10px;
}
.header_contact .btn span {
  display: block;
  width: 23px;
  margin-right: 10px;
}
.header_contact .btn span img {
  display: block;
}
/* footer */
.contact {
  background: url(assets/images/common/contact_bg.jpg) no-repeat top center /cover;
  padding: 60px 0;
  text-align: center;
}
.contact h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 500;
}
.contact_top {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 15px auto 40px;
}
.contact ul li {
  width: 48%;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
}
.contact ul li .btn {
  width: 100%;
  margin: 0 auto;
  --_border-width: 3px;
  --_radius: 15px;
}
.contact ul li .btn::after {
  content: none;
}
.contact ul li .btn .btnInn {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}
.contact ul li a figure {
  margin-right: 15px;
  max-width: 26px;
}
.contact ul li a figure img {
  display: block;
}
.contact ul li:first-child h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.contact ul li:first-child .btn {
  --_bg: #fff; /* ボタン内部の背景色 */
  --_border-color: #14628b; /* デフォルトのボーダー色 */
  --_gradient-from: #67b0d7; /* 開始色 */
  --_gradient-to: #67b0d7; /* 終了色 */
  max-width: 430px;
}
.contact ul li:first-child .btn .btnInn {
  background-color: #fff;
}
.contact ul li:first-child .btn:hover .btnInn {
  background-color: #eef9ff;
}
.contact ul li:first-child .btn .btnInn p {
  font-size: 26px;
  font-weight: 700;
}
.contact ul li:first-child span {
  display: block;
  font-weight: 500;
  margin-top: 20px;
}
.contact ul li:last-child {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact ul li:last-child .contact_btn {
  width: 100%;
}
.contact ul li:last-child .btn {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  max-width: 400px;
}
.contact ul li:last-child .btn .btnInn {
  padding: 12px 0;
}
.contact ul li:last-child .btn:nth-of-type(1) {
--_bg: #0ea5a4; /* ボタン内部の背景色 */
  --_border-color: #0ea5a4; /* デフォルトのボーダー色 */
  --_gradient-from: #046868; /* 開始色 */
  --_gradient-to: #046868; /* 終了色 */
}
.contact ul li:last-child .btn:nth-of-type(1) {
margin-bottom: 20px;
}
.contact ul li:last-child .btn:nth-of-type(1) .btnInn {
  background-color: #0ea5a4;
} 
.contact ul li:last-child .btn:nth-of-type(1) .btnInn figure {
  max-width: 34px;
}
/*  */
.footCont {
  background-color: #e5f0f5;
  padding: 35px 5% 70px;
}
.footCont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1060px;
  margin: 0 auto;
}
.footCont ul li a {
  display: block;
  width: 100%;
  color: #14628b;
  font-weight: bold;
}
.footCont ul li .footCont_sub a {
  font-weight: 500;
  font-size: 15px;
}
.copyright {
  background-color: #14628b;
  text-align: center;
  color: #fff;
font-size: 14px;
padding: 10px 5%;
}
/* 下層ページ */
.breadcrumbs {
  background-color: #ebf1f3;
  padding: 10px 0;
}
.breadcrumbs ul {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumbs ul li {
  font-size: 15px;
  position: relative;
}
.breadcrumbs ul li:not(:last-child) {
  margin-right: 30px;
}
.breadcrumbs ul li:not(:last-child)::after {
  position: absolute;
    content: "";
    top: 50%;
    right: -22px;
    width: 6px;
    height: 6px;
    -webkit-transform: translate(-50%, -40%) rotate(135deg);
        -ms-transform: translate(-50%, -40%) rotate(135deg);
            transform: translate(-50%, -40%) rotate(135deg);
    border-top: 3px solid #1977b5;
    border-left: 3px solid #1977b5;
}
.subTtl {
  margin: 75px auto 0;
  text-align: center;
}
.subTtl h2 {
font-size: 42px;
margin: 0 auto 35px;
}
.subTtl p {
font-size: 18px;
font-weight: 500;
line-height: 2.5;
}
@media only screen and (max-width: 1024px) {
    body {
        min-width: 100%;
        font-size: 14px;
    }
	.pc {
        display: none!important;
    }
    .sp {
        display: block!important;
    }
    .flex {
      display: block;
    }
    main {
      padding-top: 80px;
    }
    /* 共通 */
.btn .btnInn {
  font-size: 16px;
  padding: 4px 0;
}
.btn::after {
    width: 8px;
    height: 8px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    right: 15px;
}
     /* header */
    header {
        height: 80px;
    }
    .header_inner {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    header h1 {
        max-width: 260px;
    }
    .header_menubtn {
        display: block;
        position: relative;
        width: 35px;
        height: 43px;
        display: -ms-flexbox;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        cursor: pointer;
    }
    .header_menubtn span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 1.5px;
        background: #494949;
        position: absolute;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }
    .header_menubtn span.top {
        top: 30%;
    }
    .header_menubtn span.bottom {
        bottom: 30%;
    }
    .open .header_menubtn {
        z-index: 999;
    }
    .open .header_menubtn span.top {
        -webkit-transform: translateY(-50%) rotate(-45deg);
        -ms-transform: translateY(-50%) rotate(-45deg);
        transform: translateY(-50%) rotate(-45deg);
        top: calc(50% - 2px);
    }
    .open .header_menubtn span.bottom {
        -webkit-transform: translateY(-50%) rotate(45deg);
        -ms-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
        bottom: 48%;
    }
    .header_menubg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(248, 245, 242, .8);
        -webkit-backdrop-filter: blur(10px);
                backdrop-filter: blur(10px);
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        visibility: hidden;
        opacity: 0;
        z-index: 100;
        overflow: scroll;
        -webkit-overflow-scrolling: touch;
    }
    /* 開閉用ボタンがクリックされた時のスタイル */
    .open .header_menubg {
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        visibility: visible;
        opacity: 1;
        max-width: 100%;
    }
    /*  */
    .accodion .menu {
        display: block;
        width: 90%;
        max-width: 400px;
        margin: 80px auto 0;
    }
    .accodion .menu .menu-title {
        font-size: 16px;
        padding: 10px 12px;
        border-bottom: 1px solid #363636;
    }
    .accodion .menu li:nth-child(4) .menu-title.havchild {
        margin-top: 10px;
    }
    .accodion .menu .menu-title.havchild {
        padding: 10px 12px;
    }
    .accodion .menu .menu-title.havchild::after {
        content: unset;
    }
    .accodion .menu .menu-title.havchild:hover::after {
        -webkit-transform: unset;
            -ms-transform: unset;
                transform: unset;
    }
    .accodion .menu .sub-menu {
        width: 100%;
        position: static;
        background-color: unset;
        -webkit-box-shadow: unset;
                box-shadow: unset;
        padding: 10px 0 0 !important;
    }
    .accodion .menu .sub-menu li a {
        font-size: 14px;
        padding-left: 30px;
        position: relative;
    }
    .accodion .menu .sub-menu li a::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        display: inline-block;
        width: 10px;
        height: 1px;
        background-color: #363636;
    }
    /*  */
    .header_contact {
position: absolute;
  top: 460px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
    }
    .header_contact .btn span {
  width: 18px;
}
/* footer */
.contact {
  padding: 40px 0;
}
.contact h2 {
  font-size: 24px;
}
.contact_top {
  font-size: 16px;
  margin: 10px auto 30px;
}
.contact ul li {
  width: 100%;
  padding: 15px 5%;
}
.contact ul li:first-child {
  margin-bottom: 20px;
}
.contact ul li .btn .btnInn {
  padding: 7px 0;
}
.contact ul li a figure {
  margin-right: 10px;
  max-width: 20px;
}
.contact ul li:first-child h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.contact ul li:first-child .btn .btnInn p {
  font-size: 20px;
}
.contact ul li:first-child span {
  margin-top: 10px;
}
.contact ul li:last-child .btn .btnInn {
  padding: 10px 0;
}
.contact ul li:last-child .btn:nth-of-type(1) {
margin-bottom: 10px;
}
.contact ul li:last-child .btn:nth-of-type(1) .btnInn figure {
  max-width: 26px;
}
/*  */
.footCont {
  padding: 20px 5%;
}
.footCont ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 380px;
  margin: 0 auto;
}
.footCont ul li {
  width: 45%;
  margin-bottom: 10px;
}
.footCont ul li a {
font-size: 16px;
}
.footCont ul li .footCont_sub a {
  font-size: 14px;
}
.copyright {
font-size: 10px;
}
/* 下層ページ */
.breadcrumbs {
  padding: 5px 5%;
}
.breadcrumbs ul li {
  font-size: 14px;
}
.breadcrumbs ul li:not(:last-child) {
  margin-right: 25px;
}
.breadcrumbs ul li:not(:last-child)::after {
    right: -20px;
    width: 5px;
    height: 5px;
}
.subTtl {
  margin: 40px auto 0;
}
.subTtl h2 {
font-size: 26px;
line-height: 1.5;
margin: 0 auto 15px;
}
.subTtl p {
font-size: 16px;
line-height: 2;
}
/* scroll-hint */
.scroll-hint-text {
    line-height: 1.5;
    letter-spacing: 0;
}
}