/* reset */
html,
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,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* style */
/* 共通 */
.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

body {
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
    line-height: 1.5;
    letter-spacing: 0.08em;
    position: relative;
    z-index: -1;
}

body.active {
    height: 100%;
    overflow: hidden;
}

.fl12 {
    font-size: 12px;
}

.fl18 {
    font-size: 18px;
}

.fl24 {
    font-size: 24px;
}

.fl32 {
    font-size: 32px;
    font-weight: bold;
}

.fl36 {
    font-size: 36px;
    font-weight: bold;
}

.fl45 {
    font-size: 45px;
}

.fl48 {
    font-size: 48px;
    font-weight: bold;
}

.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 16px;
}

.mb-15 {
    margin-bottom: 16px;
}

.mt-30 {
    margin-top: 32px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 64px;
}

.mt-80 {
    margin-top: 80px;
}

.t-center {
    text-align: center;
}

.t-end {
    text-align: end;
}

.lh-2 {
    line-height: 2;
}

.hover {
    transition: 0.3s;
}

.hover:hover {
    opacity: 0.7;
}

.main-logo {
    max-width: 240px;
}

a {
    text-decoration: none;
}

img {
    vertical-align: bottom;
}

.section-title {
    display: inline-block;
}

.section-title span {
    font-weight: bold;
}

.section-title h3 {
    margin-top: 10px;
}

.btn a {
    display: inline-block;
    text-decoration: none;
    color: #FFFFFF;
}

.btn-base {
    width: 280px;
    padding: 19px 0;
    text-align: center;
    border: 1px solid #FFFFFF;
    transition: all 0.3s;
}

.btn-base:hover {
    background-color: #FFFFFF;
    color: #333333;
}

.fadein,
.fade-left,
.fade-right {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 1s, 2s;
    transition-delay: 0s;
    transition-timing-function: linear, cubic-bezier(0.25, 1, 0.5, 1);
}

.fadein {
    transform: translate(0, 50px);
}

.fade-left {
    transform: translate(-50px, 0);
}

.fade-right {
    transform: translate(50px, 0);
}

.fadein.active,
.fade-left.active,
.fade-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.first-view {
    width: 100%;
    min-height: 375px;
    position: relative;
}

.main-image {
    width: 100%;
    min-height: 375px;
    object-fit: cover;
}

.title-box {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    min-width: 370px;
    width: auto;
    height: 200px;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFFFFF;
}

.page-sub-title {
    font-weight: bold;
    color: #FFFFFF;
}

.page-title {
    color: #FFFFFF;
    white-space: nowrap;
}

.outer-container {
    width: 73%;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumbs {
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.b-link {
    color: #333333;
}

.b-arrow {
    transform: rotate(-90deg);
    padding: 0 8px;
}

.inner-container {
    width: 78.5%;
    max-width: 1100px;
    margin: 0 auto;
}

.contents-title {
    margin-top: 60px;
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    padding-bottom: 5px;
    border-bottom: 5px solid #E60112;
}

.position {
    position: relative;
}

.red {
    color: #E60112;
}

.bold {
    font-weight: bold;
}



/* header */
header {
    width: 100%;
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    transition: all 0.3s;
}

#under-header {
    background: rgba(255, 255, 255, 0.8);
}

#top-header.white {
    background: rgba(255, 255, 255, 0.8);
}

.after {
    display: none;
}

.after.visible {
    display: block;
}

.before.visible {
    display: block;
}

.before {
    display: none;
}

h1 {
    display: flex;
    align-items: center;
    padding-left: 20px;
    z-index: -10;
}

/* pcnav */
.menu {
    display: flex;
    justify-content: flex-end;
}

.nav-contents-wrap {
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.nav-contents {
    list-style: none;
    font-size: 14px;
    font-weight: bold;
    padding: 25px 10px;
    color: #333333;
    cursor: pointer;
}

.nav-contents:hover {
    border-bottom: 4px solid #FFFFFF;
    margin-bottom: -3px;
}

.white .nav-contents:hover {
    border-bottom: 4px solid #0D0D0D;
}

#top-header .nav-contents {
    color: #FFFFFF;
    font-size: 14px;
}

#top-header .nav-contents a {
    color: #FFFFFF;
}

#top-header.white .nav-contents {
    color: #333333;
}

#top-header.white .nav-contents a {
    color: #333333;
}

#top-header.white .nav-contents .menuSub a {
    color: #FFFFFF;
}

#top-header .icon-bk {
    display: none;
}

#top-header .icon-wt {
    display: inline-block;
}

#top-header.white .icon-bk {
    display: inline-block;
}

#top-header.white .icon-wt {
    display: none;
}

.nav-contents a {
    text-decoration: none;
    color: #333333;
}

#top-header .nav-contents.language a,
#top-header .nav-contents.language a:hover {
    color: #E60112;
    opacity: 1;
}

#top-header .nav-contents a.gray-off {
    color: #A7A7A7;
}

.menuSub {
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    padding: 20px 0;
    background-color: #E60112;
    display: none;
}

.active {
    display: block !important;
}

.flex {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.menuSub li {
    list-style: none;
    padding: 12px 0;
}

.menuSub li a {
    margin: 5px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    display: inline-block;
    text-indent: -1em;
    padding-left: 1em;
}

.menuSub li a:hover {
    border-bottom: 2px solid #FFFFFF;
}

.nav-contents.language a,
.nav-contents.language a:hover {
    color: #E60112;
    opacity: 1;
}

.nav-contents a.gray-off {
    color: #A7A7A7;
}

.language {
    padding: 25px;
}

.language:hover {
    border: none;
    margin-top: -4px;
}

.white .language:hover {
    border: none;
    margin-top: -4px;
}

.language .nav-item {
    margin-left: 20px;
}

.language .nav-item img {
    margin-bottom: 3px;
}

.blank {
    margin: 0 5px;
}

.contact {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #E60112;
}

.contact img {
    margin-bottom: 3px;
}

/* spnav */
.sp-nav {
    display: none;
}

.header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateY(-100%);
    background-color: #fff;
    transition: ease .3s;
    z-index: -1;
}

.nav-contents-sp {
    font-weight: bold;
    list-style: none;
    background-color: #F4F4F4;
    border-bottom: 1px solid #C6C6C6;
    color: #333333;
}

.nav-contents-sp .item {
    display: flex;
    justify-content: space-between;
    padding: 25px 25px 25px 50px;
}

.nav-contents-sp .menuSub {
    position: unset;
    background-color: #D5D5D5;
    padding: 0;
}

.nav-contents-sp .menuSub li {
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #ADADAD;
}

.nav-contents-sp .menuSub li:last-child {
    border-bottom: 0;
}

.nav-contents-sp .menuSub span {
    color: #333333;
    transition: 0.3s;
}

.u-item {
    padding: 0 50px;
}

.nav-contents-sp .menuSub li a {
    margin: 0;
}

.nav-contents-sp .menuSub li a {
    text-indent: 0;
    padding-left: 0;
}

.nav-contents-sp .menuSub li a:hover {
    border-bottom: none;
}

.nav-contents-sp .menuSub .u-item {
    padding: 25px 50px;
}

.nav-contents-sp a {
    width: 100%;
    text-decoration: none;
    color: #333333;
}

.nav-contents-sp a.gray-off {
    color: #A7A7A7;
    cursor: pointer;
}

.nav-contents-sp.language {
    background-color: #FFFFFF;
    display: block;
    padding: 0;
}

.nav-contents-sp.language:hover {
    border-bottom: 1px solid #C6C6C6;
}

.nav-contents-sp.language .item {
    justify-content: flex-start;
}

.nav-contents-sp.language a {
    color: #A7A7A7;
    margin-left: 0;
    width: unset;
}

.nav-contents-sp.language a.active {
    color: #E60112;
}

.nav-contents-sp img {
    transition: all 0.3s;
}

.nav-contents-sp.open img {
    transform: rotate(-180deg);
}

.nav-contents-sp.contact {
    width: 100%;
    padding: 0;
}

.recruit {
    padding: 17px;
}

.gradation {
    position: relative;
}

.gradation::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(230, 1, 16, 0.4) 100%);
    transition: 0.3s;
}

.gradation:hover::before {
    opacity: 0;
}

.recruit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recruit span {
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
}

/* ハンバーガーメニュー */
.header__hamburger {
    width: 48px;
    height: 100%;
}

.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}

/* ハンバーガーメニューの線 */
.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #333333;
    position: relative;
    transition: ease .3s;
    display: block;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    margin: 8px 0;
}

.hamburger span:nth-child(3) {
    top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
}


/* トップページ */
/* main */
body {
    animation: fadeIn 0.5s linear;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

main {
    position: relative;
    z-index: -1;
}

.movie {
    width: 100%;
    height: 100vh;
    position: relative;
}

.movie::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.3);
    position: absolute;
    top: 0;
    left: 0;
}

.img-over {
    width: 40%;
    min-width: 500px;
    position: absolute;
    top: 40%;
    left: 40px;
    z-index: 5;
}

.movie video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .section01 */
.section01 {
    width: 100%;
    height: 540px;
    margin-top: 96px;
    background-image: url(../../common/image/top-bg01.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}

.section01 .container {
    max-width: 1100px;
    margin: 0 auto;
}

.section01 .container .wrap {
    padding: 80px 0 0 55px;
    width: 510px;
}

.section01 h2 {
    margin-top: 56px;
}

.section01 .btn {
    margin-top: 70px;
    text-align: end;
}

/* section02 */
.section02 {
    margin-top: 96px;
    position: relative;
}

.section02 .bg {
    max-width: 1090px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.section02 .bg img {
    width: 100%;
    height: auto;
}

.section02 .container {
    max-width: 1510px;
    margin-left: auto;
    padding-top: 52px;
}

.section02 .section-title {
    display: inline-block;
    text-align: center;
}

.section02 span {
    color: #FFFFFF;
}

.section02 h3 {
    color: #FFFFFF;
}

.section02 .link-wrap {
    display: flex;
    margin-top: 49px;
}

.section02 .link-wrap a {
    position: relative;
    text-decoration: none;
    background-color: #FFFFFF;
    color: #FFFFFF;
}

.section02 .link-wrap img {
    width: 100%;
    height: auto;
    transition: all 0.3s;
    filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.16));
}

.section02 .link-wrap a:hover img {
    opacity: 0.7;
}

.section02 .under {
    width: calc(100% - 2px);
    background-color: rgba(13, 13, 13, 0.8);
    padding: 15px 0;
    text-align: left;
    position: absolute;
    bottom: 1px;
    left: 1px;
}

.section02 .under span {
    padding-left: 20px;
}

.section02 img.arrow {
    width: 16px;
    height: auto;
    vertical-align: middle;
    margin-left: 10px;
    margin-top: -3px;
    padding-right: 20px;
}

.section02 .link-wrap a:hover .arrow {
    margin-left: 20px;
    opacity: 1;
}

/* section03 */
.section03 {
    margin-top: 96px;
    position: relative;
}

.section03 .bg {
    max-width: 1660px;
    height: 640px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.section03 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section03 .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 95px 30px;
}

.section03 .wrap {
    height: 450px;
    display: flex;
}

.section03 .left {
    width: calc(50% - 70px);
    max-width: 480px;
    padding: 35px;
    background-color: #FFFFFF;
    opacity: 0.8;
}

.section03 .left span {
    color: #E60112;
}

.section03 h3 {
    margin-top: 20px;
    margin-bottom: 45px;
}

.section03 .btn {
    margin-top: 70px;
    text-align: end;
}

.section03 a {
    display: inline-block;
    text-decoration: none;
}

.section03 .btn-base {
    border: 1px solid #333333;
    color: #333333;
}

.section03 .btn-base:hover {
    background-color: #333333;
    color: #FFFFFF;
}

.section03 .right {
    width: 50%;
}

.section03 .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* section04 */
.section04 {
    margin-top: 96px;
    position: relative;
}

.section04 .bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.section04 .bg img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.section04 .container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
}

.section04 .section-title span {
    color: #E60112;
}

.section04 .description {
    margin-top: 15px;
}

.section04 .wrap {
    margin-top: 63px;
}

.section04 .top {
    display: flex;
}

.card {
    width: 50%;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.card:hover img {
    opacity: 0.7;
    transform: scale(1.1, 1.1);
}

.belt {
    display: block;
    width: 100%;
    padding: 25px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(230, 1, 18, 0.8);
    color: #FFFFFF;
    text-align: center;
}

.section04 .bottom {
    position: relative;
    overflow: hidden;
}

.section04 .bottom span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    color: #FFFFFF;
    white-space: nowrap;
    pointer-events: none;
}

/* section05 */
.section05 {
    margin-top: 96px;
    text-align: center;
}

.section05 .section-title span {
    color: #E60112;
}

.section05 #bgimage {
    width: 100%;
    margin-top: 60px;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 0.3s;
}

.section05 #bgimage.active01 {
    background-image: url(../../common/image/section05-01.jpg);
}

.section05 #bgimage.active02 {
    background-image: url(../../common/image/section05-02.jpg);
}

.section05 #bgimage.active03 {
    background-image: url(../../common/image/section05-03.jpg);
}

.section05 #bgimage.active04 {
    background-image: url(../../common/image/section05-04.jpg);
}

.section05 #bgimage.active05 {
    background-image: url(../../common/image/section05-05.jpg);
}

.section05 #bgimage.active06 {
    background-image: url(../../common/image/section05-06.jpg);
}

.section05 #bgimage.active07 {
    background-image: url(../../common/image/section05-07.jpg);
}

.section05 #bgimage.active08 {
    background-image: url(../../common/image/section05-08.jpg);
}

.section05 .link-wrap {
    width: calc(50% - 150px);
    margin-right: auto;
    padding: 70px 75px;
    background-color: rgba(0, 0, 0, 0.6);
    text-align: end;
}

.section05 .link-wrap ul {
    width: 387px;
    margin-left: auto;
}

.section05 .link-wrap li {
    list-style: none;
    width: 390px;
    text-align-last: left;
    margin-bottom: 30px;
}

.section05 .link-wrap a {
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s;
}

.section05 .link-wrap a:hover {
    color: #E60112;
}

.section05 .btn {
    margin-top: 55px;
    text-align: left;
}

/* section06 */
.section06 {
    margin-top: 96px;
}

.section06 .container {
    max-width: 1660px;
    margin-left: auto;
}

.section06 .box {
    width: 100%;
    height: 390px;
    background-image: url(../../common/image/section06-02.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

.section06 .box img {
    width: 50%;
    max-width: 700px;
    height: 100%;
    object-fit: cover;
}

.section06 .wrap {
    padding: 89px 120px;

}

.section06 .section-title span {
    color: #E60112;
}

.section06 .btn {
    margin-top: 40px;
}

.section06 .btn-base {
    background-color: #FFFFFF;
    color: #333333;
    border: none;
}

.section06 .btn-base:hover {
    background-color: #333333;
    color: #FFFFFF;
}

/* section07 */
.section07 {
    margin-top: 96px;
}

.section07 .gradation {
    width: 100%;
    position: relative;
}

.section07 .gradation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

.section07 a {
    color: #FFFFFF;
}

.section07 .gradation .section-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    width: 370px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFFFFF;
}

/* footer */
#top footer {
    margin-top: 94px;
}

footer {
    margin-top: 144px;
    background-color: #0D0D0D;
}

footer .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
}

.company {
    padding: 60px 0 0;
}

footer a {
    transition: 0.3s;
    margin-bottom: 10px;
}

footer a:hover {
    opacity: 0.7;
}

.data {
    margin: 20px 0 30.7px 0;
}

footer p {
    font-size: 20px;
    color: #FFFFFF;
}

.footer-nav {
    display: flex;
    gap: 24px;
    padding: 54px 0 47.9px 0;
}

footer li {
    list-style: none;
}

.link {
    display: block;
}

footer a {
    text-decoration: none;
    font-size: 16px;
    color: #FFFFFF;
    display: inline-block;
}

footer .link a {
    text-indent: -1em;
    padding-left: 1em;
}

footer .btn-wrap .link a {
    text-indent: 0;
    padding-left: 0;
}

.btn-wrap {
    margin-top: 44.2px;
}

.btn01 {
    padding: 23px 0;
    width: 235px;
    border: 1px solid #FFFFFF;
    text-align: center;
}

.btn01 img {
    margin-right: 8px;
}

.btn02 {
    padding: 23px 0;
    width: 237px;
    background-color: #E60112;
    text-align: center;
}

.btn02 img {
    margin-right: 8px;
    margin-bottom: 2px;
}

.copy {
    font-size: 16px;
    text-align: center;
    padding-bottom: 30px;
}

/* 会社概要 / 沿革 */
.office-image {
    max-width: 400px;
    width: 36%;
    position: absolute;
    top: 0;
    right: 0;
}

.office-image img {
    width: 100%;
    height: auto;
}

.table-outline {
    margin-top: 54px;
}

.table-outline th {
    text-align: left;
    width: 190px;
    font-weight: bold;
    border-right: 1px solid #C6C6C6;
    line-height: 1.5em;
}

.table-outline td {
    padding: 15px 0 30px 30px;
    line-height: 1.75;
}

.table-outline .td-first {
    padding-top: 0;
}

.table-outline .td-last {
    padding-bottom: 0;
}

/* 事業拠点 / 組織図 */
.base {
    padding: 54px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 2px dashed #C6C6C6;
}

.base-name {
    font-size: 20px;
}

.base p {
    font-weight: bold;
}

.access-icon {
    margin-bottom: 3px;
    margin-right: 3px;
}

.base-description {
    margin: 32px 0 28px;
}

.spacer01 {
    margin-top: 20px;
}

.link-map {
    color: #333333;
    text-decoration: underline;
}

.link-icon {
    margin-bottom: 7px;
}

.map {
    width: 50%;
    min-width: 450px;
}

.map iframe {
    width: 100%;
    height: 370px;
}

.wide {
    width: 100%;
    margin-top: 54px;
}

.wide img {
    width: 100%;
    height: auto;
}

/* 商品紹介 */
.item01-wrap {
    display: flex;
    background-color: #000000;
}

.item01-wrap .bottom {
    display: table-cell;
}

.item01 {
    position: relative;
}

.item01-link {
    display: inline-block;
    transition: all 0.3s;
}

.item01-link:hover img {
    opacity: 0.7;
}

.item01-link .item01-name {
    transition: all 0.3s;
}

.item01-link:hover .item01-name {
    opacity: 0;
}

.item01-detail {
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    transition: all 0.3s;
}

.item01-link:hover .item01-detail {
    opacity: 1;
    color: #FFFFFF;
}

.item01 img {
    width: 100%;
    height: auto;
}

.item01-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    color: #FFFFFF;
    white-space: nowrap;
}

.layout {
    display: flex;
}

.item01-name.small {
    font-size: 24px;
}

/* product共通 */
.title-box.product {
    border: none;
    padding: 0;
}

.title-box.product h2 {
    font-size: 32px;
}

.page-title.product {
    color: #FFFFFF;
    border-bottom: 7px solid #FFFFFF;
}

.contents {
    line-height: 2;
}

.contents-title-product {
    margin-top: 60px;
    font-size: 32px;
    font-weight: bold;
    color: #E60112;
    padding-left: 8px;
    border-left: 10px solid #E60112;
}

.detail-wrap {
    margin-top: 30px;
}

.detail-wrap .item {
    margin-top: 30px;
}

.image-flex {
    margin-top: 30px;
    display: flex;
    gap: 25px;
}

.image-flex img {
    width: 100%;
    height: auto;
}

.image-flex.col4 .image {
    width: calc((100% - 75px) / 4);
}

.product-nav {
    margin-top: 130px;
}

#u-product footer {
    margin-top: 0;
}

.image-wrap img {
    width: 100%;
    height: auto;
}

.small-image {
    width: 340px;
    height: auto;
}

.detail-wrap.flex {
    gap: 30px;
}

/* 合金鉄 */
.ferroalloy-image {
    width: 200px;
    height: 150px;
}

.ferroalloy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row {
    margin-top: 33px;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    gap: 20px;
}

.material {
    min-width: 620px;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #EBEBEB;
}

.material p {
    text-align: center;
}

.material img {
    width: 280px;
    height: 160px;
    object-fit: cover;
}

.finished {
    margin-right: auto;
}

.finished img {
    width: 280px;
    height: 180px;
    object-fit: cover;
}

.finished p {
    text-align: center;
}

.connection {
    margin: auto;
}

.arrow {
    width: 100px;
    height: auto;
}

.goods.flex {
    justify-content: start;
    gap: 28px;
}

.goods img {
    width: 340px;
    height: auto;
}

/* 鉱産物・金属シリコン・活性炭・その他 */
.u-table.pc-only {
    margin-top: 24px;
    width: 100%;
    display: inline-table;
    border-collapse: collapse;
    text-align: left;
}

.table-name {
    margin-top: 49px;
}

.u-table th,
.u-table td {
    padding: 14px 20px;
    border: 1px solid #707070;
    vertical-align: middle;
}

.u-table th {
    background-color: #EBEBEB;
}

.u-table th.left {
    width: 30%;
}

.u-table th.middle {
    width: 38%;
}

.u-table th.col2-left {
    width: 20%;
}

/* ベントフィックス */
.detail-wrap h4 {
    margin-top: 30px;
    margin-bottom: 16px;
}

.item-image {
    width: 720px;
    height: auto;
    margin-top: 32px;
}

.title-bottom {
    margin-top: 60px;
}

.u-table.bent-fix {
    max-width: 838px;
}

.u-table.bent-fix th.left {
    max-width: 220px;
}

.u-table.bent-fix th.middle {
    width: 35%;
    max-width: 250px;
}

.u-table.bent-fix th.right {
    width: 35%;
    max-width: 250px;
}

.u-table.bent-fix th.bg-red {
    background-color: #FFC9CD;
    color: #333333;
}

.item-flex {
    display: flex;
}

.fl-min {
    font-size: 8px;
}

.item-image.method {
    width: 32%;
    max-width: 340px;
}

.image-flex.junction {
    max-width: 1055px;
    margin-top: 0;
    gap: 19px;
}

.article {
    text-align: center;
}

.link-pdf a {
    color: #333333;
}

.link-pdf span {
    text-decoration: underline;
    margin-left: 8px;
}

.flex.link {
    display: flex;
    gap: 0;
    justify-content: start;
}

/* グラフェン */
.image.graphene {
    text-align: center;
}

.graphene-img01 {
    width: 350px;
    height: auto;
}

.image-flex.item {
    max-width: 620px;
}

.u-table.graphene {
    width: 600px;
}

.u-table.graphene th {
    width: 52%;
    text-align: left;
}

.image-flex.example {
    gap: 10px;
}

/* 非鉄金属 */
.nonferrous-image {
    width: 200px;
    object-fit: contain;
}

/* サステナビリティ */
.image-flex.sustainability {
    justify-content: center;
}

/* 環境方針基本理念 */
.representative {
    margin-top: 80px;
}

.representative .detail-wrap {
    text-align: end;
}

.sign {
    width: 250px;
    height: auto;
    margin-top: 10px;
}

/* お問い合わせ */
#contact .detail-wrap {
    line-height: 1.5;
}

.flex.step-wrap {
    gap: 20px;
}

.step {
    width: 120px;
    height: 120px;
    border-radius: 100px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.8;
    background-color: #EBEBEB;
    color: #333333;
}

.bg-red {
    background-color: #E60112;
    color: #FFFFFF;
}

.inner-text {
    margin: auto;
}

.headline {
    max-width: 650px;
    margin: 40px auto 0;
}

form {
    margin-top: 55px;
    line-height: 2;
}

form .must {
    margin-left: 10px;
    font-size: 12px;
    padding: 0 6px;
    display: inline-flex;
    background-color: #E60112;
    color: #FFFFFF;
}

form table {
    width: 100%;
}

form table tr {
    border-bottom: 2px dashed #C6C6C6;
}

form table tr:last-child {
    border-bottom: none;
}

form table th {
    width: 270px;
    vertical-align: top;
    padding: 36px 50px 36px 75px;
    padding-left: 75px;
    text-align: left;
}

form table td {
    padding: 36px 0;
}

form table.page_confirm th {
    font-weight: bold;
}

.err_list {
    max-width: 660px;
    width: 100%;
    margin: 40px auto 0;
    color: #e10000;
}

.radio-wrap label {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 13px;
}

.radio {
    margin: 6px 0 0;
    width: 100%;
    height: 22px;
}

.textarea {
    width: calc(100% - 30px);
    height: 170px;
    border: none;
    background-color: #F7F7F7;
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
}

.inputtext {
    width: calc(100% - 30px);
    height: 25px;
    border: none;
    background-color: #F7F7F7;
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
}

.name {
    display: flex;
    gap: 50px;
}

.inputtext.name {
    width: calc(100% - 30px);
}

.inputtext.name::placeholder {
    color: #A7A7A7;
}

.inputtext.tel {
    width: calc(50% - 55px);
}

.poricy {
    padding: 46px 75px 15px;
    background-color: #F7F7F7;
}

.poricy-wrap {
    height: 300px;
    overflow: scroll;
    margin-top: 37px;
    padding: 14px 30px;
    background-color: #FFFFFF;
}

.poricy-lg {
    font-size: 24px;
    border-bottom: 1px solid #C6C6C6;
}

.poricy .wrap {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.poricy li {
    list-style: none;
}

.contact-btn-wrap {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 27px;
}

.btn02.contact-btn {
    width: 280px;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
}

/* お問い合わせ内容確認 */
.table-confirm tr {
    border-bottom: none;
}

.btn02.contact-btn.back {
    background-color: #EBEBEB;
    color: #333333;
}

/* 問い合わせ完了画面 */
.headline.thanks {
    margin-top: 80px;
}

.btn02.thanks {
    width: 280px;
    margin: 0 auto;
    border: none;
    color: #FFFFFF;
    font-size: 16px;
    cursor: pointer;
}

/* 理念 */
.sticky {
    position: relative;
}

.first-view.vision {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: -1;
}

.first-view.vision img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slogan {
    width: 100%;
    max-width: 970px;
    height: 100vh;
    margin: 0 auto;
    position: relative;
}

.slogan img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
}

.vision-text {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    padding-top: 40px;
    line-height: 2.5;
}

.btnarea-bg-gray {
    margin-top: 240px;
    text-align: center;
    padding: 90px 0;
    background-color: #EBEBEB;
}

.btnarea-bg-gray .btn-base {
    background-color: #333333;
    color: #FFFFFF;
}

.btnarea-bg-gray .btn-base:hover {
    background-color: #FFFFFF;
    color: #333333;
    border: 1px solid #333333;
}

#vision footer {
    margin-top: 0;
}

/* トップメッセージ */
.flex.message {
    gap: 40px;
}

.image.message {
    width: 700px;
}

.image.message img {
    width: 100%;
    height: auto;
}

.text.message {
    width: 100%;
}

.text.message h2 {
    font-size: 40px;
}

.text-wrap.top {
    margin-top: 36px;
}

.text-wrap.bottom {
    margin-top: 48px;
}

.text.message p {
    line-height: 2;
}

.section02.message {
    margin-top: 120px;
    padding: 80px 0 69px;
    text-align: center;
    background-color: #EBEBEB;
}

.section02.message p {
    font-size: 24px;
}

.link-wrap.message {
    margin-top: 48px;
    gap: 47px;
}

#message footer {
    margin-top: 0;
}

/* 丸紅テツゲンの強み */
.bg.strength {
    width: 100%;
    padding-bottom: 144px;
    background-image: url(../../common/image/strength-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.head-text {
    padding-top: 60px;
}

.movie-wrap {
    width: 100%;
    max-width: 880px;
    margin: 40px auto 0;
    position: relative;
}

.movie-wrap video {
    width: 100%;
    height: auto;
}

#btn_mute {
    position: absolute;
    bottom: 4.5%;
    right: 2.5%;
    cursor: pointer;
}

.img-off,
.img-on {
    width: 25px;
    height: 25px;
}

.btn_mute .img-on {
    display: none;
}

.btn_mute .img-off {
    display: block;
}

.btn_mute.mute .img-on {
    display: block;
}

.btn_mute.mute .img-off {
    display: none;
}

.contents.strength {
    padding: 10px 0 0;
}

.flex.strength {
    margin: 40px 0 0 0;
    gap: 30px;
    justify-content: flex-start;
}

.box.strength {
    width: calc((100% - 30px) / 2);
    position: relative;
}

.title01,
.title02,
.title03,
.title04,
.title05 {
    width: 80%;
    max-width: 453px;
    position: absolute;
    top: 30px;
    height: 80px;
    border-radius: 20px;
    font-size: 20px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.title01 {
    background: linear-gradient(270deg, #438d4e 0%, #004009 100%);
}

.title02 {
    background: linear-gradient(270deg, #c3c3c3 0%, #535252 100%);
}

.title03 {
    background: linear-gradient(270deg, #0086cc 0%, #003a58 100%);
}

.title04 {
    background: linear-gradient(270deg, #e60012 0%, #730009 100%);
}

.title05 {
    background: linear-gradient(270deg, #ffc107 0%, #ff9800 100%);
}

.white-bg {
    min-height: 270px;
    margin-left: 35px;
    max-width: 590px;
    margin-top: 40px;
    padding-top: 100px;
    background: #fff;
    border-radius: 20px;
    filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.16));
    z-index: 50;
}

.white-bg p {
    padding: 30px;
}

.btnarea-bg-gray.strength {
    margin-top: 83px;
}

/* 事業概要 */
h4.head-text {
    font-size: 28px;
}

.page-headline {
    margin-top: 80px;
    padding: 80px 0 0;
}

.page-headline h3 {
    font-size: 40px;
    line-height: 1.45;
}

.bg-gray {
    position: relative;
}

.bg-image {
    position: absolute;
    height: 1520px;
    top: 0;
    left: 0;
    z-index: -1;
}

.bg-image img {
    width: 100%;
    height: 100%;
}

.section05.business #bgimage {
    margin-top: 0;
}

.link-wrap.business_recycle {
    background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(67, 141, 78, 0.6) 100%);
}

.link-wrap.business.business_recycle p {
    max-width: 680px;
}

.link-wrap.business p {
    max-width: 500px;
    margin-left: auto;
    color: #FFFFFF;
    line-height: 2.5;
    text-align: left;
}

.section04.business {
    margin-top: 120px;
}

.section04.business .wrap {
    margin-top: 0;
}

.cover img {
    filter: brightness(50%);
}

#business footer {
    margin-top: 145px;
}

/* 合金鉄関連事業 */
#bgimage.business_import {
    background-image: url(../../common/image/business_import-img01.jpg);
}

.link-wrap.business_import {
    background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 134, 204, 0.6) 100%);
}

/*  */
#bgimage.business_products {
    background-image: url(../../common/image/business_products-img01.jpg);
}

.link-wrap.business_products {
    background: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgb(230, 186, 0, 0.6) 100%);
}

/* 鉄資源サイクルと丸紅テツゲンメタルズの事業領域 */
.title-box.type02.business_area {
    width: 560px;
}

.business_area-image {
    margin-top: 80px;
    width: 100%;
    height: auto;
}

.section04.business.business_area {
    margin-top: 200px;
}

.bg-image.business_area {
    width: 100%;
    height: 32vw;
    margin-top: 80px;
}

/* 資料ダウンロード */
.contents.download {
    margin-top: 60px;
}

.wrap.download {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.download-contents {
    display: inline-block;
    padding: 45px 40px;
    border: 1px solid #333333;
}

.download-contents.off {
    border-color: #C6C6C6;
    color: #C6C6C6;
}

.download-contents .btn a {
    background-color: #333333;
    color: #FFFFFF;
}

.download-contents.off .btn a {
    background-color: #C6C6C6;
    pointer-events: none;
}

.download-contents p {
    text-align: center;
    white-space: nowrap;
}

.download-contents .btn {
    margin-top: 40px;
    text-align: center;
}

.btn-base.download:hover {
    border-color: #333333;
}

.acc_wrap.recruit {
    max-width: 482px;
    width: 100%;
    margin: 40px auto 0;
    padding: 0;
}

.acc_wrap.recruit .acc_sw {
    width: 100%;
    padding: 10px 0;
    background: #E60112;
    color: #fff;
    border: 1px solid #E60112;
    transition: all 0.3s;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: .3s;
}

.acc_wrap.recruit .acc_sw span {
    position: relative;
    font-size: 32px;
    top: unset;
    left: unset;
    transform: translate(0);
}

.acc_wrap.recruit .acc_sw span:after {
    content: "";
    width: 20px;
    height: 20px;
    border-bottom: 4px solid #fff;
    border-left: 4px solid #fff;
    position: absolute;
    right: -50px;
    top: 40%;
    transform: translate(0, -50%) rotate(-45deg);
    transform-origin: center;
    transition: .3s;
}

.acc_wrap.recruit .acc_sw.open span:after {
    top: 60%;
    transform: translate(0, -50%) rotate(135deg);
}

.acc_wrap.recruit .acc_cts {
    width: 100%;
    padding: 10px 0;
}

.acc_wrap.recruit .acc_cts h3 {
    font-size: 18px;
    line-height: 1.4em;
    margin: 0 0 5px;
    font-weight: 600;
}

.acc_wrap.recruit .acc_cts p {
    font-size: 16px;
    line-height: 1.4em;
    font-weight: 600;
}

.acc_wrap.recruit .acc_cts .mainabi_bnr {
    display: block;
    margin: 15px 0;
    transition: .3s;
}

.acc_wrap.recruit .acc_sw:hover,
.acc_wrap.recruit .acc_cts .mainabi_bnr:hover {
    opacity: .8;
}

/* 採用情報トップ */
.first-view.recruit {
    position: relative;
    padding: 0;
    padding-top: 80px;
    overflow: hidden;
}

.fade-wrap {
    position: relative;
}

.page-title.recruit {
    position: absolute;
    top: 27vw;
    left: 8vw;
    width: 50vw;
    max-width: 970px;
    padding: 0;
    z-index: 50000;
}

.slick-current.fade-text {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition-delay: 2s !important;
}

.slick-current.fade-text .fadein {
    transform: none;
}

.slick-current.fade-text.fadein.active {
    transform: none;
}

.fade-text.fadein {
    transform: none;
}

.slick-track {
    display: flex;
}

.slide-sp {
    display: none;
}

.recruit.message {
    padding: 50px 0;
    margin: 80px 0 0 0;
    position: relative;
    background: url(../image/recruit_message_bgi.jpg) no-repeat center / cover;
}

.image-flex.message {
    padding: 0;
    margin-top: 0;
    gap: 0;
}

.message-bg {
    width: 100%;
}

.image-flex.message img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
}

.link-box {
    display: block;
    max-width: 550px;
    color: #FFFFFF;
    padding: 3% 30px;
    text-align: center;
    background: linear-gradient(15deg, rgba(162, 27, 21, 1) 0%, rgba(240, 39, 29, 1) 100%);
    position: relative;
    top: unset;
    left: unset;
    /* transform: translateX(-50%) translateY(-50%); */
    z-index: 1100;
    margin: 0 auto;
    box-sizing: border-box;
}

.box-title {
    font-size: 60px;
}

.btn.box.recruit {
    margin-top: 10px;
}

.line01 {
    height: 4px;
    width: 94px;
    background-color: #FFFFFF;
    border: none;
}

.box-subtitle {
    font-size: 24px;
}

.box-description {
    margin-top: 30px;
    line-height: 1.5;
    text-align: left;
}

.recruit.message .box-description {
    max-width: 420px;
    margin: 30px auto 0;
}

.box .type01 {
    border: 2.34px solid #FFFFFF;
}

.box .type01:hover {
    color: #E60112;
}

.recruit.strength {
    padding: 80px 0;
    margin: 80px 0 0 0;
    position: relative;
    background: url(../image/recruit_strength_bgi.jpg) no-repeat center / cover;
    overflow: hidden;
}

.image-flex.strength {
    gap: 0;
    margin-top: 0;
    background-color: #333333;
}

.image-flex.strength img {
    opacity: 0.21;
}

.link-box.white {
    background: #FFFFFF;
    color: #E60112;
    width: 800px;
    max-width: 550px;
    padding: 20px;
    box-sizing: border-box;
}

.link-box.white .inner {
    border: 1px solid #E60112;
}

.line01.red {
    background-color: #E60112;
    border: none;
}

.white .box-subtitle {
    color: #E60112;
}

.white p {
    color: #333333;
}

.white .btn-base {
    color: #E60112;
    border-color: #E60112;
}

.white .btn-base:hover {
    background: #E60112;
    color: #FFFFFF;
}

.white .box-description {
    width: 470px;
    margin: 30px auto 0;
}

.object {
    width: 74%;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 5;
    opacity: 0;
}

.object img {
    width: 100%;
    height: auto;
}

.animation {
    will-change: transform;
    animation: slide-skew 0.5s;
    opacity: 1;
}

@keyframes slide-skew {
    0% {
        transform: translateX(-100%) translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }

}

.recruit.makers {
    padding: 120px 0 100px;
    text-align: center;
}

.section-title.makers {
    font-size: 90px;
    color: #E60112;
}

.recruit.makers .line01 {
    background-color: #333333;
    border: none;
}

.section-subtitle {
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.maker-wrap {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.flex.top,
.flex.bottom {
    gap: 30px;
}

.link-maker {
    display: inline-block;
}

.link-maker:hover .maker-card {
    background-color: #FFFFFF;
}

.link-maker:hover .box-maker {
    background-color: #FFFFFF;
    color: #E60112;
}

.link-maker:hover .number p {
    color: #E60112;
}

.maker-card {
    width: 280px;
    height: 420px;
    background-color: #333333;
    position: relative;
    transition: all 0.3s;
}

.maker-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.maker-card .wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
}

.box-maker {
    width: 240px;
    height: 184px;
    padding: 20px 0;
    color: #FFFFFF;
    text-align: center;
    border: 1px solid #FFFFFF;
    transition: all 0.3s;
}

.card-title {
    font-size: 18px;
}

.line02 {
    margin-top: 20px;
    width: 48px;
    height: 2px;
    color: #E60112;
    background-color: #E60112;
    border: none;
}

.text-bottom {
    margin-top: 20px;
}

.number p {
    color: #FFFFFF;
    font-size: 29px;
    text-align: center;
    transition: all 0.3s;
}

.episode02 {
    margin-top: 37px;
}

.episode03 {
    margin-top: 75px;
}

.episode04 {
    margin-top: 112px;
}

.slidein {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 1.5s;
}

.slidein-bottom {
    transform: translate(0, 150px);
}

.scrollin {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
}

.recruit-btn-wrap {
    margin-top: 100px;
    text-align: center;
}

.recruit-btn-wrap .btn.box:not(:first-of-type) {
    margin-top: 50px;
}

.btn-base.large-white {
    width: 600px;
    height: 140px;
    padding: 0;
    color: #E60112;
    border: 2px solid #E60112;
    border-radius: 20px;
}

.btn-base.large-red {
    width: 600px;
    height: 140px;
    padding: 0;
    color: #FFFFFF;
    border: 2px solid #E60112;
    background-color: #E60112;
    border-radius: 20px;
}

.btn-base.large-white:hover {
    color: #FFFFFF;
    background-color: #E60112;
}

.btn-base.large-red:hover {
    color: #E60112;
    background-color: #FFFFFF;

}

.btn-base:hover hr.red {
    background-color: #FFFFFF;
}

.btn-large-title {
    font-size: 44px;
    font-weight: bold;
}

.btn-large-subtitle {
    font-size: 24px;
}

.btn-large-subtitle.middle {
    font-size: 32px;
    margin-top: 10px;
}

.recruit-btn-wrap .line01.red {
    background-color: #E60112;
    border: none;
    transition: all 0.3s;
}

.parallax-bg {
    height: 240px;
    background-image: url(../../common/image/parallax-bg.png);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.btn.box.under {
    margin-top: 50px;
}

#recruit footer {
    margin-top: 100px;
}

/* 採用　メッセージ */
.first-view.message {
    background-color: #333333;
}

.page-title.recruit-message {
    width: 100%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
}

.message.text-wrap {
    text-align: center;
}

.text-head {
    margin-top: 50px;
}

.message.text-wrap {
    margin-top: 100px;
}

.message.text-wrap p {
    font-size: 24px;
    line-height: 3;
}

.btn.message {
    margin-top: 100px;
    text-align: center;
}

.btn.message.totop {
    margin-top: 40px;
}

.btn-name {
    font-size: 32px;
    transition: all 0.3s;
    margin-top: 0;
}

.btn-text {
    font-size: 20px;
}

.btn-base.message {
    width: 480px;
    padding: 10px 0;
    color: #E60112;
    border-color: #E60112;
}

.btn-base.message:hover .btn-name {
    color: #FFFFFF;
}

.btn-base.message:hover {
    background-color: #E60112;
    color: #FFFFFF;
}

/* 強みと魅力 */
.title-box.recruit-strength {
    top: 55%;
    display: block;
    width: unset;
    height: unset;
    border: none;
    text-align: center;
}

.page-title-black {
    font-size: 60px;
    letter-spacing: 0.16em;
    color: #333333;
}

.page-subtitle {
    font-size: 24px;
}

.contents01,
.contents02,
.contents03,
.contents04,
.contents05 {
    width: 100%;
    padding: 160px 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.contents01 {
    background-image: url(../../common/image/recruit-strength-bg01.jpg);
}

.contents02 {
    background-image: url(../../common/image/recruit-strength-bg02.jpg);
}

.contents03 {
    background-image: url(../../common/image/recruit-strength-bg03.jpg);
}

.contents04 {
    background-image: url(../../common/image/recruit-strength-bg04.jpg);
}

.contents05 {
    background-image: url(../../common/image/recruit-strength-bg05.jpg);
}

.flex.recruit-strength {
    gap: 45px;
}

.order1 {
    order: 1;
}

.order2 {
    order: 2;
}

.text.recruit-strength h3 {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.text.recruit-strength p {
    line-height: 2;
}

.image.recruit-strength img {
    width: 27vw;
    max-width: 450px;
    min-width: 300px;
    height: auto;
}

.btn.strength {
    margin-top: 100px;
    text-align: center;
}

/* 社員紹介1 */
.page-title.episode {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 100;
}

.page-title.episode h2 {
    display: inline-block;
    color: #FFFFFF;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: normal;
}

.page-title.episode .top,
.page-title.episode .under {
    display: table;
}

.page-title.episode p {
    background-color: #E60112;
    padding: 0 0.5em;
    margin-top: 10px;
}

.episode-contents {
    padding: 240px 0 0;
}

.episode-contents .flex {
    gap: 40px;
}

.episode-contents .text {
    margin-top: -5px;
}

.episode-contents .image img {
    width: 25vw;
    max-width: 540px;
    height: auto;
}

.episode-contents h3 {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 2px solid #E60112;
}

.episode-contents p {
    margin-top: 10px;
    line-height: 1.75;
}

.episode-contents p.btn-name {
    margin-top: 0;
}

.episode-contents .bg {
    height: 240px;
}

.episode-contents .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-contents.bgimage {
    background-image: url(../../common/image/episode01-bg02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin-top: 180px;
    padding: 90px 0 120px;
    color: #FFFFFF;
}

.episode-contents.bgimage .flex {
    justify-content: end;
}

.episode-contents.bgimage .text {
    max-width: 540px;
}

.episode-contents.carousel {
    background-color: #EBEBEB;
    position: relative;
}

.episode-contents.btn-wrap {
    padding-top: 0;
    margin-top: 100px;
}

/* slider */
.slider-3 .slick-slide {
    position: relative;
}

.slider-3 .slick-slide .slide-img {
    width: 480px;
    height: 320px;
    transition: all 0.6s ease 0.4s;
    overflow: hidden;
}

.slider-3 .slick-slide .slide-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-card {
    width: 640px;
    height: 380px;
    padding: 40px;
    background-color: #FFFFFF;
    border: 1px solid #EBEBEB;
    position: absolute;
    top: 71%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
}

.slide-card .top {
    display: flex;
    align-items: center;
    gap: 40px;
}

.slide-card .top .image {
    width: 200px;
}

.slide-card .top .image img {
    width: 100%;
    height: auto;
}

.personal p {
    margin-top: 0;
    line-height: 1.5;
}

p.maker-name-e {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.carousel p.maker-name-j {
    margin-top: 10px;
    font-weight: lighter;
    line-height: 1;
    letter-spacing: 0.2em;
}

.slide-card .bottom {
    margin-top: 30px;
}

.episode-contents .contents-title {
    border: none;
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    color: #E60112;
}

.episode-btn-wrap {
    width: 100%;
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.episode-btn-wrap .wrap-top,
.episode-btn-wrap .wrap-bottom {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.episode-btn-wrap a {
    display: inline-block;
}

.episode-btn-wrap .btn-base {
    width: 240px;
    border: 2px solid #E60112;
    color: #E60112;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-off {
    pointer-events: none;
}

.episode-btn-wrap .btn-off {
    width: 240px;
    padding: 19px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #EBEBEB;
    color: #EBEBEB;
}

.episode-btn-wrap .btn-base:hover {
    background-color: #E60112;
    color: #FFFFFF;
}

.episode-btn-wrap .btn-base span,
.episode-btn-wrap .btn-off span {
    font-size: 28px;
}

.epsode-arrow {
    width: 18px;
    margin-left: 5px;
    margin-top: 5px;
}

#episode footer {
    margin-top: 100px;
}

/* 社員紹介2 */
.episode-contents.bgimage.episode02 {
    background-image: url(../../common/image/episode02-bg02.jpg);
}

/* 社員紹介3 */
.episode-contents.bgimage.episode03 {
    background-image: url(../../common/image/episode03-bg02.jpg);
    background-position: 30% center;
}

/* 社員紹介4 */
.episode-contents.bgimage.episode04 {
    background-image: url(../../common/image/episode04-bg02.jpg);
}

.episode-contents.bgimage.episode04 .flex {
    justify-content: flex-start;
}

/* キャリアステップ */
.first-view.u-recruit {
    padding-top: 80px;
}

.title-box.u-recruit {
    width: unset;
    height: unset;
    border: none;
    color: #FFFFFF;
    display: block;
    text-align: center;
    top: 55%;
}

.page-title.u-recruit {
    font-size: 60px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.page-subtitle.u-recruit {
    font-size: 24px;
}

.headline.u-recruit {
    max-width: unset;
    margin-top: 80px;
}

.step-bg-gray {
    background-color: #EBEBEB;
    padding: 20px 0;
    margin-top: 80px;
}

.step-title-wrap {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-title-wrap hr {
    width: calc((100% - 310px) / 2);
    margin: 0;
    height: 2px;
    background-color: #E60112;
    border: none;
}

.step-title {
    font-size: 32px;
    font-weight: bold;
    color: #E60112;
    padding: 0 20px;
    position: relative;
}

.second,
.third,
.forth {
    margin-top: -33px;
    text-align: end;
}

.step-contents {
    display: flex;
    align-items: center;
}

.step-contents.left {
    justify-content: start;
}

.step-contents.rigth {
    justify-content: end;
}

.step-image {
    max-width: 420px;
    height: auto;
}

.step-name {
    width: 240px;
    padding: 50px 0;
    background-color: #FFFFFF;
    color: #333333;
    text-align: center;
}

.step-name.gray {
    color: #333333;
    background-color: #EBEBEB;
}

.field-arrow {
    text-align: center;
    margin-top: -40px;
}

.step-arrow {
    width: 55px;
}

.box-step {
    position: relative;
}

.step-text {
    display: inline-block;
    width: 70%;
    /* max-width: 260px; */
    text-align: left;
    color: #FFFFFF;
    line-height: 2;
    letter-spacing: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-bg-none {
    margin-top: 120px;
}

.btn-wrap.u-recruit {
    padding: 80px 0;
    background-color: #EBEBEB;
    text-align: center;
}

.btn-base.u-recruit {
    display: inline-block;
    width: 300px;
    padding: 20px 0;
    margin: 0 15px;
    background-color: #FFFFFF;
    font-size: 24px;
    color: #E60112;
    border: 1px solid #E60112;
    border-radius: 10px;
}

.btn-base.u-recruit:hover {
    background-color: #E60112;
    color: #FFFFFF;
}

#u-recruit footer {
    margin-top: 0;
}

/* 待遇・制度 */
.section-system,
.section-treatment {
    margin-top: 100px;
}

.section-title.resources {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    font-size: 32px;
    font-weight: bold;
    color: #8CC63F;
    border: 2px solid #C6C6C6;
}

.wrap.system {
    margin-top: 25px;
    position: relative;
}

.img-position {
    width: 360px;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
}

.img-position img {
    width: 100%;
    height: auto;
}

.wrap-name {
    font-size: 24px;
    font-weight: bold;
    color: #8CC63F;
    padding: 0 0 10px 20px;
    border-bottom: 1px solid #C6C6C6;
}

.box-flex {
    margin-top: 40px;
    padding: 5px;
    display: inline-flex;
    gap: 30px;
    align-items: center;
    border: 4px solid #C6C6C6;
    border-radius: 8.8889px;
}

.image.resources {
    width: 100px;
    height: auto;
}

.box-name.resources {
    font-size: 24px;
    font-weight: bold;
}

.description.resources {
    font-size: 16px;
    font-weight: bold;
}

.wrap.learn,
.wrap.support,
.wrap.insurance {
    margin-top: 80px;
}

.flex.learn {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.box.resources {
    min-width: 192px;
    display: inline-block;
    padding: 20px;
    border: 4px solid #C6C6C6;
    border-radius: 8.8889px;
    text-align: center;
}

.image.resources.learn {
    height: 100px;
    width: auto;
}

.text.resources {
    margin-top: 10px;
}

.text.support {
    margin-top: 40px;
    padding-left: 20px;
}

.text.support p {
    font-size: 24px;
    font-weight: bold;
}

.text.insurance {
    padding-left: 20px;
    margin-top: 20px;
}

.text.insurance p {
    font-size: 20px;
    font-weight: bold;
}

.btn-wrap.u-recruit.resources {
    margin-top: 100px;
}

/* 募集要項 */
.anker-wrap {
    margin-top: 80px;
    text-align: center;
}

.anker-wrap a {
    width: 19vw;
    max-width: 360px;
    min-width: 160px;
    margin: 0 20px;
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    display: inline-block;
    padding: 20px 0;
}

.anker-comprehensive {
    background-color: #E1E6EC;
}

.anker-general {
    background-color: #E1EBE1;
}

.section-comprehensive {
    margin-top: 80px;
}

h3.title.entry {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.title.entry.comprehensive {
    background-color: #E1E6EC;
}

.name.entry {
    margin-top: 40px;
    font-size: 24px;
    font-weight: bold;
    padding-left: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid #C6C6C6;
}

.text.entry {
    margin-top: 5px;
    padding-left: 20px;
    font-weight: bold;
    line-height: 2;
}

.other {
    margin-top: 20px;
}

.tel.entry {
    margin-top: 80px;
    padding: 10px 0;
    text-align: center;
    border: 1px solid #E60112;
    border-radius: 10px;
}

.tel.entry a {
    width: 100%;
    display: inline-block;
    color: #E60112;
}

.tel.entry .text {
    font-size: 18px;
}

.tel.entry .num {
    display: inline-block;
    font-size: 22px;
    border-bottom: 1px solid #E60112;
}

.section-general {
    margin: 120px 0;
}

.title.entry.general {
    background-color: #E1EBE1;
}

a.anchor {
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}

.contents.compliance {
    margin-top: 54px;
}

.contents.compliance h4 {
    font-size: 22px;
    line-height: 1.5em;
    font-weight: bold;
    margin: 1em 0 0.5em;
}

.contents.compliance h5 {
    font-size: 18px;
    line-height: 1.5em;
    font-weight: bold;
    margin: 0 0 5px;
}

.contents.compliance ul.nomble {
    margin: 25px 0 0 0;
}

ul.nomble {
    list-style: none;
    width: 100%;
    counter-reset: nomble;
}

ul.nomble li {
    width: 100%;
    padding: 0 0 0 2em;
    margin: 0 0 2.5em;
    box-sizing: border-box;
    position: relative;
}

ul.nomble li:before {
    counter-increment: nomble;
    content: counter(nomble)'. ';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1.5em;
    font-weight: bold;
}

ul.dotted li {
    width: 100%;
    display: block;
    padding: 0 0 0 1.5em;
    margin: 0 0 .2em;
    box-sizing: border-box;
    position: relative;
    list-style: none;
}

ul.dotted li:last-child {
    margin: 0;
}

ul.dotted li:before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: #8CC63F;
}

ul.dotted li ul li:before {
    content: 'ー';
    position: absolute;
    left: 0;
    top: 0;
    color: inherit;
}

.resources_layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-top: 25px;
    text-align: left;
}

.resources_layout .cts {
    width: calc(100% - 320px - 20px);
}

.resources_layout .cts h5 {
    font-size: 18px;
    line-height: 1.5em;
    font-weight: bold;
    margin-bottom: 5px;
}

.resources_layout .cts h5:not(:first-of-type) {
    margin-top: 25px;
}

.resources_layout .img {
    width: 320px;
}

.resources_layout .img img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.resources_layout ul.dotted li {
    font-size: 18px;
    line-height: 1.5em;
    font-weight: bold;
}

/*働きやすい環境*/
.inner-container.workstyle {
    width: 100%;
    margin-bottom: 100px;
}

.inner-container.workstyle * {
    box-sizing: border-box;
}

.inner-container.workstyle img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.headline.workstyle {
    margin: 60px auto 100px;
}

.section-title.workstyle {
    text-align: center;
    width: 100%;
    font-size: 20px;
    margin: 0 0 40px;
    font-weight: bold;
    color: #333333;
}

.section-title.workstyle .en {
    color: #808080;
    display: block;
    font-size: 50px;
    line-height: 1.5em;
    letter-spacing: .05em;
    margin: 0 0 .2em;
}

.section-title.workstyle img {
    width: auto;
}

.wrap.workstyle {
    margin-bottom: 40px;
}

.wrap.workstyle .contents_layout {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: flex-start;
}

.wrap.workstyle .contents_layout .img {
    width: 50%;
}

.wrap.workstyle .contents_layout .txt_cts {
    width: calc(100% - 50% - 25px);
}

.wrap.workstyle .contents_layout .inner {
    width: 100%;
}

.wrap.workstyle .contents_layout .inner:not(:first-of-type) {
    margin-top: 40px;
}

.wrap.workstyle .contents_layout .img .inner:first-of-type {
    margin-top: 37px;
}

.wrap.workstyle .contents_layout h4 {
    color: #4D4D4D;
    font-size: 24px;
    line-height: 1.4em;
    font-weight: bold;
    margin: 0 0 20px;
}

.wrap.workstyle .contents_layout h4 .label {
    color: red;
    padding: 0 15px;
    margin: 0 0 0 20px;
    border: 2px solid red;
    font-size: 22px;
    line-height: 1em;
}

.inner-container.workstyle .main_img {
    width: 100%;
    display: block;
    margin: 50px 0 100px;
}

.inner-container.workstyle .voice_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 10%;
    justify-content: flex-start;
}

.inner-container.workstyle .voice_list .comment_box {
    width: calc(90% / 2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #B3B3B3;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 10px 20px;
    position: relative;
}

.inner-container.workstyle .voice_list .comment_box img {
    width: 90px;
}

.inner-container.workstyle .voice_list .comment_box p {
    width: calc(100% - 100px);
    font-size: 14px;
    line-height: 1.6em;
    font-weight: bold;
}

.inner-container.workstyle .voice_list .comment_box:before {
    content: "";
    position: absolute;
    bottom: -36px;
    left: 70%;
    border-bottom: 16px solid transparent;
    border-right: 0 solid transparent;
    border-left: 26px solid transparent;
    border-top: 24px solid #fff;
    z-index: 2;
}

.inner-container.workstyle .voice_list .comment_box:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 70%;
    margin-left: 2px;
    border-bottom: 16px solid transparent;
    border-right: 0 solid transparent;
    border-left: 26px solid transparent;
    border-top: 24px solid #B3B3B3;
    z-index: 1;
}

.wrap.voice+.wrap.workstyle {
    margin-top: 80px;
}



@media screen and (max-width: 1850px) {
    .row {
        align-items: center;
    }

    .material {
        display: block;
        min-width: unset;
        min-height: 404px;
        align-items: center;
    }

    .type02 {
        display: flex;
    }

    .md-mt-20 {
        margin-top: 20px;
    }

    .arrow {
        width: 50px;
    }

    .finished img {
        width: 100%;
        height: auto;
        margin: auto;
    }

    /* キャリアステップ */
    .inner-container.type-step {
        width: unset;
    }
}

@media screen and (max-width: 1630px) {

    /* nav */
    .nav-contents-wrap {
        flex-wrap: wrap-reverse;
    }

    .nav-contents.language {
        width: 100%;
        display: inline-block;
        text-align: right;
        padding-bottom: 0;
    }

    .nav-contents {
        margin-bottom: 4px;
        padding-bottom: 20px;
    }

    .nav-contents:hover {
        margin-bottom: 0;
    }

    .language {
        margin-bottom: 0;
    }

    .language:hover {
        margin-top: 0;
    }

    .menuSub {
        top: 116px;
    }
}

@media screen and (max-width: 1565px) {
    .section02 .section-title {
        padding-left: 55px;
    }
}

@media screen and (max-width: 1480px) {

    /* 共通 */
    .title-box {
        height: 150px;
    }

    .page-title.recruit {
        top: 31vw;
    }

    /* footer */
    footer .container {
        padding: 0 10px;
        justify-content: center;
        text-align: center;
    }

    .company {
        display: inline-block;
        text-align: left;
    }

    .footer-nav {
        justify-content: center;
        text-align: left;
    }

    footer a {
        font-size: 14px;
    }

    /* 下層 */
    .office-image {
        width: 28%;
    }

    .item01-name.small {
        font-size: 18px;
    }

    .item01-detail.small {
        font-size: 12px;
    }

    .inputtext.tel {
        width: calc(100% - 30px);
    }

    .name {
        gap: 20px;
    }

    .first-view.recruit,
    .first-view.u-recruit {
        padding-top: 142px;
    }

    /* 丸紅テツゲンの強み */
    .white-bg {
        min-height: 290px;
    }

    .white-bg p {
        font-size: 15px;
    }

    /* 資料ダウンロード */
    .wrap.download {
        gap: 20px;
    }

    /* 強みと魅力 */
    .page-title-black {
        font-size: 48px;
    }

    .page-subtitle {
        font-size: 20px;
    }

    /* 社員紹介1 */
    .page-title.episode h2 {
        font-size: 36px;
    }

    /* キャリアステップ */
    .title-box.u-recruit {
        top: 60%;
    }

    .outer-container.type-step {
        width: unset;
    }

    /* 待遇・制度 */
    .img-position {
        width: 22vw;
        height: 235px;
    }

    .img-position img {
        height: 100%;
        object-fit: cover;
    }

}

@media screen and (max-width: 1330px) {

    .pc-nav,
    .contact {
        display: none;
    }

    .sp-nav {
        display: block;
        padding: 15px;
    }

    .nav-contents-wrap {
        display: block;
        overflow: auto;
    }

    .nav-contents:hover {
        border: none;
        padding: 0;
    }

    .hamburger.active span:nth-child(1) {
        top: 7px;
    }

    .page-title.recruit {
        top: 29vw;
    }
}

@media screen and (max-width: 1200px) {

    /* 下層 */
    .outer-container {
        width: 90%;
    }

    .inner-container {
        width: 100%;
    }

    .table-outline th {
        width: 160px;
    }

    .item01-name.small {
        font-size: 14px;
    }

    .item01-wrap.top {
        display: block;
    }

    .item01-wrap.bottom {
        display: block;
    }

    .item01-detail.small {
        font-size: 16px;
        white-space: nowrap;
    }

    .first-view.recruit,
    .first-view.u-recruit {
        padding-top: 80px;
    }

    .inputtext.tel {
        width: calc(50% - 55px);
    }

    /* 資料ダウンロード */
    .wrap.download {
        display: block;
    }

    .download-contents {
        display: block;
        width: 86%;
        max-width: 400px;
        margin: 0 auto;
        margin-top: 40px;
        padding: 40px 0;
    }

    /* 採用情報トップ */
    .maker-wrap {
        display: block;
    }

    .episode02,
    .episode03,
    .episode04 {
        margin-top: 0;
    }

    .flex.bottom {
        margin-top: 10px;
    }

    /* 社員紹介1 */
    .page-title.episode h2 {
        font-size: 30px;
    }

    .episode-btn-wrap {
        display: block;
    }

    .episode-btn-wrap .wrap-top,
    .episode-btn-wrap .wrap-bottom {
        gap: 20px;
    }

    .episode-btn-wrap .wrap-bottom {
        margin-top: 20px;
    }

    .episode-contents.bgimage .flex {
        display: block;
    }

    .episode-contents.bgimage .text {
        width: 100%;
        max-width: unset;
    }

    .slide-card {
        width: 440px;
        padding: 20px;
    }

    .slide-card .top .image {
        width: 150px;
    }

    p.maker-name-e {
        font-size: 24px;
    }

    /* 待遇・制度 */
    .img-position {
        width: 30vw;
    }
}

@media screen and (max-width: 1100px) {

    /* 丸紅テツゲンの強み */
    .flex.strength {
        display: block;
    }

    .white-bg {
        margin-top: 40px;
        max-width: unset;
        height: unset;
    }

    /* footer */
    footer .container {
        display: block;
        padding: 0;
    }

    .company {
        padding-top: 60px;
    }

    /* 採用情報トップ */
    .link-box {
        padding: 40px 30px;
    }

    .btn.box {
        margin-top: 10px;
    }

    .recruit.strength {
        margin-top: 120px;
    }

    .image-flex.strength {
        height: 280px;
    }

    .image-flex.strength img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .object {
        width: 91%;
    }

    .link-box.white {
        width: unset;
        max-width: unset;
    }

    .white .box-description {
        width: 90%;
    }

    .btn.box.message {
        margin-top: 40px;
    }
}

@media screen and (max-width: 1050px) {

    /* section03 */
    .section03 h3 {
        font-size: 30px;
    }

    /* ベントフィックス */
    .item-image {
        width: 100%;
    }

    /* お問合せ */
    .inputtext.tel {
        width: calc(50% - 40px);
    }

    /* トップメッセージ */
    .text.message h2 {
        font-size: 28px;
    }

    /* footer */
    footer .md-hidden {
        display: none;
    }

    .footer-nav {
        padding: 50px;
    }

    footer .btn-wrap {
        margin-top: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    footer a {
        margin-bottom: 0;
    }

    /* 事業概要：リサイクル関連事業 */
    .page-headline h3 {
        font-size: 35px;
    }

    .link-wrap.business {
        width: 100%;
        padding: 80px 0;
        margin: 0 auto;
    }

    .link-wrap.business p {
        max-width: 95%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 920px) {
    /* キャリアステップ */

    .headline.u-recruit {
        margin-top: 40px;
    }

    .step-bg-gray {
        margin-top: 40px;
        padding: 40px 0;
    }

    .contents.u-recruit {
        margin-top: 0;
    }

    .step-wrap {
        padding-right: 20px;
    }

    .step-title-wrap {
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .step-title {
        font-size: 20px;
        padding: 0;
    }

    .step-title-wrap hr {
        width: calc((100% - 180px) / 2);
    }

    .second,
    .third,
    .forth {
        margin-top: 0;
    }

    .step-name {
        width: 230px;
        padding: 20px 0;
    }

    .step-name.order2,
    .step-image.order1,
    .box-step.order1 {
        order: unset;
    }

    .fade-left {
        transform: translate(50px, 0);
    }

    .field-arrow {
        margin-top: 0;
        padding-left: 10vw;
        text-align: left;
    }

    .step-arrow {
        width: 30px;
        margin-bottom: 7px;
    }

    .second,
    .third,
    .forth {
        margin-top: 0;
        text-align: left;
    }

    .step-contents.rigth {
        justify-content: flex-start;
    }

    .step-image {
        width: 100%;
        max-width: 600px;
        height: auto;
    }

    .step-bg-none {
        margin-top: 40px;
    }

}

/* sp */
@media screen and (max-width: 768px) {

    /* 共通 */
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    body {
        font-size: 15px;
    }

    h2.fl48 {
        font-size: 36px;
    }

    .fl45 {
        font-size: 28px;
    }

    .fl36 {
        font-size: 24px;
    }

    .mt-60 {
        margin-top: 30px;
    }

    .btn {
        margin-top: 40px;
    }

    .btn-base {
        padding: 15px 50px;
    }

    header {
        height: 48px;
        min-height: unset;
    }

    h1 {
        width: 122px;
        padding: 0 12px;
    }

    h1 img {
        width: 100%;
        height: auto;
    }

    h3.fl36 {
        font-size: 26px;
        margin-top: 20px;
    }

    .section-title span {
        font-size: 12px;
    }

    /* ハンバーガー */
    button#js-hamburger {
        width: 24px;
        padding: 0;
    }

    .hamburger span:nth-child(2) {
        margin: 5px 0;
    }

    .sp-nav {
        padding: 12px 18px;
    }

    .hamburger.active span:nth-child(3) {
        top: -7px;
    }

    .nav-contents-sp .item {
        padding: 14px 23px 14px 36px;
    }

    .nav-contents-sp .menuSub .u-item {
        padding: 14px 50px;
    }

    /* トップページ */
    .img-over {
        width: 90%;
        min-width: unset;
        max-width: 500px;
        top: 50%;
        left: 50%;
        transform: translateX(-50%)translateY(-50%);
    }

    /* section01 */
    .section01 {
        margin-top: 64px;
        height: unset;
        background-image: url(../../common/image/top-bg01-sp.png);
    }

    .section01 .container {
        width: 95%;
    }

    .section01 .container .wrap {
        padding: 40px 0;
        width: 100%;
    }

    .section01 h2 {
        margin-top: 65px;
    }

    .section01 .btn {
        margin-top: 40px;
        text-align: center;
    }

    /* section02 */
    .section02 {
        margin-top: 64px;
    }

    .section02 .container {
        padding-top: 40px;
        text-align: center;
    }

    .section02 .section-title {
        padding-left: 0;
    }

    .section02 .link-wrap {
        padding-top: 40px;
        display: block;
        width: 95%;
        margin: 0 auto;
    }

    .section02 .link-wrap a {
        display: block;
    }

    .section02 .under {
        margin: 0 auto;
    }

    /* section03 */
    .section03 {
        margin-top: 20px;
        background-image: url(../../common/image/section03-bg-sp.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .section03 .container {
        width: 95%;
        margin: 0 auto;
        padding: 84px 0 64px;
    }

    .section03 .wrap {
        height: unset;
        display: block;
        width: 100%;
    }

    .section03 .left {
        width: unset;
        max-width: unset;
        padding: 40px 47px;
        text-align: center;
    }

    .section03 h3 {
        margin-bottom: 32px;
    }

    .section03 p {
        text-align: left;
    }

    .section03 .btn {
        margin-top: 40px;
        text-align: center;
    }

    .section03 .right {
        width: 100%;
    }

    /* section04 */
    .section04 {
        margin-top: 64px;
        background-image: url(../../common/image/section04-bg-sp.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .section04 .description {
        width: 95%;
        margin: 30px auto 0;
        text-align: left;
    }

    .section04 .wrap {
        margin-top: 30px;
    }

    .section04 .top {
        display: block;
    }

    .section04 .card {
        width: 100%;
        display: block;
        position: unset;
    }

    .card:hover img {
        transform: none;
    }

    .section04 .belt {
        position: unset;
    }

    /* section05 */
    .section05 {
        margin-top: 64px;
    }

    .section05 #bgimage.active01 {
        margin-top: 32px;
        background-image: url(../../common/image/section05-01-sp.jpg);
    }

    .section05 .link-wrap {
        width: calc(100% - 30px);
        padding: 40px 15px;
    }

    .section05 .link-wrap ul {
        width: 100%;
        margin: 0;
    }

    .section05 .link-wrap li {
        width: 100%;
    }

    .section05 .btn {
        width: 100%;
        margin-top: 40px auto;
        text-align: center;
    }

    .btn .btn-base {
        width: 200px;
        padding: 15px 0;
        margin: 0 auto;
    }

    /* section06 */
    .section06 {
        margin-top: 64px;
    }

    .section06 .box {
        height: unset;
        background-image: url(../../common/image/section06-02-sp.png);
    }

    .section06 img {
        width: 100%;
        height: 156px;
        object-fit: cover;
    }

    .section06 .wrap {
        padding: 40px 0 30px;
    }

    .section06 .section-title {
        text-align: center;
    }

    /* section07 */
    .section07 {
        margin-top: 64px;
    }

    .section07 .gradation .section-title {
        width: 200px;
        height: 135px;
    }

    /* footer */
    footer {
        margin-top: 64px;
    }

    .footer-nav {
        padding: 30px 0 24px;
    }

    footer .btn-wrap {
        gap: 0;
    }

    .w-100 {
        width: 100%;
    }

    footer .link {
        width: calc(100% - 1px);
    }

    footer .link a {
        width: 100%;
    }

    footer .btn01,
    footer .btn02 {
        font-size: 14px;
        text-align: center;
        width: unset;
    }

    footer .btn01 {
        padding: 23px 0;
    }

    footer .btn02 {
        padding: 24px 0;
    }

    .copy {
        font-size: 12px;
    }

    /* 下層 */
    .breadcrumbs {
        display: none;
    }

    .outer-container {
        width: 95%;
    }

    .recruit .page-title.episode {
        width: 100%;
    }

    .recruit .outer-container {
        width: 95%;
        display: inline-block;
        text-align: left;
    }

    .title-box {
        width: 260px;
        height: 135px;
    }

    .page-title.product {
        border-bottom: 3px solid #FFFFFF;
    }

    .contents {
        margin-top: 40px;
    }

    .contents-title {
        font-size: 22px;
        margin-top: 40px;
        padding-bottom: 0;
    }

    .contents-title-product {
        border-left: 6px solid #E60112;
    }

    /* 会社概要 / 沿革 */
    .table-outline {
        width: 100%;
        font-size: 12px;
    }

    .table-outline th,
    .table-outline td {
        display: block;
    }

    .table-outline th {
        width: 100%;
        border: none;
        border-bottom: 1px solid #C6C6C6;
    }

    .table-outline td {
        padding-top: 10px;
        padding-left: 0;
    }

    .table-outline .td-first {
        padding-top: 10px;
    }

    .office-image {
        position: unset;
        width: 40%;
        min-width: 200px;
        margin-bottom: 30px;
    }

    /* 事業拠点 / 組織図 */
    .base {
        display: block;
        padding-top: 0;
        padding-bottom: 30px;
        margin-top: 30px;
    }

    .map {
        margin-top: 30px;
        width: 100%;
        min-width: 100%;
    }

    /* 商品紹介 */
    .item01-link:hover {
        opacity: 1;
    }

    .item01-name {
        font-size: 20px;
    }

    .item01-link:hover .item01-name {
        opacity: 1;
    }

    .contents-title-product {
        font-size: 24px;
        line-height: 1.4em;
        margin-top: 40px;
    }

    .image-flex {
        display: block;
    }

    .image-flex .image {
        margin-top: 10px;
    }

    .product-nav {
        margin-top: 90px;
    }

    .small-image {
        width: 100%;
    }

    /* product共通 */
    .image-flex.col4 .image {
        width: 100%;
    }

    /* 合金鉄 */
    .detail-wrap.flex {
        display: block;
    }

    .ferroalloy-image {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .row {
        display: block;
        padding-bottom: 20px;
        border-bottom: 1px solid #C6C6C6;
    }

    .material {
        display: flex;
        min-height: unset;
    }

    .material img {
        width: 100%;
        height: auto;
    }

    .md-mt-20 {
        margin-top: 0;
    }

    .connection {
        margin: 20px 0;
        text-align: center;
    }

    .connection img {
        width: 30px;
        transform: rotate(90deg);
    }

    /* 鉱産物・金属シリコン・活性炭・その他 */
    .d-ib {
        display: inline-block;
    }

    .u-table.pc-only {
        display: none;
    }

    .table-name {
        margin-top: 24px;
    }

    .u-table.sp-only {
        margin-top: 8px;
        width: 100%;
        display: inline-table;
        font-size: 12px;
    }

    .u-table.first {
        margin-top: 15px;
    }

    .u-table th,
    .u-table td {
        padding: 10px 17px;
    }

    .u-table th {
        width: 61px;
        text-align: center;
    }

    /* 鉄粉 */
    .image-wrap.goods.flex {
        display: block;
    }

    .image-wrap.goods img {
        width: 100%;
        height: auto;
    }

    /* ベントフィックス */
    .item-image {
        margin-top: 24px;
    }

    .title-bottom {
        margin-top: 40px;
    }

    .u-table.bent-fix th {
        width: 40%;
        text-align: left;
    }

    .item-image.method {
        width: 100%;
        max-width: unset;
    }

    .article {
        margin-top: 24px;
    }

    /* グラフェン */
    .u-table.graphene {
        width: 100%;
        font-size: 12px;
    }

    .image-flex.item {
        margin: 0 auto;
    }

    .example-image {
        margin-top: 10px;
    }

    /* 非鉄金属製品 */
    .nonferrous-image {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    /* サステナビリティ */
    .image-flex.sustainability {
        display: grid;
        gap: 10px;
    }

    .title-box.sustainability {
        padding: 10px 20px;
    }

    /* 環境方針基本理念 */
    .sign {
        width: 200px;
    }

    /* お問い合わせ */
    .flex.step-wrap {
        gap: 10px;
    }

    .step {
        width: 90px;
        height: 90px;
    }

    .inner-text {
        font-size: 12px;
    }

    form table th {
        display: block;
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }

    form table td {
        display: block;
        padding: 20px 0;
    }

    .radio-wrap {
        align-items: baseline;
    }

    .radio-wrap label {
        display: flex;
        align-items: baseline;
    }

    .radio {
        margin: 1px 3px 0 5px;
        width: unset;
        height: unset;
    }

    .name {
        gap: 10px;
    }

    .poricy {
        padding: 0;
        background-color: unset;
    }

    .poricy-wrap {
        padding: 0;
        padding: 10px;
        background-color: #F7F7F7;
    }

    .checkbox {
        width: 15px;
        height: 15px;
    }

    .poricy-lg {
        font-size: 20px;
    }

    .contact-btn-wrap {
        display: block;
    }

    .btn02.contact-btn {
        width: 100%;
        margin-top: 10px;
    }

    /* 理念 */
    .title-box.type2 {
        width: auto;
        height: auto;
        max-width: 98%;
        min-width: 340px;
    }

    .vision-text {
        font-size: 16px;
        padding-top: 32px;
    }

    .btnarea-bg-gray {
        margin-top: 120px;
        padding: 50px 0;
    }

    .btnarea-bg-gray .btn {
        margin-top: 0;
    }

    /* トップメッセージ */
    .flex.message {
        display: block;
    }

    .flex.message h2 {
        font-size: 24px;
        margin-top: 64px;
    }

    .image.message {
        width: 100%;
    }

    .text-wrap.top {
        margin-top: 40px;
    }

    .text-wrap.bottom {
        margin-top: 32px;
    }

    .image.message {
        margin-top: 40px;
    }

    .section02.message {
        margin-top: 80px;
        padding-bottom: 96px;
    }

    /* 丸紅テツゲンの強み */
    .contents.strength {
        padding: 0;
        margin-top: 64px;
    }

    .box.strength {
        width: 100%;
    }

    .white-bg {
        margin-left: 10px;
    }

    .white-bg p {
        padding: 24px 10px;
    }

    .title01,
    .title02,
    .title03,
    .title04 {
        width: 90%;
        height: 60px;
        font-size: 16px;
    }

    .img-off,
    .img-on {
        width: 20px;
        height: 20px;
    }

    /* 事業概要 */
    h4.head-text {
        font-size: 24px;
    }

    .page-headline {
        margin-top: 40px;
        padding: 40px 0 0;
    }

    .page-headline h3 {
        font-size: 22px;
    }

    .section05.business {
        margin-top: 0;
    }

    .section05.business #bgimage {
        margin-top: 32px;
    }

    .link-wrap.business p {
        width: 100%;
        padding: 0;
        width: unset;
        max-width: unset;
    }

    .section04.business {
        margin-top: 64px;
    }

    .outer-container.business {
        width: 100%;
    }

    /* 鉄資源サイクルと丸紅テツゲンメタルズの事業領域 */
    .business_area-image {
        margin-top: 40px;
    }

    .section04.business.business_area {
        margin-top: 64px;
    }

    /* 資料ダウンロード */
    .download-contents p {
        white-space: unset;
    }

    /* 採用情報トップ */
    .first-view.recruit {
        padding-top: 48px;
    }

    .page-title.recruit {
        width: 90%;
        top: 62%;
        left: 5%;
    }

    .image-flex.strength {
        height: 240px;
    }

    .image-flex.message {
        display: flex;
    }

    .message-bg {
        height: 240px;
    }

    .text-bottom {
        margin-top: 10px;
    }

    .link-box {
        padding: 30px 20px;
        min-width: 225px;
    }

    .box-maker {
        padding-bottom: 0;
    }

    .box-title {
        font-size: 32px;
    }

    .box-subtitle {
        font-size: 16px;
    }

    .box-description {
        width: 100%;
        font-size: 12px;
    }

    .box-description {
        margin-top: 20px;
    }

    .btn.box.recruit {
        margin-top: 20px;
        padding: 0;
    }

    .btn.box.recruit a {
        width: unset;
    }

    .btn-base.recruit {
        width: 140px;
        font-size: 12px;
    }

    .recruit.strength {
        margin-top: 80px;
    }

    .object {
        width: 700px;
        height: 100%;
        left: unset;
        right: 8%;
        bottom: 0;
    }

    .object img {
        height: 100%;
    }

    .link-box.white {
        width: 90%;
        min-width: 250px;
    }

    .link-box.white .inner {
        padding: 10px 10px 20px;
    }

    .white .box-description {
        width: 100%;
        margin-top: 20px;
    }

    .section-title.makers {
        font-size: 32px;
    }

    .line01 {
        height: 2px;
        width: 47px;
    }

    .line02 {
        margin-top: 10px;
    }

    .section-subtitle.red {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .section-text {
        font-size: 12px;
        width: 65%;
        margin: 0 auto;
    }

    .section-caution {
        font-size: 12px;
    }

    .recruit.makers {
        padding: 100px 0 80px;
    }

    .maker-wrap {
        margin-top: 30px;
        padding: 0 10px;
    }

    .flex.top,
    .flex.bottom {
        display: block;
    }

    .link-maker {
        margin-top: 40px;
    }

    .maker-card {
        width: 100%;
        height: auto;
    }

    .recruit-btn-wrap {
        margin-top: 80px;
    }

    .btn-base.large-white,
    .btn-base.large-red {
        width: 100%;
        height: unset;
        padding: 5px 0;
    }

    .btn-large-title {
        font-size: 24px;
    }

    .btn-large-subtitle {
        font-size: 16px;
    }

    .parallax-bg {
        height: 120px;
    }

    .btn.box a {
        width: 95%;
        max-width: 365px;
    }

    .btn-large-subtitle.middle {
        font-size: 18px;
    }

    .btn-large-title {
        font-size: 28px;
    }

    /* 採用　メッセージ */
    .message.text-wrap {
        margin-top: 30px;
        text-align: left;
    }

    .message.text-wrap p {
        font-size: 18px;
        line-height: 2.6;
    }

    .text-head {
        margin-top: 30px;
    }

    .btn.message {
        margin-top: 40px;
    }

    .btn.message a {
        width: 95%;
        max-width: 360px;
    }

    .btn-base.message {
        width: unset;
        padding: 5px 0;
    }

    .btn-name {
        font-size: 24px;
    }

    .btn-text {
        font-size: 12px;
    }

    .acc_wrap.recruit {
        max-width: 360px;
        width: 95%;
    }

    .acc_wrap.recruit .acc_sw {
        padding: 5px 0;
    }

    .acc_wrap.recruit .acc_sw span {
        font-size: 24px;
    }

    .acc_wrap.recruit .acc_sw span:after {
        width: 15px;
        height: 15px;
        border-bottom: 3px solid #fff;
        border-left: 3px solid #fff;
    }

    .acc_wrap.recruit .acc_cts p {
        font-size: 15px;
    }

    .entry_btn_wrap .btn.message.totop {
        margin-top: 20px;
    }

    /* 強みと魅力 */
    .title-box.recruit-strength {
        top: 50%;
    }

    .page-title {
        font-size: 30px;
    }

    .page-subtitle {
        font-size: 12px;
    }

    .contents.recruit-strength {
        margin-top: 0;
    }

    .text.recruit-strength h3 {
        font-size: 24px;
    }

    .text.recruit-strength p {
        font-size: 16px;
    }

    .flex.recruit-strength {
        display: block;
    }

    .contents01,
    .contents02,
    .contents03,
    .contents04,
    .contents05 {
        padding: 30px 0;
    }

    .text.recruit-strength h3 {
        margin-bottom: 30px;
    }

    .image.recruit-strength {
        margin-top: 40px;
    }

    .image.recruit-strength img {
        width: 100%;
        max-width: unset;
        height: 50vw;
        object-fit: cover;
    }

    .btn.strength {
        margin-top: 40px;
    }

    #recruit footer {
        margin-top: 80px;
    }

    /* 社員紹介1 */
    .page-title.episode {
        top: 30%;
    }

    .page-title.episode h2 {
        font-size: max(20px, 3.2vw);
    }

    .episode-contents {
        padding: 40px 0 0;
    }

    .episode-contents .flex {
        display: block;
    }

    .episode-contents h3 {
        font-size: 20px;
    }

    .episode-contents .image {
        margin-top: 10px;
        text-align: center;
    }

    .episode-contents .image img {
        width: 80%;
        margin: 0 auto;
    }

    .episode-contents .bg {
        height: 120px;
    }

    .episode-contents.bgimage {
        background-position: 30% center;
        margin-top: 40px;
        padding: 40px 0 160px;
    }

    .episode-contents.carousel {
        background-color: unset;
        padding: 0;
    }

    .gray-header {
        height: 120px;
        background-color: #EBEBEB;
    }

    .slider-3 .slick-slide {
        margin-top: 245px;
    }

    .slider-3 .slick-slide .slide-img {
        width: 300px;
        height: 170px;
    }

    .slide-card {
        width: 315px;
        height: unset;
        padding: 10px;
        top: 35%;
    }

    .slide-card .top {
        gap: 10px;
    }

    .slide-card .top .image {
        width: 100px;
    }

    p.maker-name-e {
        font-size: 20px;
    }

    .maker-name-j {
        font-size: 12px;
    }

    .slide-card .bottom {
        margin-top: 10px;
    }

    .slide-card .bottom p {
        font-size: 12px;
    }

    .episode-contents.btn-wrap {
        margin-top: 40px;
    }

    .episode-contents .contents-title {
        font-size: 24px;
    }

    .episode-btn-wrap {
        margin-top: 0;
    }

    .episode-btn-wrap .wrap-top,
    .episode-btn-wrap .wrap-bottom {
        display: block;
        margin-top: 0;
    }

    .episode-btn-wrap a {
        width: 100%;
        margin-top: 20px;
    }

    .episode-btn-wrap .btn-base,
    .episode-btn-wrap .btn-off {
        width: 100%;
        max-width: 295px;
        padding: 0;
        margin: 0 auto;
    }

    .episode-btn-wrap .btn-base span,
    .episode-btn-wrap .btn-off span {
        font-size: 26px;
    }

    #episode footer {
        margin-top: 40px;
    }

    /* 社員紹介2 */
    .episode-contents.bgimage.episode02 {
        background-position: 25% center;
    }

    /* 社員紹介3 */
    .episode-contents.bgimage.episode03 {
        background-image: url(../../common/image/episode03-bg02.jpg);
        background-position: 20% top;
    }

    /* 社員紹介4 */
    .episode-contents.bgimage.episode04 {
        background-image: url(../../common/image/episode04-bg02-sp.jpg);
        background-position: top;
    }

    /* キャリアステップ */
    .first-view.u-recruit {
        padding-top: 48px;
    }

    .page-title.u-recruit {
        font-size: clamp(18px, 7vw, 54px);
    }

    .page-subtitle.u-recruit {
        font-size: clamp(12px, 3vw, 24px);
    }

    .title-box.u-recruit {
        top: 50%;
        min-height: unset;
    }

    .box-step p {
        font-size: 12px;
        width: 90%;
        overflow: auto;
    }

    .step-name {
        font-size: 12px;
    }

    .btn-wrap.u-recruit {
        padding: 40px 0;
        margin-top: 80px;
        display: grid;
        justify-content: center;
        gap: 20px;
    }

    .btn-base.u-recruit {
        width: 72vw;
        max-width: 275px;
        padding: 5px 0;
    }

    .btn.message.totop.carrierstep {
        margin-top: 0;
    }

    /* 待遇・制度 */
    .section-system {
        margin-top: 40px;
    }

    .section-title.resources {
        font-size: 20px;
    }

    .wrap.system,
    .wrap.learn {
        margin-top: 10px;
        text-align: center;
    }

    .wrap-name {
        font-size: 16px;
        padding-left: 10px;
        text-align: left;
    }

    .box-flex {
        width: 100%;
        box-sizing: border-box;
        margin: 20px auto;
        gap: 10px;
        border: 2px solid #C6C6C6;
    }

    .image.resources {
        width: 55px;
    }

    .box-name.resources {
        font-size: 18px;
        text-align: left;
    }

    .description.resources {
        font-size: 14px;
        text-align: left;
    }

    .text.resources {
        margin-top: 0;
    }

    .img-position {
        position: unset;
        margin: 20px auto;
        width: 73vw;
        height: unset;
    }

    .img-position img {
        height: auto;
    }

    .contents.system {
        margin-top: 0;
        padding: 0 10px;
    }

    .flex.learn {
        margin-top: 20px;
        padding: 0 10px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .box.resources {
        width: calc(50% - 32px);
        min-width: 150px;
        padding: 10px;
        border: 2px solid #C6C6C6;
    }

    .box.resources:last-child {
        margin-right: auto;
    }

    .image.resources.learn {
        height: 70px;
    }

    .box-name.resources.learn {
        text-align: center;
    }

    .wrap.support,
    .wrap.insurance {
        margin-top: 40px;
    }

    .text.support,
    .text.insurance {
        margin-top: 20px;
        padding-left: 10px;
    }

    .text.support p,
    .text.insurance p {
        font-size: 16px;
    }

    .section-treatment {
        margin-top: 80px;
    }

    /* 募集要項 */
    .anker-wrap {
        margin-top: 40px;
    }

    .anker-wrap a {
        font-size: 20px;
        padding: 10px 0;
        margin: 0 7.5px 10px 0;
    }

    h3.title.entry {
        font-size: 16px;
    }

    .name.entry {
        margin-top: 10px;
        padding-left: 10px;
        padding-bottom: 7.5px;
        font-size: 16px;
    }

    .text.entry {
        padding-left: 10px;
        margin-bottom: 20px;
    }

    .tel.entry {
        margin-top: 50px;
        padding: 5px 0;
    }

    .tel.entry .text {
        font-size: 12px;
    }

    .section-general {
        margin: 50px 0 40px;
    }

    .tel.entry .num {
        font-size: 16px;
    }

    .title-box {
        width: auto;
        max-width: 98%;
        min-width: 300px;
        height: auto;
        min-height: 150px;
        padding: 15px 10px;
        box-sizing: border-box;
    }

    .page-title {
        color: #FFFFFF;
        white-space: inherit;
        text-align: center;
    }

    .resources_layout .cts,
    .resources_layout .img {
        width: 100%;
    }

    .resources_layout {
        margin-top: 15px;
    }

    .resources_layout ul.dotted li {
        font-size: 14px;
        margin: 0;
    }

    /*働きやすい環境*/
    .headline.workstyle {
        margin: 40px auto 50px;
        text-align: left;
    }

    .section-title.workstyle .en {
        font-size: 36px;
        margin: 0;
    }

    .section-title.workstyle {
        font-size: 18px;
        margin: 0 0 20px;
    }

    .wrap.workstyle .contents_layout {
        gap: 20px;
        flex-direction: column-reverse;
    }

    .wrap.workstyle .contents_layout .img,
    .wrap.workstyle .contents_layout .txt_cts {
        width: 100%;
    }

    .wrap.workstyle .contents_layout h4 {
        font-size: 24px;
    }

    .wrap.workstyle .contents_layout h4 .label {
        padding: 0 10px;
        margin: 10px 0 0 0;
        font-size: 20px;
        line-height: 1.5em;
        display: block;
        width: fit-content;
    }

    .inner-container.workstyle .voice_list {
        gap: 25px 0;
    }

    .inner-container.workstyle .voice_list .comment_box {
        width: 100%;
    }

    .inner-container.workstyle .voice_list .comment_box img {
        width: 110px;
    }

    .inner-container.workstyle .voice_list .comment_box p {
        width: calc(100% - 120px);
    }

    .inner-container.workstyle .main_img {
        margin: 50px 0;
    }

    .section-title.workstyle img {
        max-width: 200px;
    }

    .wrap.voice+.wrap.workstyle {
        margin-top: 50px;
    }

    .inner-container.workstyle {
        margin-bottom: 80px;
    }

    .inner-container.workstyle .voice_list .comment_box:before,
    .inner-container.workstyle .voice_list .comment_box:after {
        left: 77%;
    }

    .resources_layout .cts h5 {
        font-size: 15px;
    }



}

@media screen and (max-width: 520px) {

    /* top */
    .movie {
        height: 178vw;
    }

    .fade-wrap img {
        height: unset;
    }

    .fade-text {
        width: 50% !important;
        height: auto;
    }

    .slide-pc {
        display: none;
    }

    .slide-sp {
        display: block;
    }

    /* 理念 */
    .vision-text {
        font-size: 14px;
    }

    /* 丸紅テツゲンの強み */
    #btn_mute {
        bottom: 4%;
    }

    .img-off,
    .img-on {
        width: 3vw;
        min-width: 10px;
    }
}

@media screen and (max-width: 403px) {
    .box.resources {
        width: 100%;
        min-width: unset;
    }

    .box.resources:last-child {
        margin-right: unset;
    }

    .page-title,
    .title-box.product h2 {
        font-size: 28px;
    }

    .title-box.product h2 {
        white-space: nowrap;
    }
}

@media screen and (max-width: 340px) {
    .section04 .bottom span {
        width: 90%;
        white-space: unset;
    }

    /* 下層 */
    .fl36 {
        font-size: 20px;
    }

    h3.contents-title {
        font-size: 20px;
    }

    h3.contents-title-product {
        font-size: 20px;
    }

    .title-box {
        width: 200px;
        height: 100px;
    }

    .office-image {
        width: 100%;
        min-width: unset;
    }

    .image-sp-flex {
        display: block;
    }

    .image-sp-flex.last {
        width: 100%;
    }

    .image-sp-flex.last img {
        width: 100%;
    }

    /* お問い合わせ */
    .flex.step-wrap {
        gap: 5px;
    }

    .step {
        width: 75px;
        height: 75px;
    }

    .inner-text {
        font-size: 10px;
    }

    .name {
        display: block;
    }

    .inputtext.name {
        margin-top: 10px;
    }

    .inputtext.tel {
        width: calc(100% - 30px);
    }

    /* 問い合わせ完了画面*/
    .btn02.thanks {
        width: 100%;
    }

    /* 環境方針基本理念 */
    .sign {
        width: 150px;
        margin-top: 0;
    }

    /* トップメッセージ */
    .title-box.type2 {
        width: 200px;
        height: 100px;
    }

    /* 丸紅テツゲンの強み */
    .title01,
    .title02,
    .title03,
    .title04 {
        font-size: 14px;
        padding: 0 5px;
    }

    /* 採用　メッセージ */
    .btn-name {
        font-size: 20px;
    }

    /* キャリアステップ */
    .box-step p {
        font-size: 10px;
        line-height: 1.5;
    }

    /* footer */
    footer .container {
        max-width: 95%;
        margin: 0 auto;
    }

    footer .company {
        width: 100%;
    }

    footer .company img {
        width: 100%;
        height: auto;
    }

    footer .btn-wrap {
        display: block;
    }

    footer .link {
        width: 100%;
    }
}

.news_list {
    display: inline-block;
    width: 100%;
    margin: 60px 0 100px;
}

.news_list .news_box {
    width: 100%;
    padding: 40px 20px;
    margin: 0;
    border-bottom: 1px solid #e4e4e4;
}

.news_list .news_box:first-of-type {
    border-top: 1px solid #e4e4e4;
}

.news_list .date {
    display: inline-block;
    width: 100%;
    margin: 0 0 5px;
}

.news_list .news_cts {
    display: inline-block;
    width: 100%;
}

.news_list .news_cts a {
    color: inherit;
}

.news_list .news_cts a:hover {
    color: #e60012;
    text-decoration: underline;
}