@charset "utf-8";

/*-------------------------------------------------------
Tablet
-------------------------------------------------------*/
@media (max-width: 1200px) and (min-width: 769px) {
	

.service-cta.head-cta {
    right: 3rem;
}
.header{
    height: 5.4rem;
    padding: 0 1.2rem 0;
}

.header-title a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.6rem;
}
.header-logo{
    width: 9.2rem;
}
.header-name{
    font-size: 1.4rem;
}
.header-name span{
    font-size: 1.6rem;
    margin-left: 0.4rem;
}

.header-nav{
    display: none;
}

.header-nav-d{
    display: inline-block;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 2000;
  right : 0.6rem;
  top   : 0.6rem;
  width : 4.2rem;
  height: 4.2rem;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 3.0rem;
  height  : 0.2rem ;
  left    : 0.6rem;
  background : var(--blue02);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s ease-in-out;
}

.header-tr .hamburger span {
  background : var(--white);
}

.hamburger.bb span {
  background : #333;
}

.hamburger span:nth-child(1) {
  top: 1.0rem;
}
.hamburger span:nth-child(2) {
  top: 2.0rem;
}
.hamburger span:nth-child(3) {
  top: 3.0rem;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 1.6rem;
  left: 0.6rem;
  -webkit-transform: rotate(315deg);
  -moz-transform   : rotate(315deg);
  transform        : rotate(315deg);
  background : #fff;
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 1.6rem;
  -webkit-transform: rotate(-315deg);
  -moz-transform   : rotate(-315deg);
  transform        : rotate(-315deg);
  background : #fff;
}

nav.global-nav-sp.active {
    transform: translateY(0%);
}

nav.global-nav-sp {
  display:block;
  position: fixed;
  z-index : 1000;
  top  : -2rem;
  left : 0;
  color: #000;
  background: var(--gradient01);
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  box-shadow: 0 0.4rem 0.8rem rgba(0,0,0,0.4);
}


nav.global-nav-sp ul {
  margin: 4.2rem auto 1.2rem;
  padding: 0;
  width: 100%;
}

nav.global-nav-sp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
nav.global-nav-sp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.global-nav-sp ul li:hover{
  background :var(--blue);
}

nav.global-nav-sp ul li a {
  display: block;
  color: var(--white);
  font-weight: 600;
  line-height: 1.5rem;
  padding: 2rem 2rem;
  text-decoration :none;
  text-align: left;
  font-weight: bold;
}
nav.global-nav-sp ul li.sub a {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size:95%;
  line-height: 1.5rem;
  padding: 1.4rem 3rem;
  text-decoration :none;
  background: rgba(1,133,255,0.4);
  font-weight: normal;
}


/* このクラスを、jQueryで付与・削除する */
nav.global-nav-sp.active {
  transform: translateY(0%);
}


.home-company {
    padding: 8rem 3.2rem 0 !important;
    height: 116rem;
}

.media-items{
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    padding: 2.4rem 2.4rem;
}

.media-name{
    font-size: 1.2rem;
}

.media-link{
    font-size: 1.6rem;
}

}


/*-------------------------------------------------------
SP
-------------------------------------------------------*/
@media (max-width: 768px) { 

.scroll{
    display:none;
}

.spbr{
    display:inline;
}

.pcbr{
    display:none;
}

.sp-only{
    display:block;
}

main{
	width: 100vw;
	overflow:hidden;
}

.mid-l {
    font-size: 3.4rem;
    line-height: 1.25;
    font-weight: 800;
}

.mid-m {
    font-size: 2.2rem;
    line-height: 1.25;
    font-weight: 800;
}

.mid-s{
	font-size: 1.8rem;
	line-height: 1.25;
	font-weight: 800;
}


.header{
    height: 5.4rem;
	padding: 0 1.2rem 0;
}

.header-title a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0.6rem;
}
.header-logo{
	width: 9.2rem;
}
.header-name{
	font-size: 1.4rem;
}
.header-name span{
	font-size: 1.6rem;
	margin-left: 0.4rem;
}

.header-nav{
	display: none;
}

.header-nav-d{
	display: inline-block;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 2000;
  right : 0.6rem;
  top   : 0.6rem;
  width : 4.2rem;
  height: 4.2rem;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 3.0rem;
  height  : 0.2rem ;
  left    : 0.6rem;
  background : var(--blue02);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s ease-in-out;
}

.header-tr .hamburger span {
  background : var(--white);
}

.hamburger.bb span {
  background : #333;
}

.hamburger span:nth-child(1) {
  top: 1.0rem;
}
.hamburger span:nth-child(2) {
  top: 2.0rem;
}
.hamburger span:nth-child(3) {
  top: 3.0rem;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 1.6rem;
  left: 0.6rem;
  -webkit-transform: rotate(315deg);
  -moz-transform   : rotate(315deg);
  transform        : rotate(315deg);
  background : #fff;
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 1.6rem;
  -webkit-transform: rotate(-315deg);
  -moz-transform   : rotate(-315deg);
  transform        : rotate(-315deg);
  background : #fff;
}

nav.global-nav-sp.active {
    transform: translateY(0%);
}

nav.global-nav-sp {
  display:block;
  position: fixed;
  z-index : 1000;
  top  : -2rem;
  left : 0;
  color: #000;
  background: var(--gradient01);
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  box-shadow: 0 0.4rem 0.8rem rgba(0,0,0,0.4);
}

nav.global-nav-sp ul {
  margin: 4.2rem auto 1.2rem;
  padding: 0;
  width: 100%;
}

nav.global-nav-sp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
nav.global-nav-sp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.global-nav-sp ul li:hover{
  background :var(--blue);
}

nav.global-nav-sp ul li a {
  display: block;
  color: var(--white);
  font-weight: 600;
  line-height: 1.5rem;
  padding: 2rem 2rem;
  text-decoration :none;
  text-align: left;
  font-weight: bold;
}
nav.global-nav-sp ul li.sub a {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size:95%;
  line-height: 1.5rem;
  padding: 1.4rem 3rem;
  text-decoration :none;
  background: rgba(1,133,255,0.4);
  font-weight: normal;
}

/* このクラスを、jQueryで付与・削除する */
nav.global-nav-sp.active {
  transform: translateY(0%);
}



.container.fixed-width {
    padding: 0 1.2rem;
}

.contents-head {
    height: 75vw;
    max-height: 74rem;
    padding-top: 5.2rem;
}

.contents-head-s {
    min-height: 19rem;
    padding-top: 5.2rem;
}

.contents-head-s .page-name-ja {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    white-space: wrap;
}
.contents-head-s .page-name-en {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}

.breadcrumb {
    position: absolute;
    top: 5.6rem;
    left: 0;
}

.breadcrumb ul {
    padding: 0 0.4rem;
    line-height: 1.2;
}
.page-name {
    gap: 0.4em;
    padding: 0 1.6rem 0 2rem;
}
.page-name-ja {
    font-size: 3.8rem;
    white-space: wrap;
}
.page-name-en {
    font-size: 3.0rem;
}






.video video {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: auto;
    height: 100%;
    min-width: 0;
    min-height: 0;
    transform: translate(-50%, -50%);
}

section.intro {
    min-height: 100vh;
    padding-top: 10vh;
    padding-bottom: 10rem;
    z-index: 10;
}

.intro-catch {
	max-width: 100%;
    height: 54vw;
}
.intro-catch-1,.intro-catch-2,.intro-catch-3,.intro-catch-4 {
    font-size: 20vw;
    left:0;
}

.intro-catch-2 {
    text-shadow: -0.1rem -0.1rem 0 #96E1FF, 0.1rem 0.1rem 0 #1E70C8, 0rem 0.5rem 0.3rem rgba(0, 0, 0, 0.25);
}

.intro-catch-4 {
    text-shadow: -0.15rem -0.15rem 0 #96E1FF, 0.15rem 0.15rem 0 #1E70C8, 0rem 0.5rem 0.3rem rgba(0, 0, 0, 0.25);
}

.intro-catch-3,.intro-catch-4 {
	top: 22vw;
}
.intro-catch span {
    font-size: 10vw;
}
.intro-catch-en {
    bottom: 0rem;
    left: 0.6rem;
    color: var(--white);
    font-size: 4vw;
}

.intro-box-2 {
    margin-top: 12rem;
    margin-left: 0.8rem;
    width: 100%;
    padding: 0.4rem 0 0.4rem 1.2rem;
}

.intro-box-2 h3 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.intro-box-2 h3 span {
    font-size: 4.2rem;
    line-height: 1;
}

.intro-box-2 p {
    color: var(--gray08);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.75;
}

.intro-box-3 {
    margin-top: 6rem;
    margin-left: 0.8rem;
    width: 100%;
    padding: 0.4rem 0 0.4rem 1.2rem;
}
.intro-box-3 h3 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.intro-box-3 h3 span {
    font-size: 4.2rem;
    line-height: 1;
}

.intro-box-3 p {
    color: var(--gray08);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.75;
}

.intro-box-4 {
    margin-top: 0rem;
    width: 90%;
    margin-left: 10%;
    margin-bottom: -20rem;
}

.home-intro-fig-1 {
    margin-top: -20rem;
}

.home-intro-fig-2 img {
	opacity: 0.75;
}


.home-company .catch-en{
	margin-top: 2rem;
	font-size: 9rem;
	line-height: 7.2rem;
}

.home-company {
    padding: 4rem 1.2rem 0 !important;
    height: auto;
}

.home-company-body {
	display: flex;
	flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: -14rem;
    padding: 0 2.4rem;
}

.home-company-read {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    width: 100%;
    margin-top: 30rem;
    text-align: justify;
}

.home-company-figs {
    width: 100%;
    height: 48rem;
    margin-top: 8rem;
}

.home-company-fig-1 {
    margin-top: 34rem;
    width: 67rem;
}

.home-company-fig-2 {
    margin: 10rem auto -18rem;
    width: 90%;
}

.home-business .catch-en{
	margin-top: 2rem;
	font-size: 9rem;
	line-height: 7.2rem;
}

.home-business {
    padding: 4rem 1.2rem 0 !important;
    height: auto;
}

.home-business-body {
	display: flex;
	flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2.4rem 6rem;
}

.home-business-figs {
    position: relative;
    right: 0;
    width: 90%;
    max-width: 35rem;
}

.home-business-read {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    width: 100%;
    margin-top: 2rem;
    text-align: justify;
}

.home-business .catch-en{
	margin-top: 2rem;
	font-size: 9rem;
	line-height: 7.2rem;
}

.home-recruit {
    padding: 6rem 1.2rem 0 !important;
    height: auto;
}

section.recruit {
    margin-top: -42rem;
    padding-top: 4rem;
}

.home-recruit-body {
	display: flex;
	flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2.4rem 6rem;
}

.home-recruit-figs {
    position: relative;
    right: 0;
    width: 90%;
    max-width: 35rem;
}

.home-recruit-read {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    width: 100%;
    margin-top: 2rem;
    text-align: justify;
}
.home-recruit .catch-en{
	margin-top: 2rem;
	font-size: 9rem;
	line-height: 7.2rem;
}

.footer .container.fixed-width {
    padding: 5rem 1.2rem 2rem;
}

.footer-body{
	flex-direction: column;
	padding: 1rem 0.6rem;
	gap: 2.4rem;
}

.footer-address {
    width: 100%;
}

.footer-menu {
    width: 100%;
    font-size: 1.2rem;
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1rem;
}
.footer-menu>ul>li {
    width: calc(50% - 0.6rem);
    padding-bottom: 0rem;
    padding-top: 0.4rem;
    border-top: 0.1rem solid var(--gray03);
    font-weight: bold;
    line-height: 1.8rem;
}
.footer-menu>ul>li>a {
    padding: 1rem 0;
}
.footer-menu>ul>li>ul>li {
    line-height: 1.8rem;
}


.footer-menu ul.sub-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu ul.sub-menu li{
	line-height: 1.4rem;
	font-weight:normal;
}

.footer-copyright {
    margin-top: 2rem;
    font-size: 1.4rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: normal;
}

.catch {
    font-size: 2.8rem;
    line-height: 4rem;
}

section.page {
    padding: 0 0 4rem;
}
.page-body {
    padding: 2.4rem;
    text-align: center;
}


section.philosophy {
    padding: 5rem 2.4rem 12rem;
}

.philosophy .catch-en {
	position: relative;
    font-size: 13rem;
    line-height:10rem;
    width: 100%;
    word-break: break-all;
    z-index: -1;
    margin-top:2rem;
    margin-bottom: -15rem;
}

section.vision {
    padding: 5rem 2.4rem 12rem;
}

.vision .catch-en {
    font-size: 15rem;
    line-height: 12rem;
}

section.corpinfo {
    padding: 5rem 0rem 8rem;
}

.corpinfo-table {
    width: 90%;
    margin: 3rem auto 3rem;
}

.list-table .tr {
    flex-direction: column;
    width: 100%;
    gap: 0;
    justify-content: space-between;
    align-items: stretch;
    border-top: 0.1rem solid var(--gray06);
}

.list-table .tr .th {
    justify-content: left;
    align-items: flex-start;
    min-width: 50%;
    padding: 1.2rem 1.2rem 0rem;
    white-space: nowrap;
}

.list-table .tr .td {
    width: 100%;
    padding: 0.8rem 1.2rem 1.6rem;
    font-size: 1.6rem;
    color: var(--gray03);
    font-weight: 400;
    line-height: 1.5;
}

.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 80%;
}

section.biz-1 {
    padding: 60vw 0rem 0rem;
}

.biz-fig{
	position: absolute;
	right: calc(50% - 29vw);
	top: -80vw;
	width: 58vw;
	animation: biz-fig-anim 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
	animation-delay: 1s;
	opacity: 0;
	z-index: 10;
}

@keyframes biz-fig-anim {
0% {
	opacity: 0;
	top: -60vw;
}
100% {
	opacity: 1;
	top: -70vw;
}
}


.biz-body {
    padding: 0 0rem;
}

.biz-body .box {
    display: flex;
    gap: 1.2rem;
    width: 100%;
    padding: 4rem 2.4rem;
    text-align: center;
}
.mid-quot {
	margin-top: 2rem;
    padding: 2rem;
}

.mid-quot:before {
    font-size: 6rem;
    line-height: 6rem;
}
.mid-quot:after {
    font-size: 6rem;
    line-height: 6rem;
}
.skills {
	flex-direction: column;
    align-items: stretch;
    gap: 2.4rem;
    margin-top: 2.4rem;
}
.skill {
    width: 100%;
    border-radius: 1.0rem;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.6rem 3.2rem;
}

section.contact {
    padding: 0 0rem 4rem;
}
.contact-body {
    padding: 2.4rem 1.2rem;
    text-align: center;
}

.contact-table {
    width: 100%;
    margin: 3rem auto 0rem;
}

.notice {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 1.2rem;
}
.notice p {
	line-height:1.2;
}
.notice label {
    white-space: nowrap;
    margin-right: auto;
}

.submit-area {
	display: flex;
	flex-direction: column;
    margin: 2rem auto 0;
    text-align: center;
}

.page-body.sns {
    padding: 0rem;
    text-align: center;
}

.entry-intro{
	padding: 0.8rem;
	line-height: 1.5;
	text-align:left;
}


.about-menu{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.4rem;
    padding: 4rem 2rem;
    background: #F2F4F6;
}

.about-menu-link {
    width: 30rem;
    height: 16rem;
}


.h4t2 {
    border-bottom: 1px solid var(--gray03);
    font-size: 2rem;
    line-height: 2.4rem;
    margin: 2rem 0;
    padding-bottom: 1.2rem;
}

section.message {
    padding: 4rem 0.8rem 4rem;
}

.message h3.catch {
    display: inline-block;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    font-size: 4.2rem;
    margin: 1rem auto 2rem;
    text-align:left;
}

.message h3.catch span {
    font-size:8rem;

}
section.from {
    padding: 6rem 1rem 6rem;
    position: relative;
}

.from .catch-en {
    font-size: 9rem;
    line-height: 9rem;
}
.ceo-photo-wrap {
    position: absolute;
    top: -2rem;
    right: -3rem;
    width: 30.78rem;
    height: 28.8rem;
}
.ceo-photo {
    position: relative;
    width: 30.78rem;
    height: 28.8rem;
    z-index: 100;
}
.ceo-photo-ghost {
    position: absolute;
    width: 24.6rem;
    height: 25.14rem;
    top: 0;
    left: 4rem;
    z-index: 10;
    mix-blend-mode: color-burn;
    opacity: 0.4;
}
.message-text {
    margin-top: 0rem;
    padding: 2rem 0rem;
}
section.future {
    padding: 6rem 1rem 6rem;
}

.future .catch-en {
    font-size: 9rem;
    line-height: 9rem;
    margin-bottom: 2rem;
}

.future-text-text {
    position: relative;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
}

section.eq {
    padding: 3rem 1rem 3rem;
}

.eq-machines {
    padding: 3rem 0 2rem;
    gap: 2rem;
}

.eq-body {
    padding: 0 1.6rem;
    gap: 1rem;
}

.eq-machine {
    flex-direction:column;
    padding-bottom: 4rem;
    gap: 1.6rem;
}

.eq-fig {
    width: 80%;
    max-width: 36.8rem;
    margin: 0 auto;
}

section.service {
    padding: 6rem 0.4rem 3rem;
}
.service-body {
    margin: 3rem auto;
    padding: 2rem 1.6rem;
}
.s-sec-1 {
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-bottom: 4rem;
}

.flex-beta {
    flex-shrink: 0;
    width: 80%;
    margin: 0 auto;
}

.s-sec-2 p {
    font-size: 1.6rem;
}
.sample-models {
    flex-direction: column;
    gap: 2rem;
    margin: 0rem auto;
}

.service-fig-6 {
    width: 90%;
    margin: 0 auto;
    float: none;
}

.spec-wrap {
    position: relative;
    margin: 3rem -1.6rem;
    width: calc(100% + 3.2rem);
    text-align: center;
    overflow-x: scroll;
}

.spce-box {
    flex-direction:column;
    padding: 0.8rem;
    gap: 3rem;
    margin-bottom: 1.2rem;
}

.service-fig-7 {
    margin: 0 auto;
    width: 95%;
}

.service-flow {
    background: #F2F4F6;
    padding: 4rem 2rem;
}

.flows {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}
.flow {
    gap: 0.4rem;
    width: 100%;
}
.flow img{
    width: 60px;
}
.flow-arrow img{
    transform: rotate(90deg);
    width: 16px;
}

.price-boxes {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
    margin-bottom: 2rem;
}
.price-box {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.price-box span {
    font-size: 2rem;
}

.fix-flows {
    flex-direction: column;
    gap: 0.4rem;
}
.fix-flow {
    width: 90%;
    height: 3em;
}

.fix-flow br{
    display: none;
}
.fix-flow-arrow{
    transform: rotate(90deg);
    width: 14px;
}
.service-cta.head-cta{
    display: inline-flex;
    position: absolute;
    top: 66vw;
    right: 4vw;
    width: 16rem;
    padding: 0.8rem 1.2rem;
    font-size: 1.8rem;
    line-height: 1.4;
}




section.saiyou {
    padding: 3rem 1rem 3rem;
}
.saiyou-body {
    padding: 0 0rem 4rem;
}
.saiyou-body .mid{
    max-width: 100%;
}

.saiyou-message {
    text-align: left;
    border-left: 0.5rem solid var(--blue);
    margin: 0rem 0rem 0rem 0rem;
    padding: 0rem 0rem 0 1.6rem;
    max-width: 100%;
}
.saiyou-message h2 {
    font-size: 2.2rem;
    line-height:2.8rem;
}

.saiyou-jobs-wrap {
    max-width: 100%;
    gap: 0.8rem;
    padding: 0 0 2rem;
}
.saiyou-jobs {
    width: 100%;
    gap: 0.8rem;
    padding: 1rem 0rem;
}
.saiyou-jobs-wrap strong {
    font-size: 2rem;
    line-height: 2.4rem;
}

.saiyou-cta-box {
    padding: 0;
    text-align: center;
    max-width: 100%;
}

.saiyou-cta {
    width:100%;
    max-width: 100%;
    padding: 2rem;
}

.saiyou-job-links {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:0.8rem;
    padding: 2rem 0rem 1rem;
    margin-bottom: 1.6rem;
}
.saiyou-job-link{
    width: 100%;
}
.saiyou-box {
    padding: 2rem 0 0;
    max-width: 100%;
}
.job-head {
    max-width:100%;
    height: 144px;
    margin: 0;
}

.job-name {
    line-height: 100%;
    text-align: left;
    margin-top: 1.6rem;
    margin-left: 1.6rem;
    font-size: 2.6rem;
}
.job-name span {
    font-size: 1.4rem;
    font-weight: normal;
}
.job-name-en {
    display: block;
    line-height: 100%;
    text-align: left;
    margin-top: 1rem;
    margin-left: 1.6rem;
    font-size: 1.4rem;
    color: var(--lightblue);
}
.job-catch {
    max-width:100%;
    line-height: 2.2rem;
    text-align: left;
    margin-top: 0.8em;
    margin-left: 1.8rem;
    font-size: 1.8rem;
    color: var(--lightblue);
}
.job-btn {
    width: 100%;
}

.job-body {
    padding: 2rem 1.6rem 0;
    text-align: left;
}

.job-fig-wrap span {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.5rem;
}

.job-about {
    position: relative;
    border: 1px solid var(--lightblue);
    padding: 2rem 1.6rem;
    margin: 6rem auto 3rem;
    color: var(--blue);
}

.job-about:after {
    top: -5rem;
    right: -2rem;
}

.saiyou-body .box {
    padding: 2rem 1.6rem;
    max-width: 100%;
}
.traiings {
    margin-top: 1rem;
}
.traiing {
    width: 100%;
    gap: 2rem;
    padding: 1.6rem;

}
.benefits-box {
    background: url(../images/fig-benefits.png) no-repeat right 2rem bottom 2rem;
    background-size: 24.4rem;
    margin-bottom: 4rem;
}

.benefits {
    flex-direction:column;
    gap: 1.2rem;
    margin: 4rem 1.6rem 4rem;
}

.benefits li{
    width: 100%;
    text-align: left;
}

.interview-items {
    gap: 3rem;
    padding: 3rem 0 6rem;
}

.interview-item {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0rem;
}
.interview-item:nth-child(even) {
   flex-direction: column-reverse;
}

.interview-fig {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    border-radius: 0.5rem;
    flex-shrink: 0;
    margin-bottom: -9.5rem;
    z-index: 100;
}

.interview-fig img {
    width: 12rem;
    border-radius: 1rem;
}

.interview-box {
    padding: 1.2rem 1.2rem;
}
.interview-name {
    font-size: 1.8rem;
}
.interview-group {
    font-size: 1.4rem;
    line-height: 1.8rem;
    padding: 0.4rem 1rem;
}
.interview-desc {
    font-size: 1.5rem;
    line-height: 1.8rem;
}

.interview-body h4 {
    padding-left: 30px;
    background: url(../images/icon-voice.svg) no-repeat left 2px;
    background-size: 22px;
    font-size: 1.8rem;
    line-height: 2.4rem;
}

.media-items{
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    padding: 2.4rem 0rem;
}

.media-name{
    font-size: 1.2rem;
        padding: 0 8px 0 0;
}

.media-link{
    font-size: 1.5rem;
}

.media-name span{
    background: var(--gray02);
    color: var(--white);
    padding: 0 8px;
    margin-right: 8px;
}



}

