@charset 'UTF-8';
/* 中ページ（レギュラーページ） */

/* CSS読み込み */
@import url("ress.css");
@import url("common.css");


/* -----------------------------------------------------------------------------
>> PC用(共通)
----------------------------------------------------------------------------- */
/* 共通 */
.head__inner {
    border-bottom: 1px solid #FFF;
}
.head__inner nav .now {
    position: relative;
}
.head__inner nav .now::after {
    content: "";
    display: block;
    position: absolute;
    top: 23px;
    left: 50%;
    right: 50%;
    width: 1px;
    height: 30px;
    background-color: #FFF;
}
.main_visual {
    position: relative;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    border-radius: 0 0 20px 20px;
}
.main_visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100vh;
    border-radius: 0 0 20px 20px;
    background: rgb(93, 192, 214);
    background: linear-gradient(60deg, rgba(0, 191, 126, 1) 0%, rgba(93, 192, 214, 1) 100%);
    mix-blend-mode: multiply;
}
.main_visual .copyright {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 22px;
}

.main_visual__inner {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 60px;
    z-index: 1;
}
.main_visual__inner .main_visual__head {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}
.main_visual__inner .main_visual__head h2 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 2.3125rem;
    color: #FFF;
}
.main_visual__inner .main_visual__head h2 span {
    font-size: 1.68755rem;
}
.main_visual__inner .main_visual__head ul {
    position: absolute;
    top: calc(2.3125rem + 27px + 57px + 31px);
    left: 0;
    font-size: 1.125rem;
}
.main_visual__inner .main_visual__head ul li {
    margin-bottom: 12px;
}
.main_visual__inner .main_visual__head ul li::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 12px;
    border-radius: 100%;
    background-color: #E8E44B;
} 
.main_visual__inner .main_visual__head ul li a {
    color: #FFF;
} 
.main_visual__inner .main_visual__head ul li a:hover {
    color: #E8E44B;
}

.content {
    margin-top: -26px;
}

.tab__menu {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 50px;
    padding: 0;
    margin: 0;
    margin-bottom: 31px;
}
.tab__menu li {
    /* position: relative; */
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 431px;
    width: 100%;
    height: 134px;
    margin-right: 20px;
    background-color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s;
}
.tab__menu li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.tab__menu li em {
    position: absolute;
    bottom: -23px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 100%;
    background: url('../img/icon__circle_color.svg') no-repeat center center;
    margin-left: auto;
}
.tab__menu li em img {
    transform: rotate(90deg);
    transition: 0.3s;
}
.tab__menu li em:hover img {
    margin-bottom: -20px;
}
.tab__menu li:hover,
.tab__menu li.active {
    background: rgba(0, 191, 126, 0.35);
}
.tab__menu li:last-of-type {
    margin-right: 0px;
}
.panel {
    display: none;
}
.panel.show {
    display: flex;
    flex-direction: column;
}





#js__accordion .accordion {
    background-image: url('../img/bg__cableway_01.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(255, 255, 255, 0.9);
    background-blend-mode: lighten;
    background-size: cover;
    border-radius: 20px;
}
#js__accordion .accordion {
    max-width: 1280px;
    width: 100%;
    /* margin: 0 auto 73px auto; */
    margin: 0 auto 34px auto;
}
#js__accordion .accordion__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 124px;
    background-color: #FFF;
    border: 1px solid #929292;
    border-radius: 10px;
    padding: 0 50px;
    font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro';
    font-weight: 600;
    font-size: 1.625rem;
    cursor: pointer;
}
#js__accordion .accordion__head span {
    display: flex;
    flex: 1;
}
#js__accordion .accordion__head span > div {
    flex: 1;
}
#js__accordion .accordion__head em {
    width: 110px;
    margin: 0 11px 0 0;
    color: #00BF7E;
}
#js__accordion .accordion__head em img {
    margin-right: 6px;
}
#js__accordion .accordion__head::after {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    border-radius: 100%;
    background-color: #E8E44B;
    background-image: url('../img/icon__plus.svg');
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.3s;
}
#js__accordion .accordion__head.open::after {
    background-image: url('../img/icon__minus.svg');
}
#js__accordion .accordion .accordion__body {
    display: none;
}
#js__accordion .accordion .accordion__body .body__inner {
    display: flex;
    justify-content: space-between;
    padding: 53px 40px 80px 74px;
}
#js__accordion .accordion__body img {
    max-width: 482px;
    max-height: 482px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    margin-left: 5%;
}
#js__accordion .accordion__body video {
    max-width: 482px;
    max-height: 482px;
    /* width: 100%; */
    height: 100%;
    border-radius: 20px;
    margin-left: 5%;
}
#js__accordion .accordion__body h6 {
    display: inline-block;
    margin-bottom: 33px;
    padding: 9px 27px;
    background: rgb(93, 192, 214);
    background: linear-gradient(60deg, rgba(0, 191, 126, 1) 0%, rgba(93, 192, 214, 1) 100%);
    font-weight: 800;
    font-size: 1.25rem;
    color: #FFF;
}
#js__accordion .accordion__body p {
    /* max-width: 470px; */
    flex: 1;
    width: 100%;
    line-height: 2;
    font-weight: 600;
}
#js__accordion .accordion__body .body__inner div p:not(:last-child) {
    margin-bottom: 3em;
}
#js__accordion .accordion__body p em {
    color: #E8E44B;
}

#js__accordion .cableway_02 {
    background-image: url('../img/photo__cableway_02.webp');
}
#js__accordion .sales_planning_01 {
    background-image: url('../img/photo__sales_planning_01.webp');
}
#js__accordion .sales_planning_02 {
    background-image: url('../img/photo__sales_planning_02.webp');
}
#js__accordion .sales_planning_03 {
    background-image: url('../img/photo__sales_planning_03.webp');
}
#js__accordion .sales_planning_04 {
    background-image: url('../img/photo__sales_planning_04.webp');
}
#js__accordion .sales_planning_05 {
    background-image: url('../img/photo__sales_planning_02.webp');
}
#js__accordion .general_affairs_01,
#js__accordion .general_affairs_02,
#js__accordion .general_affairs_03 {
    background-image: url('../img/photo__general_affairs_01.jpg');
}



/* ジェイ・マウンテンズ・セントラルを知る */
#company .main_visual {
    background-image: url('../img/visual_company.webp');
}
#company .history {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('../img/bg__history.webp') no-repeat center center;
    background-size: cover;
    padding: 100px 0 139px 0;
}
#company .history h3 {
    margin-bottom: 62px;
}
#company .history p {
    max-width: 980px;
    line-height: 2;
    font-weight: 600;
    color: #1F1D1B;
}
#company .infographics {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 66px 0 86px 0;
}
#company .infographics h3 {
    margin-bottom: 49px;
}
.img__cover {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 589px;
}
.img__cover--2 {
    height: 380px;
}
#company .philosophy {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 74px 0 139px 0;
}
#company .philosophy h3 {
    margin-bottom: 45px;
}
#company .philosophy h4 {
    display: block;
    max-width: 980px;
    width: 100%;
    margin-bottom: 1em;
    text-align: left;
    font-size: 1.5625rem;
}
#company .philosophy p {
    max-width: 980px;
    line-height: 2;
}
#company .message {
    display: flex;
    justify-content: center;
    background: url('../img/bg__message.webp') no-repeat top center;
    background-size: 100%;
    padding: 36vw 0 83px 0;
}
#company .message__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 980px;
    width: 100%;
}
#company .message h3 {
    position: absolute;
    top: -90px;
    left: 10px;
    z-index: 1;
    /* margin-bottom: 38px; */
}
#company .message p {
    max-width: 980px;
    width: 100%;
    padding: 60px 64px;
    background-color: rgba(255, 255, 255, 0.51);
    line-height: 2;
    font-weight: 600;
}

/* 仕事を知る */
#works .main_visual {
    background-image: url('../img/visual_works.webp');
}
#works .industry {
    display: flex;
    justify-content: center;
    background: url('../img/bg__industry.webp') no-repeat center center;
    background-size: cover;
    margin-bottom: 69px;
    padding: 100px 0 378px 0;
}
#works .industry__inner {
    display: flex;
    justify-content: space-between;
    max-width: 980px;
    width: 100%;
}
#works .industry__inner > div {
    width: 450px;
    padding-top: 29px;
    color: #FFF;
}
#works .industry__inner h4 {
    margin-bottom: 29px;
    font-size: 2.875rem;
    font-weight: 200;
    color: #FFF;
}
#works .industry__inner h5 {
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid #fff;
    font-size: 1.1875rem;
    color: #FFF;
}
#works .industry__inner h5 span {
    font-size: 1.625rem;
}
#works .industry__inner p {
    line-height: 2;
    font-size: 1.0625rem;
    color: #FFF;
}
#works .job_description h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 53px;
}

#works .panel__cableway {
    padding-top: 102px;
}
#works .panel__cableway__head {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 350px;
    margin-bottom: 30px;
    background: url('../img/bg__cableway.webp') no-repeat center center;
    background-size: cover;
}
#sales_planning .panel__cableway__head {
    background: url('../img/bg__sales_planning.webp') no-repeat center center;
}
#general_affairs .panel__cableway__head {
    background: url('../img/bg__general_affairs.webp') no-repeat center center;
}
#works .panel__cableway__head h4 {
    position: absolute;
    line-height: 1;
    top: -0.5em;
    font-weight: 300;
    font-size: 3.125rem;
}
#works .panel__cableway__head h4.shadow--1 {
    text-shadow:
        1px 1px 18px #fff,
        -1px 1px 18px #fff,
        -1px -1px 18px #fff,
        1px -1px 18px #fff;
}
#works .panel__cableway__head h4.shadow--07 {
    text-shadow:
        1px 1px 18px rgba(255,255,255,0.7),
        -1px 1px 18px rgba(255,255,255,0.7),
        -1px -1px 18px rgba(255,255,255,0.7),
        1px -1px 18px rgba(255, 255, 255, 0.7);
}

#works .panel__cableway__foot .summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 98px;
}
#works .panel__cableway__foot .summary h4 {
    margin-bottom: 6px;
    font-weight: 300;
    font-size: 3.125rem;
}
#works .panel__cableway__foot .summary em {
    margin-bottom: 46px;
    font-weight: 300;
    font-size: 0.9375rem;
    color: #00BF7E;
}
#works .panel__cableway__foot .summary p {
    max-width: 470px;
    width: 100%;
    line-height: 2;
    font-weight: 600;
}

#works .panel__cableway__foot .voices {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1280px;
    width: 100%;
    /* margin: 0 auto 102px auto; */
    margin: 0 auto;
    border-radius: 20px;
}
#works .panel__cableway__foot .voices img {
    border-radius: 20px 20px 0 0;
}
#works .panel__cableway__foot .voices .voices__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 44px 0 55px 0;
    align-items: center;
    border-radius: 0 0 20px 20px;
    background: rgb(93, 192, 214);
    background: linear-gradient(60deg, rgba(0, 191, 126, 1) 0%, rgba(93, 192, 214, 1) 100%);
}
#works .panel__cableway__foot .voices span {
    display: inline-block;
    margin-bottom: 7px;
    padding: 4px 28px;
    border: 1px solid #1F1D1B;
    background-color: #E8E44B;
    font-weight: 600;
    font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro';
}
#works .panel__cableway__foot .voices h5 {
    margin-bottom: 36px;
    text-align: center;
    font-weight: 300;
    font-size: 3.125rem;
    color: #FFF;
}
#works .panel__cableway__foot .voices ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 980px;
    width: 100%;
}
#works .panel__cableway__foot .voices ul li {
    position: relative;
    display: flex;
    border: 1px solid #1F1D1B;
    margin-bottom: 25px;
    padding: 10px;
}
#works .panel__cableway__foot .voices ul li::after {
    content: "";
    position: absolute;
    bottom: -31px;
    display: block;
    width: 1px;
    height: 64px;
    background-color: #1F1D1B;
}
#works .panel__cableway__foot .voices ul li:nth-of-type(even):after {
    right: 0px;
    transform: rotate(-60deg);
}
#works .panel__cableway__foot .voices ul li:nth-of-type(odd):after {
    left: 0px;
    transform: rotate(60deg);
}
#works #general_affairs .panel__cableway__foot .voices ul li:nth-of-type(even):after {
    left: 0px;
    right: auto;
    transform: rotate(60deg);
}
#works #general_affairs .panel__cableway__foot .voices ul li:nth-of-type(odd):after {
    right: 0px;
    left: auto;
    transform: rotate(-60deg);
}

#works .panel__cableway__foot .voices ul li p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 1px solid #1F1D1B;
    padding: 29px 10px;
    background-color: #FFF;
    text-align: center;
    font-weight: 600;
    /* font-size: 1.25rem; */
    font-size: 1.0625rem;
}
#works .panel__cableway__foot .voices ul .w20 {
    width: calc(20% - 10px);
}
#works .panel__cableway__foot .voices ul .w30 {
    width: calc(30% - 10px);
}
#works .panel__cableway__foot .voices ul .w40 {
    width: calc(40% - 10px);
}
#works .panel__cableway__foot .voices ul .w50 {
    width: calc(50% - 10px);
}
#works .panel__cableway__foot .voices ul .w60 {
    width: calc(60% - 10px);
}
#works .panel__cableway__foot .voices ul .w70 {
    width: calc(70% - 10px);
}
#works .panel__cableway__foot .voices ul .w80 {
    width: calc(80% - 10px);
}
#works .panel__cableway__foot .voices ul .w100 {
    width: 100%;
}

/* 働き方について */
#work-style .main_visual {
    background-image: url('../img/visual_work_style.webp');
}
#work-style .schedule {
    padding-top: 86px;
}
#work-style .schedule h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 53px;
}
#work-style .schedule__head {
    display: flex;
    justify-content: center;
    padding-top: 102px;
}
#work-style .schedule__head h4 {
    position: relative;
    display: inline-block;
    min-width: 144px;
    padding: 9px 31px;
    background: rgb(93, 192, 214);
    background: linear-gradient(60deg, rgba(0, 191, 126, 1) 0%, rgba(93, 192, 214, 1) 100%);
    text-align: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: #FFF;
}
#work-style .schedule__head h4::after {
    position: absolute;
    top: -83px;
    right: -169px;
    content: "";
    display: block;
    width: 169px;
    height: 123px;
    background: url('../img/comment.png') no-repeat center center;
    background-size: contain;
}
@media only screen and (max-width:1024px) {
    #work-style .schedule__head h4::after {
        top: -40px;
        right: -126px;
        width: calc(169px * 0.7);
        height: calc(123px * 0.7);
    }
}
@media only screen and (max-width:768px) {
    #work-style .schedule__head h4::after {
        top: -23px;
        right: -96px;
        width: calc(169px * 0.5);
        height: calc(123px * 0.5);
    }
}

#work-style .schedule__body {
    display: flex;
    justify-content: center;
}
#work-style .schedule__body table {
    max-width: 980px;
    width: 100%;
    border-spacing: 12px 18px;
}
#work-style .schedule__body table th,
#work-style .schedule__body table td {
    background-color: #FFF;
}
#work-style .schedule__body table th {
    width: 165px;
    font-weight: 800;
    font-size: 2.3125rem;
    color: #00BF98;
}
#work-style .schedule__body table td {
    padding: 21px 19px;
    color: #1F1D1B;
}
#work-style .schedule__body table td h5 {
    margin-bottom: 16px;
    font-weight: 800;
    font-size: 1rem;
}
#work-style .schedule__body table td p {
    line-height: 2;
}
#work-style .schedule__body table td li {
    margin-bottom: 0.5em;
}
#work-style .schedule__body table td li::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #E8E44B;
    margin-right: 8px;
    border-radius: 100px;
}
#work-style .schedule__body table td *:last-child {
    margin-bottom: 0;
}

#work-style .employee_benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 130px;
    padding-top: 87px;
}
#work-style .employee_benefits h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 53px;
}
#work-style .employee_benefits__inner table {
    display: flex;
    flex-wrap: wrap;
    max-width: 980px;
    width: 100%;
    border-spacing: 0 50px;
}
#work-style .employee_benefits__inner table th {
    vertical-align: top;
}
#work-style .employee_benefits__inner table th h4 {
    min-width: 228px;
    padding: 9px 18px;
    background: rgb(93, 192, 214);
    background: linear-gradient(60deg, rgba(0, 191, 126, 1) 0%, rgba(93, 192, 214, 1) 100%);
    text-align: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: #FFF;
}
#work-style .employee_benefits__inner table td {
    padding-left: 10%;
    line-height: 2;
    font-weight: 600;
}


/* 働き方について */
#support .main_visual {
    background-image: url('../img/visual_support.webp');
}
#support .summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 98px;
    padding-top: 95px;
}
#support .summary h4 {
    margin-bottom: 6px;
    font-weight: 300;
    font-size: 3.125rem;
}
#support .summary em {
    margin-bottom: 46px;
    font-weight: 300;
    font-size: 0.9375rem;
    color: #00BF7E;
}
#support .summary p {
    max-width: 470px;
    width: 100%;
    line-height: 2;
    font-weight: 600;
}

#support .support__cont01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 69px;
    padding-top: 56px;
}
#support .support__cont01__inner {
    display: flex;
    flex-direction: column;
    max-width: 980px;
    width: 100%;
}
#support .support__cont01__inner h3 {
    margin: 0 auto 60px auto;
}
#support .support__cont01__inner .item {
    margin-bottom: 53px;
}
#support .support__cont01__inner h4 {
    display: inline-block;
    min-width: 228px;
    margin-bottom: 14px;
    padding: 9px 18px;
    background: rgb(93, 192, 214);
    background: linear-gradient(60deg, rgba(0, 191, 126, 1) 0%, rgba(93, 192, 214, 1) 100%);
    text-align: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: #FFF;
}
#support .support__cont01__inner p {
    line-height: 2;
    font-weight: 800;
    color: #1F1D1B;
}
#support .support__cont01__inner li {
    margin-bottom: 0.5em;
    padding-left: 10px;
    font-weight: 800;
    color: #1F1D1B;
}
#support .support__cont01__inner li::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #E8E44B;
    margin-right: 8px;
    border-radius: 100px;
}
#support .support__cont01__inner *:last-child {
    margin-bottom: 0;
}



/* 会社概要 */
#corporate-profile .main_visual {
    background-image: url('../img/visual_corporate_profile.webp');
}
#corporate-profile .content__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 84px;
    padding-bottom: 120px;
}

/* 採用情報 */
#recrute-info .main_visual {
    background-image: url('../img/visual_recrute_info.webp');
}
#recrute-info .content__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 84px;
    padding-bottom: 120px;
}
#recrute-info .content__inner h3 {
    margin-bottom: 55px;
}

/* お問い合わせ */
#contact .main_visual {
    background-image: url('../img/visual_contact.webp');
}
/* 電話 */
#contact .tel {
  max-width: 980px;
  padding-top: 26px;
  padding-bottom: 39px;
  margin: 55px auto 20px auto;
  border-bottom: 1px solid #00BF98;
}
#contact .tel h4 {
    margin-bottom: 13px;
    font-size: 1.375rem;
}
#contact .tel p {
    font-weight: 800;
    font-size: 2.8125rem;
    color: #1F1D1B;
}
#contact .tel p img {
    margin-right: 20px;
}


/* お問い合わせフォーム */
.form {
  max-width: 980px;
  margin: 0 auto 85px auto;
}
.form .form_table {
  margin-bottom: 60px;
}
.form .form_table {
    width: 100%;
    border-spacing: 0 41px;
}
.form .form_table tbody {
    width: 100%;
}
.form .form_table .align_top {
  align-items: flex-start;
}
.form .form_table th {
    width: 9em;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1;
    text-align: left;
}
.form .form_table th em {
    padding-top: 10px;
    display: block;
    font-weight: 800;
    font-size: 1.25rem;
    color: #ED7048;
}
@media all and (max-width: 768px) {
  .form .form_table th {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }
}
.form .form_table td {
  width: calc(100% - 9em);
}
.form .form_table td p {
  margin-bottom: 20px;
}
.form .form_table td em {
  color: #3c3c3c;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
}
.form .form_table td .mr10 {
  margin-right: 10px;
}
.form .form_table td textarea {
  padding: 1em;
  width: 100%;
  height: 15em;
  line-height: 1.5;
  border-radius: 4px;
}
.form .form_table td textarea + em {
  width: 100%;
}
.form .form_table td .col label {
  width: 10em;
}
.form .form_table td .col > span {
  width: calc(100% - 10em);
}
.form .att {
  margin: 1em 0 2em;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2;
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form textarea {
  font-weight: 800;
  font-size: 1.25rem;
  font-size: 1rem;
  border: 1px solid #929292;
  border-radius: 10px;
  background-color: #FFF;
  margin-bottom: 13px;
}
.form input[type=text],
.form input[type=email],
.form input[type=tel] {
  width: 100%;
  padding: 12px 1em;
  border-radius: 4px;
}
.form input[type=radio] {
    margin: 0 0.25em 0 1em;
}
.form input[type=radio] + label {
    margin-right: 0.75em;
    font-size: 1.125rem;
}
.form .wpcf7-form-control-wrap + .att {
  margin: 0.5em 0 0;
}
.form .btn_area {
  display: flex;
  justify-content: center;
  padding: 60px 0 0;
}
.form .btn_area input:nth-child(2n) {
  margin-left: 20px;
}
.form input[type=submit],
.form input[type=button] {
  cursor: pointer;
  padding: 18px 90px;
  font-weight: 600;
  font-style: normal;
}
@media all and (max-width: 768px) {
  .form input[type=submit],
  .form input[type=button] {
    padding: 18px 0;
  }
}
.form input[type=button].back_btn {
    border-radius: 100px;
    border: 2px solid #DBDBDB;
    color: #1F1D1B;
    background: #DBDBDB;
}
.form input[type=button].back_btn:hover {
    background: transparent;
}
.form #zip {
  width: 8em;
  margin-bottom: 20px;
}
.form input::-moz-placeholder, .form textarea::-moz-placeholder {
  color: #cccccc;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #cccccc;
}
@media all and (max-width: 768px) {
  .form .form_table dl,
  .form .form_table dl,
  .form .form_table dd {
    display: block;
  }
  .form .form_table th {
    padding-bottom: 15px;
  }
  .form .form_table dd {
    width: 100%;
  }
  .form .form_table .select-wrap {
    margin-bottom: 10px;
  }
  .form .form_table .select-wrap:nth-child(n+2) {
    margin-left: 0;
  }
  .form .btn_area {
    flex-direction: column;
    padding-top: 30px;
  }
  .form .btn_area input[type=submit] {
    margin: 0 0 20px;
    padding: 23px 40px;
  }
  .form .btn_area input[type=submit].back_btn {
    margin: 0 0 20px;
    padding: 23px 40px;
  }
  .form .btn_area input:nth-child(2n) {
    margin-left: 0;
  }
}

.policy h4 {
  margin-bottom: 12px;
  text-align: center;
  font-size: 1.25rem;
}
.policy .scroll {
  height: 240px;
  overflow-y: scroll;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #929292;
  background: #fff;
}
.policy .scroll p {
  margin-bottom: 1em;
}
.policy .scroll dl dt {
  margin-bottom: 0.6em;
}
.policy .scroll dl dd {
  margin-bottom: 2em;
}

.btn_area .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 76px;
    font-weight: 800;
    font-size: 1.25rem;
    background: #E8E44B;
    border: 2px solid #E8E44B;
    color: #1F1D1B;
    border-radius: 100px;
}
.btn_area .btn:hover {
    background: transparent;
}

/* お問い合わせフォーム確認画面 */
.confirm .main_visual,
.confirm .main_visual::before {
    height: 50vh;
}
.confirm .confirm__txt {
    max-width: 980px;
    margin: 50px auto 50px auto;
    padding-top: 26px;
}
.confirm .confirm__txt h2 {
    margin-bottom: 0.5em;
}
.confirm .form .form_table {
  margin-bottom: 0;
}
.confirm .form .form_table {
    width: 100%;
    border-spacing: 0 41px;
}
.confirm .form .form_table dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-bottom: 2em;
}
.confirm .form .form_table dt {
    width: 11em;
    font-weight: 800;
    font-size: 1.125rem;
    line-height: 1;
    text-align: left;
}
@media all and (max-width: 768px) {
  .confirm .form .form_table dt {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.04em;
  }
}
.confirm .form .form_table dd {
    width: calc(100% - 11em);
    padding-left: 2em;
    font-size: 1.125rem;
}


/* お問い合わせサンクス画面 */
.thanks .main_visual,
.thanks .main_visual::before {
    height: 50vh;
}
.thanks .thanks__txt {
    max-width: 980px;
    margin: 50px auto 50px auto;
    padding-top: 26px;
    text-align: center;
}
.thanks .thanks__txt h2 {
    margin-bottom: 0.5em;
    text-align: center;
}
.thanks .thanks__txt p {
    line-height: 2;
}
.thanks .btn_area {
    margin-top: 60px;
}



/* モニター幅960px以上 ---------------------------------------------------------- */
@media only screen and (min-width:960px) {

}


/* -----------------------------------------------------------------------------
>> レシポンシブ対応
----------------------------------------------------------------------------- */
/* タブレット幅1024px以下 ---------------------------------------------------------- */
@media only screen and (max-width:1024px) {
    #company .history,
    #company .infographics,
    #company .philosophy,
    #company .message,
    #works .industry,
    .tab__menu,
    .panel__cableway__body,
    #support .support__cont01,
    #corporate-profile .content__inner,
    #recrute-info .content__inner,
    #work-style .schedule__body,
    #work-style .employee_benefits,
    #contact .tel,
    .form,
    .confirm .confirm__txt,
    #works .panel__cableway__foot .voices .voices__inner,
    #works .panel__cableway__head h4 {
        padding-left: 60px;
        padding-right: 60px;
    }
    .img__cover {
        height: 30vh;
    }
    #js__accordion .accordion__head span {
        display: flex;
        flex: 1;
        padding-right: 10px;
    }
    #js__accordion .accordion__head span em {
        width: 110px;
    }
    .main_visual,
    .main_visual::before {
        height: 50vh;
    }
    #js__accordion .accordion__body img,
    #js__accordion .accordion__body video {
        width: 30%;
        margin-left: 5%;
    }
    #js__accordion .accordion .accordion__body .body__inner {
        padding-left: 30px;
        padding-right: 30px;
    }
    #js__accordion .accordion__head span > div {
        flex: 1;
    }
}


/* モニター幅959px以下 ---------------------------------------------------------- */
@media only screen and (max-width:959px) {
    .funeral .mv {
        background-position: top -2vw center;
    }
    #js__accordion .accordion .accordion__body .body__inner {
        flex-direction: column;
        padding: 20px 10px 10px 10px;
    }
    #js__accordion .accordion__body img,
    #js__accordion .accordion__body video {
        margin: 0;
        margin-top: 20px;
        max-width: 100%;
        max-height: 100%;
        width: 100%;
    }
    #support .summary h4 {
        padding-left: 40px;
        padding-right: 40px;
    }
}


/* iPad 縦 ------------------------------------------------------------------ */
@media only screen and (max-width:768px) {
    /* 共通 */
    .main_visual,
    .main_visual::before {
        height: 70vh;
    }
    .main_visual__inner .main_visual__head h2 {
        font-size: 1.75rem;
    }
    .main_visual__inner .main_visual__head h2 span {
        font-size: 1.125rem;
    }
    .main_visual__inner .main_visual__head ul li {
        display: flex;
        align-items: center;
    }
    .main_visual__inner .main_visual__head ul li a {
        width: calc(100% - 24px);
    }
    /* ジェイ・マウンテンズ・セントラルを知る */
    #company .history {
        padding-left: 40px;
        padding-right: 40px;
    }
    #company .infographics {
        padding-left: 40px;
        padding-right: 40px;
    }
    .img__cover {
        height: 50vw;
    }
    #company .philosophy {
        padding-left: 40px;
        padding-right: 40px;
    }
    #company .message {
        padding-left: 40px;
        padding-right: 40px;
    }
    #company .message p {
        width: 100%;
        padding: 20px 24px;
    }
    /* 仕事を知る */
    #works .industry {
         padding-left: 40px;
         padding-right: 40px;
     }
    #works .industry__inner {
        flex-direction: column;
    }
    #works .industry__inner>div {
        width: 100%;
    }
    #works .industry__inner h5 span {
        display: inline-block;
    }
    #works .job_description {
        margin-bottom: 70px;
    }
    #works .job_description h3 {
        padding-left: 40px;
        padding-right: 40px;
    }
    .tab__menu {
        padding-left: 10px;
        padding-right: 10px;
    }
    .tab__menu li {
        margin-right: 10px;
        padding-left: 10px;
        padding-right: 10px;
        height: 104px;
    }
    .tab__menu li em {
        bottom: -13px;
        width: 26px;
        height: 26px;
        background-size: cover;
    }
    #works .panel__cableway__head {
        padding-left: 40px;
        padding-right: 40px;
    }
    #works .panel__cableway__head h4 {
        padding-left: 40px;
        padding-right: 40px;
        top: -0.5em;
        text-align: center;
        font-size: 2.5rem;
    }
    .panel__cableway__body {
        padding-left: 40px;
        padding-right: 40px;
    }
    #js__accordion .accordion {
        margin-bottom: 30px;
    }
    #js__accordion .accordion__head {
        padding: 0 20px;
    }
    /* #js__accordion .accordion .accordion__body .body__inner {
        padding: 20px 10px 10px 10px;
    }
    #js__accordion .accordion__body img {
        max-width: 220px;
        max-height: 220px;
        margin-left: 20px;
    } */
    #js__accordion .accordion__head {
        align-content: center;
        align-items: center;
        font-size: 1.125rem;
    }
    #js__accordion .accordion__head span {
        display: flex;
        flex-direction: column;
        width: calc(100% - 50px);
    }
    #js__accordion .accordion__head::after {
        width: 40px;
        height: 40px;
    }
    #js__accordion .accordion__body h6 {
        margin-bottom: 13px;
        padding: 9px 18px;
        font-size: 1.125rem;
    }
    #js__accordion .accordion__body p {
        margin-bottom: 13px;
    }
    #works .panel__cableway__foot .summary {
        padding-left: 40px;
        padding-right: 40px;
        margin-bottom: 58px;
    }
    #works .panel__cableway__foot .summary h4 {
        text-align: center;
        font-size: 2.5rem;
    }
    #works .panel__cableway__foot .summary em {
        margin-bottom: 23px;
    }
    #works .panel__cableway__foot .voices {
        padding-left: 40px;
        padding-right: 40px;
    }
    #works .panel__cableway__foot .voices .voices__inner {
        padding: 22px 0 10px 0;
    }
    #works .panel__cableway__foot .voices h5 {
        margin-bottom: 16px;
        font-size: 2rem;
    }
    #works .panel__cableway__foot .voices ul {
        flex-direction: column;
        padding: 0 20px;
    }
    #works .panel__cableway__foot .voices ul li {
        width: 100% !important;
        margin-bottom: 18px;
    }
    #works .panel__cableway__foot .voices ul li p {
        padding: 16px 10px;
        font-size: 0.875rem;
    }
    /* 働き方について */
    #work-style .schedule__body table th {
        width: 75px;
        font-weight: 800;
        font-size: 1.125rem;
    }
    #work-style .schedule__body table td {
        padding: 16px;
        font-size: 0.875rem;
    }
    #work-style .schedule__body table td h5 {
        margin-bottom: 0.5em;
    }
    #work-style .schedule__head {
        padding-top: 22px;
    }
    #work-style .employee_benefits {
        padding-top: 57px;
        padding-bottom: 40px;
        padding-left: 40px;
        padding-right: 40px;
    }
    #work-style .employee_benefits h3 {
        margin-bottom: 33px;
    }
    #work-style .employee_benefits__inner table,
    #work-style .employee_benefits__inner table tbody,
    #work-style .employee_benefits__inner table tr,
    #work-style .employee_benefits__inner table th,
    #work-style .employee_benefits__inner table td {
        display: block;
    }
    #work-style .employee_benefits__inner table th h4 {
        font-size: 1.125rem;
    }
    #work-style .employee_benefits__inner table td {
        padding: 0.5em 0 2em 0;
    }

    /* 人材育成への取り組み */
    #support .summary {
        margin-bottom: 48px;
        padding-left: 40px;
        padding-right: 40px;
    }
    #support .summary h4 {
        font-size: 2rem;
        text-align: center;
    }
    #support .summary em {
        text-align: center;
        margin-bottom: 36px;
    }
    #support .support__cont01 {
        margin-bottom: 0;
        padding-left: 40px;
        padding-right: 40px;
    }
    #support .support__cont01__inner .item {
        margin-bottom: 33px;
    }
    #support .support__cont01__inner h4 {
        width: 100%;
        font-size: 1.125rem;
    }
    /* 会社概要 */
    #corporate-profile .content__inner {
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 60px;
    }
    /* 採用情報 */
    #recrute-info .content__inner {
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 60px;
    }
    #recrute-info .main_visual {
        background-position: 70% center;
    }
    /* お問い合わせ */
    #contact .content {
        width: 100%;
        overflow: hidden;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
    }
    #contact .tel h4 {
        font-size: 1.125rem;
    }
    #contact .tel p {
        display: flex;
        align-items: center;
        font-size: 2rem;
    }
    #contact .tel p img {
        height: 1em;
        margin-right: 0.5em;
    }
    .policy h4 {
        font-size: 1rem;
    }
    .policy .scroll {
        height: 180px;
        font-size: 0.75rem;
    }
    .confirm .form .form_table dl {
        flex-direction: column;
        padding-bottom: 2.5em;
    }
    .confirm .form .form_table dt,
    .confirm .form .form_table dd {
        width: 100%;
    }
    .confirm .form .form_table dt {
        margin-bottom: 0.75em;
    }
    .confirm .form .form_table dd {
        padding-left: 1em;
        font-size: 1rem;
        overflow-wrap: anywhere;
    }
}

	
/* スマートフォン 横(ランドスケープ) --------------------------------------------------- */
@media only screen and (max-width:640px) {
    #company .history,
    #company .infographics,
    #company .philosophy,
    #company .message,
    #works .industry,
    .tab__menu,
    .panel__cableway__body,
    #support .support__cont01,
    #corporate-profile .content__inner,
    #recrute-info .content__inner,
    #work-style .schedule__body,
    #work-style .employee_benefits,
    #contact .tel,
    .form,
    .confirm .confirm__txt {
        padding-left: 20px;
        padding-right: 20px;
    }
    #corporate-profile .content__inner,
    #recrute-info .content__inner {
        width: 100%;
        overflow: hidden;
    }
    .main_visual__inner {
        padding-left: 30px;
        padding-right: 30px;
    }
    .contact__fixd {
        display: none;
    }
    .copyright {
        display: none;
    }
    #js__accordion .accordion .accordion__body .body__inner {
        flex-direction: column;
        padding: 20px 10px 10px 10px;
    }
    #works .panel__cableway__head h4 {
        padding-left: 20px;
        padding-right: 20px;
        top: -1em;
        text-align: center;
        font-size: 2.5rem;
    }
    .form .form_table,
    .form .form_table tbody,
    .form .form_table tr,
    .form .form_table th,
    .form .form_table td {
        display: block;
        width: 100%;
    }
    .form .form_table {
        margin-bottom: 30px;
    }
    .form .form_table th {
        margin-bottom: 5px;
        padding: 0.5em 0;
    }
    .form .form_table th em {
        font-size: 1rem;
    }
    .form .form_table td {
        margin-bottom: 1.5em;
        padding: 0;
    }
    .form .form_table td span {
        display: block;
    }
    .form .form_table td span:not(:last-of-type) {
        margin-bottom: 0.5em;
    }
    #contact .tel p a {
        color: #1F1D1B;
    }
}


/* スマートフォン 縦(ポートレート) ---------------------------------------------------- */
@media only screen and (max-width:480px) {
    #company .history {
        padding-bottom: 79px;
    }
    #company .philosophy {
        padding-bottom: 79px;
    }
    #company .message {
        padding-top: 60vw;
        padding-bottom: 53px;
        background-position: top left;
        background-size: 110% auto;
    }
    #company .message p {
        padding-top: 30px;
        background-color: #FFF;
        font-size: 0.875rem;
    }
    #js__accordion .accordion__body img,
    #js__accordion .accordion__body video {
        margin: 0;
        max-width: 100%;
        max-height: 100%;
        width: 100%;
    }
    #works .panel__cableway__foot .voices ul li::after {
        bottom: -26px;
        height: 54px;
    }
    .form .btn_area input[type=submit] {
        padding: 0;
    }
}

/* スマートフォン 横(ランドスケープ) --------------------------------------------------- */
@media (orientation: landscape) and (max-height: 450px) {
    .main_visual,
    .main_visual::before {
        height: 100vh;
    }
    #company .history,
    #company .infographics,
    #company .philosophy,
    #company .message,
    #works .industry,
    .tab__menu,
    .panel__cableway__body,
    #support .support__cont01,
    #corporate-profile .content__inner,
    #recrute-info .content__inner,
    #work-style .schedule__body,
    #work-style .employee_benefits,
    #contact .tel,
    .form,
    .confirm .confirm__txt,
    #support .summary,
    #works .panel__cableway__foot .voices .voices__inner {
        padding-left: 40px;
        padding-right: 40px;
    }
    #support .summary h4 {
        text-align: center;
    }
    #works .panel__cableway__head h4 {
        padding: 0 40px;
        text-align: center;
    }
    #js__accordion .accordion__head {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 1.5rem;
    }
    #js__accordion .accordion__head span {
        flex: 1;
    }
    #js__accordion .accordion__head span em {
        width: 120px;
        margin-right: 0;
    }
    #js__accordion .accordion__head span div {
        flex: 1;
    }
    #js__accordion .accordion__head::after {
        width: 52px;
        height: 52px;
    }
    #js__accordion .accordion .accordion__body .body__inner {
        padding: 23px 30px 30px 30px;
    }
    #js__accordion .accordion__body img {
        max-width: 240px;
        width: 28%;
    }
    #js__accordion .accordion__body h6 {
        margin-bottom: 16px;
    }
    #js__accordion .accordion__body p {
        margin-bottom: 2em;
    }
    .main_visual__inner {
        padding-bottom: 40px;
    }
    .main_visual__inner .main_visual__head img {
        height: 40px;
    }
    .main_visual__inner .main_visual__head h2 {
        font-size: 1.75rem;
    }
    .main_visual__inner .main_visual__head h2 span {
        font-size: 1.125rem;
    }
    .main_visual__inner .main_visual__head ul {
        top: calc(40px + 1.75rem + 1.125rem + 20px);
    }
}



/* 数字で見る パララックス */
@media only screen and (max-width:768px) {
    .infographics {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    #company .infographics h3 {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.graph {
    max-width: 980px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}
@media only screen and (max-width:768px) {
    .graph {
        background-color: #FFD6B8;
        padding-bottom: 20px;
    }
}
.graph .para01 img:not(.fixed),
.graph .para02 img:not(.fixed),
.graph .para03 img:not(.fixed),
.graph .para04 img:not(.fixed),
.graph .para06 img:not(.fixed),
.graph .para07 img:not(.fixed),
.graph .para08 img:not(.fixed),
.graph .para09 img:not(.fixed) {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
}

/* 創業 */
.graph .para01 {
    position: relative;
    width: 100%;
    border-radius: 30px;
    /* pc */
    padding: 0 114px 20px 56px;
}
.graph .para01 img:nth-of-type(3) {
    top: -35px;
}

@media only screen and (max-width:768px) {
    .graph .para01 {
        border-radius: 0;
        padding: 46px 48px 25px 8px;
    }
    .graph .para01 img:nth-of-type(1) {
        top: 12px;
    }
}

/* 来場者 */
.graph .para_col2 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.graph .para_col2 > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    margin: 0 auto;
    z-index: 1;
}

/* DAY NIGHT */
.graph .para02,
.graph .para03 {
    position: relative;
    border-radius: 30px;
    background-color: #F9E9CD;
    display: flex;
    flex-wrap: wrap;
    width: calc((100% - 22px) / 2);
    padding: 20px 12px 36px 20px;
}
.graph .para03 {
    background-color: #C1C3D6;
    padding: 20px 20px 36px 12px;
    margin-left: 22px;
}

.graph .para02_1,
.graph .para03_1 {
    position: relative;
    width: 100%;
    height: 140px;
}
.graph .para02_1 > img,
.graph .para03_1 > img {
    height: 90px;
    top: 30px !important;
}
.graph .para03_1 > img {
    left: auto !important;
    right: 0;
}
.graph .para02_2,
.graph .para03_2 {
    position: relative;
    width: 100%;
    /* border-radius: 30px; */
    /* background-color: #FFF; */
}
.graph .para02_2 img,
.graph .para03_2 img {
    top: 30% !important;
}
.graph .para02_3,
.graph .para02_4,
.graph .para02_5,
.graph .para02_6,
.graph .para03_3,
.graph .para03_4,
.graph .para03_5,
.graph .para03_6 {
    position: relative;
    width: calc(50% - (14px / 2));
    /* border-radius: 30px; */
    /* background-color: #FFF; */
    margin-top: 20px;
}
.graph .para02_3,
.graph .para02_5,
.graph .para03_3,
.graph .para03_5 {
    margin-right: 14px;
}

.graph .para02_2 img:nth-of-type(2),
.graph .para02_3 img:nth-of-type(2),
.graph .para02_4 img:nth-of-type(2),
.graph .para02_5 img:nth-of-type(2),
.graph .para02_6 img:nth-of-type(2),
.graph .para03_2 img:nth-of-type(2),
.graph .para03_3 img:nth-of-type(2),
.graph .para03_4 img:nth-of-type(2),
.graph .para03_5 img:nth-of-type(2),
.graph .para03_6 img:nth-of-type(2),
.graph .para07_1 img:nth-of-type(2),
.graph .para07_2 img:nth-of-type(2) {
    top: 40%;
    margin: 0 8%;
}

@media only screen and (max-width:768px) {
    .graph .para_col2 {
        flex-direction: column;
     }
    .graph .para02,
    .graph .para03 {
        width: 100%;
        padding: 40px 20px 36px 20px;
    }
    .graph .para02_1,
    .graph .para03_1 {
        height: 130px;
    }
    .graph .para02_1 > img,
    .graph .para03_1 > img {
        height: 55%;
    }
    .graph .para02_3,
    .graph .para02_4,
    .graph .para02_5,
    .graph .para02_6,
    .graph .para03_3,
    .graph .para03_4,
    .graph .para03_5,
    .graph .para03_6 {
        background: transparent;
    }
    .graph .para03 {
        margin: 0;
        margin-top: 20px;
        padding-top: 0;
    }
 }

/* 男女比等 */
.graph .para04 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.graph .para04_1,
.graph .para04_2,
.graph .para04_3 {
    position: relative;
    width: calc((100% - 40px) / 3);
    /* border-radius: 30px; */
    /* background-color: #FFF; */
    margin-top: 16px;
}
.graph .para04_1,
.graph .para04_2 {
    margin-right: 20px;
}
.graph .para04_1 img:nth-of-type(2),
.graph .para04_2 img:nth-of-type(2),
.graph .para04_3 img:nth-of-type(4) {
    top: 20%;
    margin: 0 8%;
}
.graph .para04_1 img:nth-of-type(3),
.graph .para04_2 img:nth-of-type(3) {
    top: 65%;
    left: 8%;
    height: 24%;
}
.graph .para04_1 img:nth-of-type(4),
.graph .para04_2 img:nth-of-type(4) {
    top: 65%;
    left: auto;
    right: 6%;
    height: 24%;
}

@media only screen and (max-width:768px) {
    .graph .para04_1,
    .graph .para04_2 {
        width: calc((100% - 20px) / 2);
    }
    .graph .para04_2 {
        margin-right: 0;
    }
    .graph .para04_3 {
        width: 100%;
        background: transparent;
    }
    .graph .para04_3 img:nth-of-type(2) {
        top: 28%;
        margin: 0 10%;
    }
}

/* 受賞歴 */
.graph .para05 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    margin-top: 20px;
}
.graph .para05_inner {
    position: absolute;
    top: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: inherit;
}
.graph .para05_1 {
    width: 90%;
    margin: 0 auto 33px auto;
}
.graph .para05_2 {
    width: 90%;
    margin: 0 auto 20px auto;
}
.graph .para05_3 {
    width: 80%;
    margin: 0 auto;
}

@media only screen and (max-width:768px) {
    .graph .para05 {
        position: relative;
    }
    .graph .para05_inner {
        top: -20px;
    }
    .graph .para05_1 {
        width: 100%;
        margin: 0 auto 16px auto;
    }
    .graph .para05_2,
    .graph .para05_3,
    .graph .para05_4,
    .graph .para05_5 {
        width: 90%;
        margin: 0 auto 8px auto;
    }
}
 
/* 労働環境 */
.graph .para06 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.para06_inner:nth-of-type(1) {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% / 3 * 2);
}
.para06_inner:nth-of-type(2) {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% / 3);
}
.graph .para06_1,
.graph .para06_2,
.graph .para06_3,
.graph .para06_4,
.graph .para06_5 {
    position: relative;
    width: calc((100% - 40px) / 2);
    border-radius: 30px;
    background-color: #FFF;
    margin-top: 16px;
}
.graph .para06_5 {
    width: 100%;
}
.graph .para06_1,
.graph .para06_3 {
    margin-right: 20px;
}
.graph .para06_1 img:nth-of-type(2),
.graph .para06_2 img:nth-of-type(2),
.graph .para06_3 img:nth-of-type(2),
.graph .para06_4 img:nth-of-type(2),
.graph .para06_5 .para06_5_inner {
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    height: 70%;
}
.graph .para06_5 .para06_5_inner {
    position: absolute;
    width: auto;
    top: 16%;
    height: 80%;
    padding: 0 10%;
    display: flex;
    flex-direction: column;
}
.graph .para06_5 .para06_5_inner img:not(:last-of-type) {
    margin-bottom: 45px;
}


/* PC用 */
.graph .para06_1 img:nth-of-type(2) {
    top: 30%;
    height: 58%;
}
.graph .para06_2 img:nth-of-type(3) {
    top: 30%;
    left: auto;
    right: -3%;
    height: 58%;
}
.graph .para06_4 img:nth-of-type(2) {
    top: 28%;
    left: -3%;
    right: auto;
    height: 60%;
}
@media only screen and (max-width:768px) {
    .graph .para06 {
        flex-direction: column;
    }
    .graph .para06_inner {
        width: 100%;
    }
    .graph .para06_1,
    .graph .para06_2,
    .graph .para06_3,
    .graph .para06_4 {
        width: calc((100% - 20px) / 2);
        background: transparent;
    }
    .graph .para06_2 img:nth-of-type(2) {
        height: 60%;
    }
    .graph .para06_5 {
        background: transparent;
    }
    /* .graph .para06_5 img:nth-of-type(2) {
        top: 25%;
        left: 0;
        right: 0;
        width: 90%;
        margin: 0 auto;
    } */
    .graph .para06_5 .para06_5_inner {
        position: absolute;
        width: auto;
        top: 27%;
        height: 80%;
        padding: 0 5%;
        display: flex;
        flex-wrap: wrap;
    }
    .graph .para06_5 .para06_5_inner img {
        height: 70%;
        margin-bottom: 0 !important;
    }
    .graph .para06_5 .para06_5_inner img:nth-of-type(2) {
        margin: 0 2%;
    }
}


/* 責任ある */
.graph .para07 {
    width: 100%;
}
.graph .para07 {
    position: relative;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
}
.graph .para07_1,
.graph .para07_2 {
    position: relative;
    width: calc((100% - 16px) / 2);
    margin-top: 16px;
}
.graph .para07_1 {
    margin-right: 16px;
}
/* PC用 */
.graph .para07_pc {
    position: relative;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 246px;
    margin-top: 20px;
}
.graph .para07_pc_1,
.graph .para07_pc_2 {
    position: absolute;
    top: 26%;
    height: 200px;
}
.graph .para07_pc_1 {
    width: 70%;
    left: 100px;
}
.graph .para07_pc_2 {
    width: 30%;
    right: 20px;
}
.graph .para07_pc_1 > img,
.graph .para07_pc_2 > img {
    height: 80%;
}
@media only screen and (max-width:768px) {
    .graph .para07 {
        flex-direction: column;
    }
    .graph .para07_1,
    .graph .para07_2 {
        width: 100%;
        background: transparent;
    }
    .graph .para07_2 img:nth-of-type(2) {
        top: 30%;
        left: 0;
        right: 0;
        height: 60%;
        margin: 0 auto;
    }
}


/* 遭遇率 */
.graph .para08 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.graph .para08_1,
.graph .para08_2,
.graph .para08_3,
.graph .para08_4,
.graph .para08_5 {
    position: relative;
    width: calc((100% - 40px) / 3);
    border-radius: 30px;
    background-color: #FFF;
    margin-top: 16px;
}
.graph .para08_1,
.graph .para08_2 {
    width: calc((100% - 20px) / 2);
}
.graph .para08_1,
.graph .para08_3,
.graph .para08_4 {
    margin-right: 20px;
}
.graph .para08_4 {
    z-index: 1;
}
.graph .para08_1 img:nth-of-type(2),
.graph .para08_2 img:nth-of-type(2),
.graph .para08_3 img:nth-of-type(2),
.graph .para08_4 img:nth-of-type(2),
.graph .para08_5 img:nth-of-type(2) {
    top: 20%;
    margin: 0 8%;
}
.graph .para08_1 img:nth-of-type(4) {
    top: auto;
    bottom: 0;
    right: -2%;
    left: auto;
    height: 80%;
    z-index: 1;
}
.graph .para08_2 img:nth-of-type(4) {
    top: auto;
    bottom: 0;
    right: 5%;
    left: auto;
    height: 72%;
}
.graph .para08_3 img:nth-of-type(5) {
    top: 13%;
    right: -16px;
    left: auto;
    height: 80%;
}
.graph .para08_4 img:nth-of-type(2) {
    top: 28%;
    right: -25%;
    left: auto;
    height: 61%;
    z-index: 1;
}
.graph .para08_5 img:nth-of-type(2) {
    top: 28%;
    right: 0;
    left: 0;
    margin: 0 auto;
    height: 61%;
}
@media only screen and (max-width:768px) {
    .graph .para08_1,
    .graph .para08_2 {
        background: transparent;
    }
    .graph .para08_2 img:nth-of-type(2) {
        top: 30%;
        bottom: auto;
    }
    .graph .para08_3 {
        width: 100%;
        margin: 0;
        margin-top: 20px;
        background: transparent;
    }
    .graph .para08_3 img:nth-of-type(2) {
        top: -10%;
        left: 0;
        margin: 0;
        width: 48%;
        z-index: 1;
    }
    .graph .para08_3 img:nth-of-type(3) {
        top: -5%;
        left: auto;
        right: 0;
        margin: 0;
        width: 48%;
    }
}


/* 責任ある/自分の裁量 */
.graph .para09 {
    width: 100%;
}
.graph .para09_1,
.graph .para09_2 {
    position: relative;
    width: 100%;
    margin-top: 16px;
}
.graph .para09_1 img:nth-of-type(3) {
    top: 15%;
    left: auto;
    right: 4%;
    height: 73%;
}
.graph .para09_2 img:nth-of-type(3) {
    top: 10%;
    left: auto;
    right: 4%;
    height: 78%;
}
@media only screen and (max-width:768px) {
    .graph .para09_1 img:nth-of-type(3) {
        top: auto;
        bottom: 7%;
        left: 0;
        right: 0;
        height: 40%;
        margin: 0 auto;
    }
    .graph .para09_2 img:nth-of-type(3) {
        top: auto;
        bottom: 8%;
        left: 0;
        right: 0;
        height: 50%;
        margin: 0 auto;
    }
}


/* アニメーション */
.graph .para01 .json__ropeway {
    position: absolute;
    top: 43px;
    right: 53px;
    width: 250px;
    height: 140px;
}
.graph .para02_1 .json__solar {
    position: absolute;
    top: 30px;
    left: 0;
    width: 90px;
    height: 90px;
}
.graph .para03_1 .json__month {
    position: absolute;
    top: 30px;
    right: 0;
    width: 90px;
    height: 90px;
}
.graph .para05_1 .json__trophy1 {
    position: absolute;
    top: 0;
    left: 40px;
    width: 90px;
    height: 90px;
}
.graph .para05_1 .json__trophy2 {
    position: absolute;
    top: 0;
    right: 30px;
    width: 90px;
    height: 90px;
}
.graph .para06_2 .json__clock {
    position: absolute;
    top: 30%;
    right: -3%;
    width: 75px;
    height: 75px;
}
.graph .para08_1 .json__rabbit {
    position: absolute;
    top: 20%;
    right: -6%;
    width: 100px;
    height: 100px;
}
.graph .para08_3 .json__fairy {
    position: absolute;
    top: 30px;
    right: -14%;
    width: 120px;
    height: 120px;
}
.graph .para08_4 .json__ufo {
    position: absolute;
    top: 20%;
    right: -30%;
    width: 170px;
    height: 170px;
}
@media only screen and (max-width:768px) {
    .graph .para02_1 .json__solar {
        width: 75px;
        height: 75px;
    }

    .graph .para03_1 .json__month {
        width: 75px;
        height: 75px;
    }
    .graph .para05_1 .json__trophy1 {
        left: -10px;
        width: 70px;
        height: 70px;
    }

    .graph .para05_1 .json__trophy2 {
        right: -10px;
        width: 70px;
        height: 70px;
    }
    .graph .para06_2 .json__clock {
        position: absolute;
        top: 25%;
        right: 8%;
        width: 45px;
        height: 45px;
    }
    .graph .para08_3 .json__fairy {
        position: absolute;
        top: -10px;
        right: -20px;
        width: 90px;
        height: 90px;
    }
    .graph .para08_4 .json__ufo {
        top: 20%;
        right: 0;
        width: 170px;
        height: 170px;
    }
}