h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li {
    font-size: 3.6vw;
}
.TopColumWrap h4{
    padding: 1.5vw 2vw;
}
.SwipeTopImage {
    width: 100%;
}

.CommonFootContentAft02 p {
    padding: 0;
}

#home .TopFeatureAft::after {
    content: unset
}

button {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    border: 0;
    outline: 0;
    background: transparent;
    border-radius: 0;
    text-align: inherit;
}

button:hover {
    cursor: pointer;
}

header {
    position: fixed;
    height: 70px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8;
}

.SpHeadBlock {
    color: #fff;
    font-size: 19px;
    background-color: #fc8c5c;
    width: 35vw;
    height: 80px;
    border-radius: 0 0 0 11px;
    position: absolute;
    right: 0;
}

.SpLogo {
    position: absolute;
    top: 50%;
    left: 3vw;
    transform: translateY(-50%);
}

.SpLogo img {
    width: 30vw;
}

.SpHeadBlock>div {
    display: flex;
    align-items: center;
    position: absolute;
    top: calc(50% - 5px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    z-index: 100;
}

.SpHeadBlock>div p {
    color: #fff;
}


main {
    padding-top: 0;
}

.CommonFvPt,
.Top,
main>section:first-of-type {
    padding-top: 90px !important;
}

.TopStepTitle {
    margin-top: 2vw;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
    /* position: fixed;
    top: 16px;
    right: 16px; */
    width: 35px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
    /* 線の長さと高さ */
    width: 100%;
    height: 3px;
    /* バーガー線の色 */
    background-color: #fff;
    /* バーガー線の位置基準として設定 */
    position: relative;
    transition: 0.2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
    content: "";
    /* 基準線と同じ大きさと色 */
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: 0.2s;
}


.btn-line::before {
    /* 上の線の位置 */
    transform: translateY(-8px);
}


.btn-line::after {
    /* 下の線の位置 */
    transform: translateY(8px);
}

/***** メニューオープン時 *****/
.btn-line.open {
    /* 真ん中の線を透明に */
    background-color: transparent;
}

.btn-line.open::before,
.btn-line.open::after {
    content: "";
    transition: 0.2s;
}

.btn-line.open::before {
    /* 上の線を傾ける */
    transform: rotate(45deg);
}

.btn-line.open::after {
    /* 上の線を傾ける */
    transform: rotate(-45deg);
}

/* ボタンフォーカス時の装飾 */
/* .btn,
.btn,
.btn:focus .btn-line::after {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
} */

.btn:focus .btn-line.open {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* .btn,
.btn:focus .btn-line.open::after {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
} */

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/
.menu {
    position: fixed;
    /* メニューの位置マイナス指定で画面外に */
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
    /* メニューを縦に */
    display: block;
    flex-direction: unset;
    color: #efefef;
    background-color: rgba(252, 140, 92, 1);
    transition: transform 0.3s;
    z-index: 10;
}

nav ul li:first-of-type {
    border-top: solid 1px #fff;
}

nav ul li {
    text-align: left;
    flex-grow: unset;
    border-bottom: solid 1px #fff;
    padding: 3vw 0;
}

nav ul {
    align-items: unset;
}

.menu-list a {
    font-size: 5vw;
    color: #fff;
    /* width: 100%;
    height: 100%; */
    /* メニューテキスト位置をリスト内中心に */
    /* display: flex;
    justify-content: center;
    align-items: center; */
}

nav ul li a span {
    font-size: 4vw
}

.menu-list:hover {
    color: #333;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
    transform: translateX(0%);
    padding: 20vw 10vw;
    overflow-y: scroll;
}

/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 950px) {
    .btn {
        display: none;
    }

    .menu {
        position: fixed;
        transform: translateX(0);
        width: 100%;
        height: 100px;
        /* メニューを横に */
        display: flex;
        flex-direction: row;
    }
}

/**************** ここまで、メニューのスタイリング ****************/
.container14 {
    max-width: unset;
    margin: auto;
}

.container12 {
    max-width: 94vw;
    margin: auto;
}

.container10 {
    max-width: 92vw;
    margin: auto;
}

.FvImage {
    margin: unset;
    padding-top: 8vw;
    padding-bottom: 10vw;
}

.CommonFvWrap {
    display: block;
}

.CommonFvImage {
    width: 100%;
}

.AboutFv .CommonFvImageTitle {
    width: 100%;
}

.CommonFvWrap h2 {
    font-size: 15vw;
}

.CommonFvWrap h3 {
    padding: 5px 30px;
    font-size: 5.6vw;
    display: inline-block;
}

.AboutSection h2 {
    font-size: 5vw;
}

.CommonBird::before {
    width: 36vw;
    height: 60px;
}

.AboutWrap {
    display: block;
    padding: 5vw 0 20vw;
}

.AboutWrap .AboutLeftBlock {
    width: 100%;
    margin: unset;
}

.AboutWrap div {
    width: 90%;
    margin: auto;
    padding-bottom: 5vw;
}

.AboutSectionAft::after {
    width: 19vw;
    height: 150px;
    bottom: 15px;
}

.AboutSectionAft::before {
    width: 15vw;
    height: 30px;
    left: 1vw;
    bottom: 50px;
}

.AboutStateWrap div {
    width: 48%;
}

.Title .TitleBold {
    font-size: 6vw;
    padding-top: unset;
}

.Title span {
    font-size: 6vw;
}

.AboutStateAft::before {
    left: 13vw;
}

.AboutStateWrap div {
    margin-bottom: 4%;
}

.AboutState {
    padding: 10vw 0 20vw;
}

.AboutInfo {
    padding-top: 12vw;
}

.AboutInfoAft::before {
    width: 14vw;
    height: 80px;
    bottom: -20px;
}

.AboutInfoAft::after {
    width: 11vw;
    bottom: 25px;
}

.AboutInfoTable th {
    padding: 20px 10px;
    width: 31%;
}

.button17 a {
    width: 84vw;
}

.CommonRecruit .TopTargetTitle::before {
    top: 45px;
    right: 10vw;
    width: 13vw;
}

.CommonRecruit .TopTargetTitle::after {
    left: 16vw;
    top: 12vw;
    width: 6vw;
}

.SpRecruitSubTitle {
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #f69898;
    font-size: 4.5vw;
    text-align: center;
    margin-bottom: 30px;
}

.list205 ul li {
    font-size: 3.5vw;
}

.list205 ul li:before {
    width: 10px;
    height: 10px;
}

.list205 ul li {
    padding: 0 0 10px 5vw;
    line-height: 1;
}

.CommonRecruitLeft {
    width: 45%;
}

.CommonRecruitRight {
    width: 50%;
}

.CommonRecruit {
    padding: 10vw 0 20vw;
}

.CommonContactWrap {
    flex-wrap: wrap;
}

.CommonContact01 {
    width: 100%;
    text-align: center;
}

.CommonContact02 {
    width: 48%;
}

.CommonContact03 {
    width: 48%;
}

.CommonContactConts {
    width: 90%;
    background-color: #fff;
    border: 1px dotted #ff783e;
    border-radius: 11px;
    padding: 2%;
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    margin: auto;
}

.AboutInfoAft02::after {
    width: 10vw;
    height: 52px;
    right: 0;
    bottom: -33px;
}

.CommonFvImageTitle {
    padding-right: unset;
}

.footWrap {
    display: block;
}

.FootSnsWrap {
    position: unset;
}

.CommonContact01 h3 {
    font-size: 8vw !important;
}

.CommonFootContent h3 {
    font-size: 5vw;
}

.CommonAft::after {
    width: 9vw;
    height: 80px;
    top: -12vw;
    right: 0;
    z-index: 2;
}

.CommonAft::before {
    width: 8vw;
    height: 80px;
    top: -13vw;
    left: 0;
}

.CommonFootContent {
    background-color: #fff0ea;
    padding: 40vw 0 30vw;
    margin-top: 90px;
}

.CommonFootContentAft02::after {
    width: 30vw;
    height: 99px;
    bottom: -5vw;
    right: 0;
}

.CommonFootContentAft02::before {
    width: 30vw;
    height: 99px;
    bottom: -3vw;
    left: 0;
}

.FootAd {
    text-align: center;
    color: #fff;
    font-size: 3.5vw;
    letter-spacing: 1px;
}

.FootSnsWrap ul {
    justify-content: center;
    padding-bottom: 5vw;
}

#ABOUT .AboutWrap {
    display: block;
    padding: 0 0 15vw;

}

.FTGAft::before,
.FTGAft::after {
    display: none;
}

.PosSpAbout {
    position: relative;
    right: 5%;
}

.RBClo::after {
    width: 29vw;
    bottom: 10vw;
    right: -100px;
}

.LRCro::after {
    width: 13vw;
    height: 70px;
    right: 6vw;
}

.LRCro::before {
    width: 25px;
    height: 60px;
    bottom: 32px;
    left: 5vw;
}

#ABOUT .HuBlock {
    width: auto;
}

.HuInnerBlock {
    gap: 5vw;
}

/* 
.TopTargetTitle::before,
.TopTargetTitle::after {
    display: none;
} */

.NeedTitleSAft::after {
    right: 2vw;
}

.NeedWrap {
    width: auto;
}

.SPNeedImage {
    width: 100vw;
    position: relative;
    right: 3vw;
}

.Title {
    margin-bottom: 5vw;
}

.TopTarget_Step {
    padding: 0 0 15vw;
}

.TopStepWrap {
    display: block;
}

.TopStepBlock {
    width: 100%;
}

.AboutShirushi img {
    width: 7%;
    transform: rotate(90deg);
}

.TopStepWrap .AboutShirushi {
    margin: auto 1%;
    text-align: center;
    display: block;
}

.ServiceSection02 .TopStepTitle {
    margin-top: unset;
}

.TopPhilosophyTitle h3 {
    font-size: 5vw;
}


.TopPhilosophy::after {
    display: none;
    content: unset;
}

.TopPhilosophy::before {
    background-image: url(../img/Common/three02.png);
    width: 30vw;
    height: 25vw;
    top: -7vw;
    left: 0;
    transform: rotateX(180deg);

}

.TopPhilosophyContents {
    width: unset;
    padding: 0 3vw;
}

.button17 .SpBtnTop {
    width: 90vw;
}

.TopServiceWrapper {
    display: block;
}

.TopServiceWrapper .TopServiceInnerBlock01 {
    width: 100%;
}

.TopServiceTitle::before {
    display: unset;
    content: unset;
}

.TopServiceTitle {
    margin-left: unset;
}

.TopServiceTitle h2 {
    font-size: 15vw;
}

.TopServicePosition::after {
    width: 35vw;
}

.TopSubService p {
    margin-bottom: 3vw;
}

.TopServiceWrapper .TopServiceInnerBlock02 {
    width: 100%;
    padding-left: unset;
}

.TopSubService p {
    font-size: 4.5vw;
    padding: 4vw 7vw;
}

.TargetBlock {
    width: 48%;
}

.TargetBlockWrap {
    display: block;
}

.TargetInnerBlock {
    margin-bottom: 3vw;
}

.TopTargetWrap {
    justify-content: space-between;
}

.RLItems::before,
.RLItems::after {
    display: none;
    content: unset;
}

.TopTarget_Step .TopTargetTitle::before {
    width: 45px;
    right: 4vw;
}

.TopTarget_Step .TopTargetTitle::after {
    top: 30px;
    left: 4vw;
}

.TopStepTitle .TitleAft::after {
    width: 14vw;
    height: 65px;
    top: -35px;
    right: 0px;
}

.TopTarget_Step .TopStepBlock {
    width: 85%;
    margin: auto auto 2vw auto;
}

.TopScope_CostWrap {
    display: block;
}

.TopScope_CostBlock {
    width: 100%;
}

.TopScope_CostBlock>div {
    width: auto;
    padding: 10vw 5vw;
}

.TopScope_CostBlock .ImageSpan img {
    width: 100%;
}

#home .TopTarget_Step {
    padding: 0 0 35vw;
}

#home .TopScope_CostBlockLeftAft::before {
    left: 0;
}

#home .TopScope_CostBlockLeftAft::after {
    right: 0;
    background-image: url(../img/Common/crover02.png);
    width: 90px;
    height: 60px;
    top: -50px;
}

#home .TopScope_CostInnerBlockLeftAft::before {
    contain: unset;
    display: none;
}

.TopScope_CostTitleOrange h4 {
    font-size: 4vw;
}

.SpPinkBtn a {
    width: 90vw;
}

.SPCenter {
    text-align: center;
    display: block;
}

#home .TopScope_CostBlockRightAft::before {
    width: 70px;
    height: 110px;
    top: 0;
    right: 0px;
}

.TopFeatureWrap .TopFeatureInnerBlock {
    width: 48%;
}

.TopFeature .TopTargetTitle::before {
    background-image: url(../img/Common/CommonNonLeft.png);
    width: 120px;
    height: 110px;
    top: -20vw;
    left: 0;
    right: unset;
}

.TopFeature .TopTargetTitle::after {
    background-image: url(../img/Common/CommonNonRight.png);
    width: 80px;
    height: 110px;
    top: -20vw;
    left: unset;
    right: 0;
    z-index: 2;
}

.TopStaff .TopStaffAft::after {
    width: 128px;
    height: 130px;
    right: unset;
    top: -170px;
    left: 0;
    z-index: 2;
    transform: rotate(240deg);
}

.TopStaff .TopStaffAft::before {
    top: -130px;
    left: unset;
    right: 0;
    z-index: 2;
}

.TopStaffWrapper {
    padding-left: unset;
    margin: 0 20vw;
}

.TopStaff .swiper-button-next,
.TopStaff .swiper-button-prev {
    margin-top: unset;
    z-index: 5;
}

.TopStaff .TopTargetTitle::before,
.TopStaff .TopTargetTitle::after {
    content: unset;
    display: none;
}

.TopStaff .TopTargetTitle {
    padding: 0px 5vw 0;
}

.TopQAAft::before {
    width: 25vw;
    height: 120px;
    top: 15px;
    left: 0;
    z-index: 2;
}

.TopQAAft::after {
    width: 35vw;
    height: 160px;
    top: -20px;
    right: 3vw;
}

.TopQAAft .TopTargetTitle::before {
    display: unset;
    content: unset;
}

.TopQAQuesTitle h3 {
    font-size: 4vw;
}

.TopQAInnerBlock {
    padding: 5vw;
}

.TopQAAft02::before {
    width: 25vw;
    height: 160px;
    bottom: -25vw;
    left: 0;
}

.TopQAAft02::after {
    width: 22vw;
}

.TopColumnWrapper {
    display: block;
}

.TopColumnBlock {
    width: 100%;
}

.TopColumnBlock h3 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;

    /*IE対策*/
    line-height: 1.5em;
    max-height: 4.5em;
}

#home .TopFeatureAft::before {
    content: unset;
    display: unset;
}

.TopNewsWrapper {
    display: block;
}

.TopNewsTitle {
    width: 100%;
}

.TopNewsContents {
    width: 100%;
}

.news-list .item a {
    flex-wrap: wrap;
}

.TopNewsTitle::after {
    width: 35vw;
    height: 140px;
    position: absolute;
    bottom: 10vw;
    left: 0;
}

#home .TopNewsTitle {
    text-align: center;
}

.news-list .item .title {
    font-size: 4.5vw;
    padding-top: 2vw;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;

    /*IE対策*/
    line-height: 1.5em;
    max-height: 4.5em;
}

.TopCompany .TopServiceWrapper {
    display: block;
}

.TopCompany .TopServiceWrapper .TopServiceInnerBlock02 {
    width: 100%;
}

.TopCompany .TopServiceWrapper .TopServiceInnerBlock01 {
    width: 85%;
    margin: auto;
}

.TopCompanyAft::before {
    width: 60px;
    height: 100px;
    top: -45vw;
    right: 10vw;
}

.TopCompany .TopServiceWrapper .TopServiceInnerBlock02 .swiper {
    margin: auto;
}

.TopCompany .TopServiceWrapper .TopServiceInnerBlock02 {
    width: 90%;
    margin: 20vw auto 10vw;
}

.TopCompany .button15 {
    text-align: unset;
}

.TopCompany .button15 a {
    width: 80vw;
}

.TopCompany03::before {
    width: 100px;
    height: 130px;
    bottom: 7vw;
    transform: rotate(-120deg);
    left: 7vw;
    z-index: 2;
}

.TopQAQuesTitle {
    align-items: center;
}

#about .TopTargetTitleFlow::before {
    display: none;
    content: unset;
}

#about .AboutFlowTitle::after {
    top: 0;
    right: 1vw;
}

#about #ABOUT .ServiceSection02 .TopStepBlock {
    width: 80vw;
    margin: auto auto 3vw;
}

#about .TopCompany {
    padding: 50px 0 260px;
}

#about .BtThree::before {
    width: 100px;
    height: 100px;
    bottom: -35vw;
}

#about .BtThree::after {
    width: 90px;
    height: 100px;
    bottom: -50vw;
}

.PriceServiceBlock {
    display: block;
}

.PriceServiceBlock .PriceServiceImage {
    width: 100%;
}

.PriceServiceBlock>div {
    width: 100%;
}

#about .PriceService .TopScope_CostTitleOrange>div {
    padding: unset;
}

.PriceService {
    padding: 50px 3vw 60px;
}

#about .button17 a {
    width: 94vw;
}

#service .CommonFvWrap h3 {
    padding: 5px 3vw;
}

#service .TopTargetTitle {
    padding: 30vw 3vw 5vw;
}

#service .TopTargetTitle::after {
    top: 40vw;
    left: 15vw;
}

#service .CommonBird::before {
    width: 140px;
    height: 85px;
    position: absolute;
    top: 15vw;
    right: 0;
    z-index: 5;
}

.ServiceBlock h3 {
    color: #ff783e;
    font-size: 4.3vw;
    margin-bottom: 3vw;
}

.ServiceBlock p {
    font-size: 3.5vw;
}

.ServiceBlock>div {
    width: 45%;
}

.ServiceBlock>div:first-of-type {
    width: 50%;
}

.SAlt01::after {
    background-image: url(../img/Common/Item02.png);
    width: 30px;
    height: 30px;
    bottom: -10vw;
    left: 0;
    transform: rotate(-45deg);
}

.SAlt03::after {
    width: 27px;
    height: 20px;
    top: unset;
}

.SAlt02::after {
    width: 40px;
    height: 50px;
    bottom: -15vw;
    right: 1vw;
}

.SAlt04::after {
    width: 51px;
    height: 44px;
    bottom: -5vw;
    right: 0px;
    z-index: 2;
}

.SAlt06::before {
    display: none;
    content: unset;
}

.SAlt05::after {
    width: 30px;
    height: 119px;
    bottom: -30vw;
    left: 25vw;
}

.SAlt06::after {
    width: 60px;
    height: 119px;
    bottom: -16vw;
    right: 0;
}

.CommonSectionPb {
    padding-bottom: 20vw;
}

#service .AboutFlowTitleStepAlt::before {
    width: 60px;
    height: 82px;
    top: -45px;
    right: 0px;
    z-index: 2;
}

#service .ServiceSection02 .TopStepBlock {
    width: 80vw;
    margin: auto auto 3vw;
}

#service .AboutFlowTitleStepAlt02::after {
    width: 75px;
    height: 120px;
    bottom: 100px;
    right: 3vw;
}

#service .AboutFlowTitleStepAlt02::before {
    width: 90px;
    height: 120px;
    bottom: 75px;
    left: 3vw;
}

#service .list205 h3 {
    font-size: 5vw;
    margin-bottom: 3vw;
}

#service .ServiceCommonSubTitle::after {
    display: none;
    content: unset;
}

.SpServiceBtn a {
    width: 94vw;
}

#staff .CommonFvWrap h3 {
    padding: 5px 3vw;
}

#staff .TopTargetTitle {
    padding: 30vw 3vw 5vw;
}

#staff .CommonBird::before {
    width: 140px;
    height: 85px;
    position: absolute;
    top: 15vw;
    right: 0;
    z-index: 5;
}

#staff .TopTargetTitle::before,
#staff .TopTargetTitle::after {
    display: none;
    content: unset;
}

#staff .StaffWrapper {
    display: block;
}

#staff .StaffBlock {
    width: 85vw;
    margin: 0 auto 8%;
}

#staff .StaffBlock>div>div {
    display: block;
}

.SpStaffWrap {
    display: flex;
    justify-content: space-between;
}

.SpStaffWrap>div {
    width: 68%;
}

.SpStaffWrap>div:last-child {
    width: 26%;
}

.StaffBlock h3 {
    font-size: 6vw;
}

.StaffBlock h4,
.StaffBlock p {
    font-size: 3.6vw;
}

.StaffBlock p {
    margin-bottom: 2vw;
}

.StaffBlock span {
    margin-top: unset;
}

#Originals .CommonFvImageTitle {
    width: 100%;
}

.NewsWrapper {
    display: block;
    width: 90vw;
    margin: auto;
}

.CommonFvImageTitle {
    width: 100%;
}

.side {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.content {
    width: 100%;
}

.selectwrap {
    position: relative;
    width: 48%;
}

.selectwrap::after {
    position: absolute;
    top: 30%;
    /* 矢印の位置 */
    right: 15px;
    /* 矢印の位置 */
    width: 10px;
    /* 矢印の大きさ */
    height: 10px;
    /* 矢印の大きさ */
    border-top: 3px solid #fc8c5c;
    /* 矢印の線 */
    border-right: 3px solid #fc8c5c;
    /* 矢印の線 */
    -webkit-transform: rotate(135deg);
    /* 矢印の傾き */
    transform: rotate(135deg);
    /* 矢印の傾き */
    pointer-events: none;
    /* 矢印部分もクリック可能にする */
    content: "";
}

.select {
    appearance: none;
    /* デフォルトの矢印を消す */
    width: 100%;
    /* セレクトボックスの幅 */
    height: 45px;
    /* セレクトボックスの高さ */
    /* セレクトボックスの背景色 */
    border-bottom: solid 2px #fc8c5c;
    border-top: unset;
    border-left: unset;
    border-right: unset;
    /* セレクトボックスのデフォルトの枠線を消す */
    border-radius: 2px;
    /* セレクトボックスの四隅の丸み */
    color: #fc8c5c;
    /* セレクトボックスの文字色 */
    font-family: 'Kiwi Maru', serif;
    padding: 10px;
    /* セレクトボックスの内側の余白 */
    cursor: pointer;
}

select:focus {
    outline: none;
    /* focus 時のデフォルトの枠線を消す */
}

::-ms-expand {
    display: none;
    /* IE 対応( select のデフォルト矢印を消す) */
}

.contentBlock .contentTag {
    font-size: 3.3vw;
}

.contentBlock .contentTag {
    padding: 3px 3vw 4px;
}

.Check {
    margin-top: -8vw;
}

.Check span {
    font-size: 4vw;
}

.contentBlock h3 {
    font-size: 5vw;
    padding: 2vw 0 0 0;
    margin-bottom: 3vw;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    /*IE対策*/
    line-height: 1.5em;
    max-height: 4.5em;
}

.RecruitTitle {
    font-size: 6vw;
}

.RecruitSubTitle {
    font-size: 6vw;
}

.HuInnerBlock {
    /*display: block;*/
    display: flex;
    gap: unset;
}

.HuBlock {
    padding: 5vw 5vw 0 5vw;
}

.HuBlockRecruit {
    padding: 5vw;
}

.HuBlockRecruit p {
    font-size: 3.6vw;
}

#recruit .list205 ul {
    padding: unset;
}

#recruit .list205 ul li {
    padding: 0 0 20px 5vw;
}

#recruit .list205 ul li:before {
    top: 0;
}

#recruit .HuBlock02 {
    text-align: left;
}

#recruit .RecruitSectionBlock {
    display: block;
}

#recruit .RecruitSectionBlock div {
    width: 90%;
    margin: auto
}

#recruit .TopStepBlock {
    width: 85%;
    margin: auto auto 3vw auto;
}

#recruit .RecruitSectionBlock div img {
    width: 95%;
}

#recruit .RecruitSectionBlock div h3 {
    font-size: 5vw;
}

#recruit .CommonSection {
    padding-bottom: 20vw;
}

.RecruitTable th,
.RecruitTable td {
    display: block;
}

.RecruitTable th {
    width: auto;
}

.CommonFvNonWrap h2 {
    font-size: 15vw;
    font-weight: bold;
    color: #ff783e;
}

.CommonFvNonWrap h2 {
    font-size: 12vw;
}

.CommonFvNonWrap h3 {
    font-size: 6vw;
    padding: 4px 5vw;
    text-align: center;
}

.CommonFvNonWrap::before {
    width: 80px;
    height: 60px;
}

.CommonFvNonWrap::after {
    width: 50px;
    height: 75px;
}

.ContactFlow .ContactActive p,
.ContactFlow div p {
    font-size: 4vw
}

.table-list th {
    width: 100%;
}

.contact-Check {
    display: block;
}

.table-list td {
    padding: 5vw 0px 10vw;
    grid-template-columns: unset;
}

.privacySection p {
    font-size: 4vw;
}

.privacySection h3,
.WeightTitle {
    font-size: 4.5vw;
}

#download .CommonFvNonWrap::after,
#download .CommonFvNonWrap::before {
    display: none;
    content: unset;
}

.downloadWrap {
    display: block;
    padding-bottom: 20vw;
}

.downloadBlock {
    width: 100%;
    padding: 0 0 20vw 0;
    text-align: center;
}

.downloadTop {
    padding-bottom: 10vw;
}

.AccessFv .CommonFvImageTitle {
    width: 100%;
}

#access .AccessInfoAft::before {
    width: 90px;
    height: 86px;
}

#access .AccessInfoAft::after {
    width: 85px;
}

.AccessMAp {
    width: 100%;
}

#access .AccessAB::before {
    width: 75px;
    height: 86px;
}

#access .AccessAB::after {
    width: 60px;
    height: 100px;
}

.contact-table {
    table-layout: fixed;
}

.input-area02 {
    width: 100%;
}

.table-list td>span {
    display: block;
    margin-bottom: 3vw;
}

.mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: unset !important;
}

.contentImage img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.side {
    margin-bottom: 10vw;
}

.AboutStateWrap .ASWImage {
    width: 100%;
}

.TargetInnerBlockLeft img {
    width: 100%;
    height: 40vw;
    object-fit: cover;
}

.CommonFv {
    padding: 30px 0 15vw;
}

.CommonBird::before {
    top: -6vw;
    width: 31vw;
    height: 15vw;
}

#recruit .container10 {
    padding-top: 10vw;
}

#access .mb250 {
    margin-bottom: 20vw;
}

#contact .PrivacyTitle {
    padding-top: 0;
}

.sendWrap h3 {
    font-size: 5vw;
    margin-bottom: 5vw;
}

.sendWrap p {
    line-height: 2;
}

#about-us .CommonBird::before {
    top: -13vw;
}

.CommonFv img,
.CommonFvPt img {
    width: 100%;
}

.CommonFv>div>div>div,
.CommonFvPt>div>div>div {
    text-align: center;
}

.CommonSection {
    padding-bottom: 15vw;
}

.FvImage img {
    width: 95%;
}

.PcBlock {
    display: none;
}

/*確認中*/
.CommonRecruitRight img {
    height: 35vw;
    object-position: right;
    border-radius: 15px;
    object-fit: cover;
}

/*確認中*/