*{
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
  font-style: normal;
  font-family: inherit;
  font-size: inherit;
  list-style: none;
  box-sizing: border-box;
  border-collapse: collapse;
  outline: inherit;
}

:root{
  --sky-blue:#a1c7e0;
  --light-blue:#cbe1ef;
  --blue-green:#40b6cb;
  --orange:#ff9933;
  --green:#026e81;
  --deep-blue:#0a2647;
  --blue:#0099dd;
}

html{
  width: 100%;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 10px;
}

body{
  color: #000;
  line-height: 1.8;
  font-family: "M PLUS 1p", sans-serif;
  background: #fff;
}

.flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

a{
  display: block;
}

:hover{
  transition: .4s;
}

img{
  max-width: 100%;
}

h2{
  font-size: 3.6rem;
}

h3{
  font-size: 2.4rem;
}

h3,h4,h5,h6{
  line-height: 1.5;
}

h4{
  font-size: 2.2rem;
}

h5{
  font-size: 2rem;
}

h6{
  font-size: 1.8rem;
}

.anchor{
  display: block;
  padding-top: 120px;
  margin-top: -120px;  
}

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/* ------------------header------------------ */
header{
  background: #fff;
  width: 100%;
  height: 70px;
  padding: 12px 1%;
  font-size: 2rem;
  position: fixed;
  top: 0;
  z-index: 900;
  font-weight: bold;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}

header figure{
  z-index: 10;
  width: 60px;
}

.pc-nav ul{
  width: 1120px;
  z-index: 10;
}

.pc-nav li{
  width: 120px;
  height: 50px;
  background: #fff;
  padding-top: 3px;
  border-radius: 5px;
  text-align: center;
  color: var(--deep-blue);
}

.pc-nav li:last-of-type{
  width: 170px;
}

/* ------------------hero------------------ */
.hero-container{
  width: 100%;
  height: 100vh;
  min-height: -webkit-fill-available;
  position: relative;
  overflow: hidden;
}

.top-slide{
  position: relative;
  width: 100%;
  height: 100%;
}

.top-slide1, .top-slide2, .top-slide3{
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
}

.top-slide1{
  background: url('../img/top-image1.jpeg') center/cover;
  animation: slide-animation-01 24s infinite;
}

.top-slide2{
  background: url('../img/top-image2.jpeg') center/cover;
  animation: slide-animation-02 24s infinite;
}

.top-slide3{
  background: url('../img/top-image3.jpeg') center/cover;
  animation: slide-animation-03 24s infinite;
}

@keyframes slide-animation-01 {
  0% {opacity: 1; transform: scale(1.0);}
  30% {opacity: 1;}
  40% {opacity: 0; transform: scale(1.15);}
  90% {opacity: 0}
  100% {opacity: 1; transform: scale(1.0);}
}

@keyframes slide-animation-02 {
  0% {opacity: 0;}
  30% {opacity: 0; transform: scale(1.1);}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 0; transform: scale(1.0);}
  100% {opacity: 0;}
}

@keyframes slide-animation-03 {
  0% {opacity: 0;}
  60% {opacity: 0;  transform: scale(1.0);}
  70% {opacity: 1;}
  90% {opacity: 1;}
  100% {opacity: 0; transform: scale(1.1);}
}

.msg{
  width: 40%;
  height: 300px;
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 3px 3px 5px #000;
  background: rgba(89, 89, 89, 0.6);
  padding: 5px 25px;
  position: absolute;
  bottom: 5%;
  left: 0;
  display: block;
}

.msg span{
  font-size: 4rem;
  margin-bottom: 15px;
}

.msg-01{
  animation: slide-animation-04 24s infinite;
}

.msg-02{
  animation: slide-animation-05 24s infinite;
}

.msg-03{
  animation: slide-animation-06 24s infinite;
}

@keyframes slide-animation-04 {
  0% {opacity: 1;}
  30% {opacity: 1;}
  40% {opacity: 0;}
  90% {opacity: 0}
  100% {opacity: 1;}
}

@keyframes slide-animation-05 {
  0% {opacity: 0;}
  30% {opacity: 0;}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 0;}
  100% {opacity: 0;}
}

@keyframes slide-animation-06 {
  0% {opacity: 0;}
  60% {opacity: 0;}
  70% {opacity: 1;}
  90% {opacity: 1;}
  100% {opacity: 0;}
}


.tel{
  width: 200px;
  padding: 8px 0 8px;
  background: rgba(64, 182, 203, 0.8);
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 5px;
  color: #fff;
  display: flex;
  position: absolute;
  right: 1%;
  top: 11%;
  box-shadow: 5px 5px 5px rgba(10, 38, 71, 0.2);
  z-index: 999;
}

.tel:hover{
  background: rgba(93, 207, 227, 0.8);
}

.tel img{
  width: 25px;
  margin: 0 12px 0 15px;
}


.hero-text{
  font-size: 4.8rem;
  color: #fff;
  letter-spacing: 0.3em;
  text-shadow: 5px 5px 10px #000;
  position: absolute;
  bottom: 4%;
  left: 2%;
  background: rgba(89, 89, 89, 0.6);
  padding-left: 25px;
}

.top-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  background: url('../img/main-movie3-frame.jpg') center/cover;
  z-index: -1;
}

.blur{
  animation-name:blurAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}

/* ------------------container------------------ */
/* ......service...... */
.service{
  margin-top: 100px;
}

.service h2,.w-flow h2,.news h2,.corporate h2{
  color: var(--deep-blue);
  text-align: center;
}

.service h2+h3,.w-flow h3,.news h3,.corporate h3{
  color: #fff;
  background: var(--orange);
  border-radius: 5px;
  width: 155px;
  margin: 0 auto;
  text-align: center;
}

.service div{
  width: 1000px;
  margin: 50px auto 0;
  justify-content: center;
}

.service ul{
  width: 24%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.border1,.border2,.border3,.border4,.border5,.border6,.border7,.border8,.border9,.border10,.border11{
  border-top: solid 1px #ccc;
  border-right: solid 1px #ccc;
}

.border8,.border9,.border10,.border11{
  border-bottom: solid 1px #ccc;
}

.border1,.border5,.border9{
  border-left: solid 1px #ccc;
}

.highlight:hover {
  box-shadow: 0 0 8px var(--blue);
}

.service ul:last-of-type{
  border: none;
}

.service-icon{
  width: 100%;
}

.service-icon a{
  padding: 50px 0px 10px;
}

.description{
  width: 100%;
  z-index: 100;
}

.description a{
  padding: 15px 0px 35px;
}

.description h3{
  color: var(--blue);
  font-size: 1.8rem;
}

.border9 h3{
  font-size: 1.6rem;
}

.description span{
  display: inline-block;
}

.box {
  position: relative;
}

.box img:last-of-type {
  opacity: 0;
  transition: opacity .7s;
  position: absolute;
  left: 39px;
  bottom: -32px;
}

.box:hover img {
  opacity: 1;
}

/* ......workflow...... */
.w-flow{
  margin-top: 200px;
}

.w-flow-wrapper{
  width: 1400px;
  margin: 50px auto 0;
}

.w-flow-inner1,.w-flow-inner2{
  width: 48%;
  background: #eee;
  border-radius: 10px;
  padding: 20px 0 50px;
}

.w-flow h4{
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.8rem;
}

.w-flow-inner1 h4>span{
  background: linear-gradient(transparent 50%, rgba(107, 196, 212, 0.4) 50%);
}

.w-flow-inner2 h4>span{
  background: linear-gradient(transparent 50%, rgba(149, 249, 116, 0.4) 50%);
}

.w-flow h5{
  border-bottom: #74d1a9 dashed 2px;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.w-flow-t2 h5{
  border-bottom: #ff9933 dashed 2px;
}

.w-flow-t3 h5{
  border-bottom: #74a8e7 dashed 2px;
}

.w-flow-t4 h5{
  border-bottom: #c581f8 dashed 2px;
}

.w-flow-t5 h5{
  border-bottom: #88c972 dashed 2px;
}

.w-flow-t6 h5{
  border-bottom: #f6839c dashed 2px;
}

.w-flow h5>span{
  background: #74d1a9;
  border-radius: 50px;
  padding: 2px 10px;
  margin-right: 10px;
  color: #fff;
}

.w-flow-t2 h5>span{
  background: #ff9933;
}

.w-flow-t3 h5>span{
  background: #74a8e7;
}

.w-flow-t4 h5>span{
  background: #c581f8;
}

.w-flow-t5 h5>span{
  background: #88c972;
}

.w-flow-t6 h5>span{
  background: #f6839c;
}

.w-flow p{
  font-size: 1.6rem;
  margin-left: 15px;
}

.paper-media,.digi-media{
  background: #fff;
  border-radius: 10px;
  margin: 0px 20px 5px;
  padding: 20px 10px;
}

.w-flow-text{
  width: 78%;
}

.w-flow-img{
  width: 20%;
  display:flex ;
  justify-content: center;
  align-items: center;
}

.w-flow-img img{
  height: 80px;
}

.down-arrow img{
  width: 30px;
  height: 30px;
}

/* ......news...... */
.news,.corporate{
  margin-top: 200px;
}

.news_wrapper{
  margin: 0 auto;
  width: 1000px;
}

.news h3{
  margin: 0 auto 50px;
}

.news_inner{
  height: 420px;
  border: 1px solid #ccc;
  padding: 10px 20px;
  overflow-y: auto;
}

.news dl{
  border-bottom: 1px solid var(--deep-blue);
  margin-bottom: 10px;
}

.news dt{
  font-size: 1.6rem;
}

.news dd{
  font-size: 1.8rem;
  padding-bottom: 8px;
}

.news dd>span{
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 5px 8px;
  margin-right: 10px;
  border-radius: 5px;
  background: var(--deep-blue);
}

/* ......message...... */
.message{
  margin-top: 50px;
  padding: 185px 0;
  position: relative;
}

.m_title_wrapper{
  width: 1250px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.message_title{
  background: rgba(255, 153, 51, 0.8);
  width: 288px;
  height: 288px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.message h2{
  color: #fff;
  width: 100%;
  padding-top: 95px;
}

.message h3{
  color: #fff;
  padding-bottom: 85px;
}

.message_text{
  margin: 0 auto;
  padding: 100px;
  width: 1000px;
  background: #fff4e8;
  border-radius: 30px;
}

.message p{
  font-size: 2.2rem;
  color: var(--deep-blue);
  padding: 50px 0 0;
  text-align: justify;
}

.message p:first-child{
  padding-top: 0;
}

.m_img_wrapper{
  width: 1200px;
  height: 300px;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  text-align: right;
  z-index: 100;
}

.message img{
  width: 300px;
}

/* ......access...... */
.access_inner{
  margin: 0 auto;
  padding: 60px 0 90px;
  text-align: center;
  background: var(--deep-blue);
  width: 1000px;
  border-radius: 30px;
}

.access h2{
  color: #fff;
}

.access h3{
  color: #fff;
  background: var(--blue);
  border-radius: 5px;
  width: 140px;
  margin: 0 auto 40px;
}

.access_text{
  text-align: justify;
  font-size: 1.8rem;
  color: #fff;
  width: 800px;
  margin: 40px auto 0;
}

/* ......company...... */
.company{
  margin-top: 150px;
  position: relative;
}

.company h2{
  color: var(--deep-blue);
  text-align: center;
}

.company h3{
  text-align: center;
  color: #fff;
  background: var(--blue-green);
  border-radius: 5px;
  width: 140px;
  margin: 0 auto 50px;
}

.company_inner1,.company_inner2{
  background: #fff;
  border-radius: 20px;
  width: 1000px;
  margin: 0 auto 50px;
  padding: 50px 70px 50px 80px;
  box-shadow: 0 0 8px #ccc;
}

.company_inner2{
  padding: 50px 80px;
}

.c-table{
  font-size: 1.6rem;
}

.c-table>tbody>tr>th{
  font-weight: normal;
  text-align: left;
  width: 12%;
  padding: 0 0 15px 0;
  vertical-align: top;
  line-height: 1.5;
}

.c-table>tbody>tr>td{
  padding: 0 10px 10px 0;
  vertical-align: top;
  line-height: 1.5;
}

.c-table>tbody>tr>td>span,dl.equipment span{
  display: inline-block;
}

.business{
  width: 17%;
}

.company_inner2 p{
  text-align: right;
  font-size: 1.2rem;
}

dl.equipment{
	width:100%;
  font-size: 1.6rem;
  margin-bottom: 15px;
	}

dl.equipment div{
	position: relative;
	display: flex;
	justify-content: space-between;
	}

dl.equipment div::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	z-index: 1;
	width: 100%;
	border-bottom: dashed 1px #777;
	}

dl.equipment div.application::after{
    border: none;
  }

dl.equipment dt{
	margin:0;
	padding: 0 5px 0 12%;
	background-color: #ffffff;
	z-index: 2;
	text-align: left;
	}

dl.equipment dd{
	margin:0;
	padding: 0 12% 0 0;
	background-color: #ffffff;
	z-index: 2;
	text-align: right;
  width: 17%;
	}

.c_img_wrapper{
  width: 1200px;
  height: 300px;
  position: absolute;
  bottom: -9%;
  left: 50%;
  transform: translateX(-50%);
  text-align: right;
  z-index: 100;
}

.company img{
  width: 250px;
}

/* ......contact...... */
.contact{
  margin-top: 180px;
  padding: 185px 0;
  position: relative;
}

.c_title_wrapper{
  width: 1250px;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.contact_title{
  background: rgba(0, 170, 189, 0.8);
  width: 288px;
  height: 288px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.contact h2{
  color: #fff;
  width: 100%;
  padding-top: 95px;
}

.contact h3{
  color: #fff;
  padding-bottom: 85px;
}

.contact_form{
  border: 8px rgba(0, 170, 189, 0.5) solid;
  border-radius: 30px;
  width: 1000px;
  margin: 0 auto;
  padding: 80px;
  color: #fff;
}

.contact_form ul{
  width: 600px;
  margin: 0 auto;
}

.contact_form li{
  background: rgba(0, 170, 189, 0.7);
  border-radius: 20px;
  position: relative;
}

.contact_form li:hover{
  background: rgba(48, 207, 225, 0.7);
}

.contact_form li:first-of-type{
  width: 100%;
  font-size: 3.6rem;
  line-height: 3;
  text-align: center;
}

.contact_form li:not(:first-of-type){
  width: 48%;
  font-size: 2.4rem;
  line-height: 3;
  margin-top: 30px;
  padding-left: 90px;
}

.contact_form a span{
  font-size: 1.8rem;
  color: var(--green);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  position: absolute;
  top: 12%;
  left: 5%;
  text-align: center;
}

/* ......works...... */
.works{
  margin-top: 100px;
}

.works ul{
  width: 1000px;
  margin: 0 auto;
  justify-content: flex-start;
}

.works li{
  width: 23%;
  margin: 0 1% 20px;
}

/* 👻 一旦廃止 2025-04-22 */
/* .works li:last-of-type{
  width: 32.2%;
} */

.works img{
  box-shadow: 7px 7px 7px #ccc;
}

.works img:hover{
  box-shadow: none;
  transform: translate(3px, 3px);
}

/* ......TOPに戻るボタン...... */
.button{
  position: fixed;
  right: 1%;
  bottom: 1%;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background: rgba(204, 204, 204, 0.8);
  border-radius: 50px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: .3s;
  display: flex;
  justify-content: center;
  align-items: center;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

.button img{
  width: 30px; 
}

.button:hover{
  background: #bbb;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}

/* ......footer...... */
footer{
  margin-top: 200px;
  background: #dff3ff;
  color: var(--deep-blue);
}

.footer_inner{
  width: 1200px;
  padding: 60px 0;
  margin: 0 auto;
}

.footer_nav_inner1{
  width: 20%;
}

.footer_nav_inner2{
  width: 70%;
  font-weight: bold;
}

.footer-logo{
  width: 75px;
  margin: 0 auto;
}

.company_name{
  font-size: 2.4rem;
  text-align: center;
}

.sns_logo{
  justify-content: center;
  align-items: center;
}

.x-logo{
  width: 20%;
  margin: 0 20px;
}

.y-logo{
  width: 40%;
  margin: 0 20px;
}

.footer_privacy{
  font-size: 1.6rem;
  text-align: center;
  padding: 30px 0 50px;
}

.footer_nav{
  font-size: 2rem;
}

footer li{
  padding: 0 0 30px;
}

.footer_service li:first-of-type,
.footer_contact li:first-of-type{
  padding-bottom: 10px;
}

.footer_service li:not(:first-of-type),
.footer_contact li:not(:first-of-type){
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--deep-blue);
  padding-bottom: 10px;
  font-weight: normal;
}

.footer_contact li:not(:first-of-type){
  padding-bottom: 30px;
}

.footer_copylight{
  width: 100%;
  background: var(--deep-blue);
  color: #fff;
  font-size: 1.4rem;
  padding: 10px 0;
  text-align: center;
}

.sp{
  display: none;
}

/* ------------------content------------------ */
.content{
  color: var(--deep-blue);
  width: 1200px;
  margin: 200px auto 0;
}

.border{
  border: 5px var(--light-blue) solid;
  border-radius: 20px;
  margin: 50px 0;
  padding: 50px;
}

.content h2{
  margin-top: 100px;
  text-align: center;
  font-family: "M PLUS 1p";
}

.content h2+p{
  margin-bottom: 50px;
  text-align: center;
}

.content h3{
  background: var(--light-blue);
  padding: 20px;
  border-radius: 10px;
}

.content h4{
  border-bottom: var(--sky-blue) 3px solid;
  padding: 5px;
}

.content h3,.content h4{
  margin: 20px 0;
  display: inline-block;
}

.content h5{
  background: rgba(161, 199, 224, 0.3);
  padding: 5px;
  border-radius: 5px;
}

.content h6{
  border-bottom: var(--orange) 2px solid;
}

.content h5,.content h6{
  margin: 10px 0;
  display: inline-block;
}

.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
  padding-top: 60px;
}

.content p{
  font-size: 1.8rem;
  line-height: 1.5;
}

.p-top{
  padding-top: 30px;
}

.p-bottom{
  padding-bottom: 30px;
}

.m-top{
  margin-top: 50px;
}

.m-bottom{
  margin-bottom: 50px;
}

.service-list{
  margin-top: 200px;
}

.btn_service{
  color: #fff;
  font-size: 2.2rem;
  background: var(--green);
  width: 200px;
  height: 60px;
  border-radius: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.btn_service:hover{
  background: #1da3bb;
}

/* ------------------security.html------------------ */
.security-logo{
  width: 18%;
  margin: 50px auto;
}

.security-inner2,.privacy-inner4{
  margin-top: 100px;
  text-align: center;
}

/* ------------------privacy-policy.html------------------ */
.privacy h2+p{
  text-align: justify;
}

.privacy span{
  font-weight: bold;
  font-size: 2rem;
}

.p-table>tbody>tr,.p-table>tbody>tr>td,.p-table>tbody>tr>th{
	border: 1px solid #595959;
	border-collapse: collapse;
}

.p-table{
  margin: 10px 0 30px;
}

.p-table>tbody>tr>th,.p-table>tbody>tr>td{
  padding: 10px;
  font-size: 1.6rem;
}

.p-table>tbody>tr>th{
	width: 10%;
  text-align: justify;
  font-weight: normal;
}

.p-table>tbody>tr>td{
	width: 20%;
}

.privacy a,.site-inner a,.company_inner1 a,.recruit a{
  color: var(--blue);
  font-weight: bold;
}

.picc,.site-inner a,.recruit a{
  display: inline;
}

.privacy-logo{
  width: 15%;
  margin: 50px auto;
}

/* ------------------recruit.html------------------ */
.rec-inner2 video{
  display: block;
  width: 100%;
  margin: 20px auto;
}

.recruit .p-table>tbody>tr>th{
	width: 6%;
}

.recruit img{
  width: 100%;
  border-radius: 20px;
}

/* ------------------contact.html------------------ */
div.c-form{
  text-align: center;
}

.form-select{
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.form-select label{
  display: block;
  width: 32%;
  background: var(--light-blue);
  color: var(--deep-blue);
  padding: 16px 0;
  margin-bottom: 20px;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
}

.form-select input:checked+label{
  background: var(--green);
  color: #FFF;
}

.form-select input{
  display: none;
}

.form-table {
  width: 100%;
  margin-bottom: 20px;
}

.form-item,
.form-body {
  padding: 20px;
  border: 1px solid #ccc;
}

.form-item {
  text-align: left; /* テキスト左寄せ */
  width: 30%; /* 横幅30%指定（グレーの背景色部分） */
  background-color: #eee; /* グレーの背景色 */
  font-size: 1.8rem;
  font-weight: normal;
}

.form-body {
  width: 60%; /* 横幅70%指定（白背景色部分） */
}

.form-text {
  font-size: 1.6rem;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 400px;
}

.essential::after {
  content: " ※";
  color: red;
}

.selectdiv {
  position: relative;
  float: left;
  min-width: 200px;
}

select::-ms-expand {
  display: none;
}

.selectdiv:after {
  content: '<>';
  font: 17px "Consolas", monospace;
  color: #333;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 11px;
  top: 18px;
  padding: 0 0 2px;
  border-bottom: 1px solid #999;  
  position: absolute;
  pointer-events: none;
}

.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 320px;
  height: 50px;
  float: right;
  margin: 5px 0px;
  padding: 0px 24px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}

.form-textarea {
  font-size: 1.6rem;
  width: 100%;
  padding: 10px;
  height: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.agreement{
  font-size: 1.6rem;
  justify-content: center;
  margin: 30px 0;
}

.agreement a{
  font-weight: bold;
}

.agreement span{
  color: red;
}

/* 送信ボタン、戻るボタン */
.form-submit,.btn-back {
  width: 250px; 
  background: var(--deep-blue); 
  color: #fff; 
  /* display: block;  */
  margin: 0 auto; 
  font-size: 2rem; 
  font-weight: bold;
  padding: 15px; 
  border-radius: 100vh; 
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* 送信ボタン［活性］ */
.valid{
  display: block;
}

/* 送信ボタン、戻るボタンのホバー */
.valid:hover,.btn-back:hover{
  background: #1f5ea6;
}

/* 送信ボタン［非活性］ */
.invalid{
  background: #ccc; 
  display: none;
}

.form-error{
  color: #ccc;
  font-style: italic;
  background-color: lightyellow;
}

.submit_tel{
  color: var(--blue);
  font-weight: bold;
}

.btn-back{
  margin: 100px auto 0;
}

/* ------------------dtp.html------------------ */
.dtp ul,.illustration ul{
  margin-top: 50px;
}

.dtp-inner1 video,.ats-inner1 video{
  display: block;
  width: 90%;
  margin: 20px auto;
}

.dtp-inner1 li{
  width: 48%;
  margin-top: 100px;
}

.dtp-inner1 h4{
  margin-top: 50px;
}

.dtp-inner1 p,.dtp-inner3 p,.ats-inner1 p,.solution p,.movie-inner2 p,.script h5,.animation p,.narration p,.ict p,.web p,.web-h5,.security h2+p{
  text-align: left;
}

.dtp-img1 img{
  width: 1000px;
  border-radius: 20px;
  margin-top: 20px;
}

.dtp-bg-img{
  background: url(../service/img/DTP_Introduction-2.png) center/cover;
  width: 700px;
  height: 251px;
  margin: 0 auto;
  padding: 1% 12% 1% 1%;
}

.dtp-bg-img p{
  background: rgba(255, 255, 255, 0.7);
  padding: 2%;
  text-align: justify;
}

.dtp-bg-img,.dtp-bg-img p,.dtp-img2 img,.dtp-img3 img{
  border-radius: 10px;
}

.dtp-inner2 li{
  width: 30%;
  margin-bottom: 20px;
}

.dtp-inner3 video{
  width: 90%;
  margin-top: 40px;
}

.slide-items {
  width: 100%;
  height: 100%;
}

.carousel{
  margin: 5px;
  border-radius: 20px;
  border: #aaa solid 1px;
}

.slide-items img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.slick-prev:before,
.slick-next:before {
  color: var(--deep-blue);
}

.slick-dots li button:before {
  font-size: 14px;
  top: 10px;
}

/* ------------------auto-typesetting.html------------------ */
.btn-link{
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  background: var(--blue-green);
  width: 220px;
  height: 50px;
  border-radius: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-link:hover{
  background: #5dcfe3;
}

/* ------------------solution.html------------------ */
.solution img,.script img,.creative img{
  border-radius: 20px;
}

.solution li:first-of-type{
  width: 70%;
}

.solution li:last-of-type{
  width: 28%;
}

.toolbox img{
  width: 300px;
}

.feature p{
  text-align: center;
}

.btn-download{
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  background: var(--deep-blue);
  width: 400px;
  height: 50px;
  border-radius: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-download:hover{
  background: #1f5ea6;
}

/* ------------------script.html------------------ */
.script h5{
  margin: 0 auto 30px;
}

/* ------------------animation.html------------------ */
.animation iframe{
  width: 100%;
  height: 400px;
  margin-bottom: 50px;
}

.flow li{
  padding: 20px 0;
}

.flow li:nth-of-type(odd){
  width: 17%;
}

.flow li:nth-of-type(even){
  width: 80%;
  text-align: justify;
}

.merit,.w-custom{
  text-align: justify;
}

/* ------------------movie.html------------------ */
/* .movie-inner1 img{
  width: 90%;
  border-radius: 10px;
} */
.movie-inner1 video{
  display: block;
  width: 90%;
  margin: 20px auto 40px;
}

.movie-inner2 img{
  width: 200px;
}

.m-concept li:nth-of-type(odd),.m-service li:nth-of-type(even){
  width: 28%;
}

.m-concept li:nth-of-type(even),.m-service li:nth-of-type(odd){
  width: 70%;
}

/* ------------------word.html------------------ */
.word-inner1 li{
  width: 24%;
}

.word-inner3 li:first-of-type{
  width: 18%;
}

.word-inner3 li:last-of-type{
  width: 80%; 
  text-align: justify;
}

/* ------------------ict.html------------------ */
.ict-link a{
  display: inline;
  color: var(--blue);
  font-weight: bold;
}

.ict-inner2 ul{
  padding: 0 50px;
}

.ict-inner3 ul{
  padding: 0 30px;
}

.ict-inner2 li,.ict-inner3 li{
  width: 48%;
}

/* ------------------pod.html------------------ */
.pod-inner1 ul{
  padding-left: 20px;
  padding-right: 20px;
}

.pod-inner1 li,.pod-inner2 p{
  text-align: justify;
}

.pod-system li:first-of-type{
  width: 55%;
}

.pod-system li:last-of-type{
  width: 40%;
}

.pod-print li:first-of-type{
  width: 28%;
  text-align: center;
}

.pod-print li:last-of-type{
  width: 68%;
}





@media screen and (max-width: 1536px) {

/* ------------------header------------------ */
header{
  font-size: 1.8rem;
  height: 60px;
}

header figure{
  width: 50px;
}

.pc-nav ul{
  width: 900px;
}

.pc-nav li{
  width: 110px;
  height: 40px;
}

.pc-nav li:last-of-type{
  width: 160px;
}

/* ------------------hero------------------ */
.msg{
  width: 47%;
}

/* ------------------container------------------ */
/* ......workflow...... */
  .w-flow-wrapper{
    width: 1200px;
  }

}

@media screen and (max-width: 1280px) {

h2{
  font-size: 3rem;
}

h3{
  font-size: 2rem;
}

h4{
  font-size: 2rem;
}

h5{
  font-size: 1.8rem;
}

h6{
  font-size: 1.6rem;
}

.anchor{
  padding-top: 110px;
  margin-top: -110px;  
}

.service h2+h3,.w-flow h3,.news h3,.corporate h3,.access h3,.company h3{
  width: 125px;
}

/* ------------------header------------------ */
header{
  height: 50px;
  font-size: 1.5rem;
  padding: 8px 1%;
}

header figure{
  width: 45px;
}

.pc-nav ul{
  width: 750px;
}

.pc-nav li{
  width: 95px;
  height: 35px;
}

.pc-nav li:last-of-type{
  width: 130px;
}

/* ------------------hero------------------ */
.tel{
  width: 180px;
  font-size: 1.7rem;
}

.tel img{
  width: 20px;
  margin: 0 10px 0 14px;
}

.msg{
  width: 57%;
  height: 280px;
  font-size: 2.5rem;
}

.msg span{
  font-size: 3.5rem;
}

.hero-text{
  font-size: 4rem;
  letter-spacing: 0.1em;
  padding-left: 15px;
}

/* ------------------container------------------ */
/* ......service...... */
.service div{
  width: 940px;
  margin: 40px auto 0;
}

.service ul{
  width: 24%;
}

.service-icon a{
  padding: 40px 0px 10px;
}

.description a{
  padding: 15px 0px 35px;
}

.box img:last-of-type {
  left: 32px;
}

.btn_service{
  font-size: 2rem;
  width: 180px;
  height: 50px;
}

/* ......workflow...... */
.w-flow{
  margin-top: 150px;
}

.w-flow-wrapper{
  width: 920px;
}

.w-flow p{
  margin-left: 5px;
}

/* ......news...... */
.news,.corporate{
  margin-top: 150px;
}

.news_wrapper{
  width: 800px;
}

/* ......message...... */
.message{
  margin-top: 40px;
  padding: 165px 0;
}

.m_title_wrapper{
  width: 940px;
}

.message_title{
  width: 228px;
  height: 228px;
}

.message h2{
  padding-top: 75px;
}

.m_img_wrapper{
  width: 950px;
  bottom: -2.5%;
}

.message img{
  width: 260px;
}

.message_text{
  padding: 70px;
  width: 820px;
}

.message p{
  font-size: 2rem;
}

/* ......access...... */
.access_inner{
  width: 820px;
}

.access_text{
  width: 600px;
}

.access iframe{
  width: 80%;
}

/* ......company...... */
.company{
  margin-top: 100px;
}

.company_inner1,.company_inner2{
  padding: 30px 20px 30px 30px;
  width: 820px;
}

.company_inner2{
  padding: 30px;
}

.c_img_wrapper{
  width: 950px;
  bottom: -10%;
}

.company img{
  width: 220px;
}

/* ......contact...... */
.contact{
  margin-top: 150px;
  padding: 155px 0;
}

.c_title_wrapper{
  width: 940px;
}

.contact_title{
  width: 228px;
  height: 228px;
}

.contact h2{
  padding-top: 75px;
}

.contact_form{
  width: 820px;
}

.contact_form ul{
  width: 500px;
}

.contact_form li:first-of-type{
  font-size: 3rem;
}

.contact_form li:not(:first-of-type){
  font-size: 2rem;
  line-height: 3;
  margin-top: 20px;
  padding-left: 80px;
}

.contact_form a span{
  font-size: 1.6rem;
  width: 45px;
  height: 45px;
  top: 12%;
}

/* ......works...... */
.works{
  margin-top: 80px;
}

.works ul{
  width: 820px;
}

/* ......footer...... */
footer{
  margin-top: 120px;
}

.footer_inner{
  width: 95%;
  padding: 40px 0;
}

.footer-logo{
  width: 65px;
}
.company_name{
  font-size: 2rem;
}

.footer_nav{
  font-size: 1.8rem;
}

.footer_service li:not(:first-of-type),
.footer_contact li:not(:first-of-type){
  font-size: 1.4rem;
}

.footer_privacy{
  font-size: 1.4rem;
}

.footer_copylight{
  font-size: 1.2rem;
  padding: 5px 0;
}

/* ------------------content------------------ */
.content{
  width: 900px;
}

.border{
  padding: 30px;
}

.content p{
  font-size: 1.6rem;
}

.privacy span{
  font-size: 1.8rem;
}

.p-table>tbody>tr>th,.p-table>tbody>tr>td{
  font-size: 1.4rem;
}

/* ------------------contact.html------------------ */
.form-select{
  font-size: 1.6rem;
}

.form-item {
  font-size: 1.6rem;
}

.form-submit,.btn-back {
  font-size: 1.8rem;
}

/* ------------------dtp.html------------------ */
.dtp-inner1 video,.dtp-inner3 video,.ats-inner1 video{
  width: 100%;
}

.dtp-inner1 li{
  margin-top: 50px;
}

/* ------------------movie.html------------------ */
.movie-inner1 video{
  width: 100%;
  margin: 20px auto 30px;
}

}

@media screen and (max-width: 960px) {

h2{
  font-size: 2.5rem;
}

h3{
  font-size: 1.8rem;
}

h4{
  font-size: 1.8rem;
}

h5{
  font-size: 1.7rem;
}

.anchor{
  padding-top: 100px;
  margin-top: -100px;  
}

.service h2+h3,.w-flow h3,.news h3,.corporate h3,.access h3,.company h3{
  width: 115px;
}

/* ------------------header------------------ */
header{
  height: 45px;
  font-size: 1.4rem;
  padding: 6px 1%;
}

header figure{
  width: 40px;
}

.pc-nav ul{
  width: 650px;
}

.pc-nav li{
  width: 85px;
  height: 30px;
}

.pc-nav li:last-of-type{
  width: 120px;
}

/* ------------------hero------------------ */
.tel{
  width: 150px;
  font-size: 1.5rem;
  top: 15%;
}

.tel img{
  width: 18px;
  margin: 0 5px 0 10px;
}

.msg{
  width: 60%;
  height: 250px;
  font-size: 2rem;
}

.msg span{
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text{
  font-size: 3rem;
}

/* ------------------container------------------ */
/* ......service...... */
.service{
  margin-top: 80px;
}

.service div{
  width: 680px;
  margin: 30px auto 0;
}

.service ul{
  width: 33%;
}

.border8{
  border-bottom: none;
}

.border5,.border9{
  border-left: none;
}

.border4,.border7,.border10{
  border-left: solid 1px #ccc;
}

.box img:last-of-type {
  left: 31px;
}

.btn_service{
  font-size: 1.8rem;
  width: 160px;
}

/* ......workflow...... */
.w-flow{
  margin-top: 100px;
}

.w-flow-wrapper{
  width: 680px;
  margin: 30px auto 0;
}

.w-flow-inner1,.w-flow-inner2{
  width: 100%;
  margin: 0 auto 30px;
}

.w-flow h4{
  font-size: 2.4rem;
}

/* ......news...... */
.news,.corporate{
  margin-top: 100px;
}

.news_wrapper{
  width: 680px;
}

.news_inner{
  height: 410px;
  padding: 10px;
}

.news dd{
  padding-bottom: 6px;
}

/* ......message...... */
.message{
  padding: 145px 0 120px;
}

.m_title_wrapper{
  width: 750px;
}

.message_title{
  width: 208px;
  height: 208px;
}

.message h2{
  padding-top: 70px;
}

.m_img_wrapper{
  width: 750px;
  bottom: -9%;
}

.message img{
  width: 200px;
}

.message_text{
  padding: 60px 40px;
  width: 680px;
}

.message p{
  font-size: 1.8rem;
  padding: 30px 0 0;
}

/* ......access...... */
.access_inner{
  padding: 30px 0 50px;
  width: 680px;
}

.access h3{
  margin: 0 auto 30px;
}

.access_text{
  font-size: 1.6rem;
  width: 580px;
  margin: 20px auto 0;
}

.access iframe{
  width: 85%;
}

/* ......company...... */
.company{
  margin-top: 80px;
}

.company h3{
  margin: 0 auto 30px;
}

.company_inner1,.company_inner2{
  width: 680px;
  margin: 0 auto 30px;
  padding: 20px 10px 20px 20px;
}

.company_inner2{
  padding: 20px;
}

.c-table{
  font-size: 1.5rem;
}

.c-table>tbody>tr>th{
  width: 14%;
}

dl.equipment{
  font-size: 1.5rem;
}

dl.equipment dt{
	padding: 0 5px 0 14%;
}

dl.equipment dd{
  padding: 0 14% 0 0;
  width: 20%;
}

.c_img_wrapper{
  width: 750px;
  bottom: -12%;
}

.company img{
  width: 180px;
}

/* ......contact...... */
.contact{
  margin-top: 120px;
  padding: 120px 0;
}

.c_title_wrapper{
  width: 750px;
}

.contact_title{
  width: 208px;
  height: 208px;
}

.contact h2{
  padding-top: 70px;
}

.contact_form{
  width: 680px;
}

.contact_form ul{
  width: 450px;
}

.contact_form li:first-of-type{
  font-size: 2.8rem;
}

.contact_form li:not(:first-of-type){
  font-size: 1.8rem;
  padding-left: 70px;
}

.contact_form a span{
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  top: 14%;
  left: 6%;
}

/* ......works...... */
.works{
  margin-top: 60px;
}

.works ul{
  width: 680px;
}

.works li{
  width: 30%;
  margin: 0 1.6% 15px;
}

.works li:last-of-type{
  width: 42%;
}

/* ......footer...... */
footer{
  margin-top: 90px;
}

.footer_inner{
  padding: 20px 0;
}

.footer_nav_inner2{
  font-weight: bold;
}

.footer-logo{
  width: 60px;
}

.company_name{
  font-size: 1.8rem;
}

.footer_nav{
  font-size: 1.6rem;
}

.footer_service li:first-of-type,
.footer_contact li:first-of-type{
  padding-bottom: 10px;
}

.footer_service li:not(:first-of-type),
.footer_contact li:not(:first-of-type){
  font-size: 1.3rem;
  padding-bottom: 5px;
}

.footer_contact li:not(:first-of-type){
  padding-bottom: 30px;
}

.footer_privacy{
  font-size: 1.2rem;
  padding: 15px 0 25px;
}

/* ------------------content------------------ */
.content{
  width: 97%;
}

.service-list{
  margin-top: 200px;
}

/* ------------------contact.html------------------ */
.form-select label{
  width: 48%;
  padding: 10px 0;
}

/* ------------------dtp.html------------------ */
.dtp ul,.illustration ul{
  margin-top: 30px;
}

.dtp-bg-img{
  width: 90%;
}

/* ------------------auto-typesetting.html------------------ */
.btn-link{
  font-size: 1.8rem;
  width: 200px;
  height: 45px;
}

/* ------------------easy-tool-box.html------------------ */
.btn-download{
  font-size: 1.8rem;
  width: 360px;
  height: 45px;
}

/* ------------------script.html------------------ */
.script p{
  text-align: justify;
}

  }

@media screen and (max-width: 768px) {

.pc{
  display: none;
}

.sp{
  display: block;
}

body{
    .is-menuOpen & {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
}

h2{
  font-size: 2rem;
}

h3{
  font-size: 1.6rem;
}

h4{
  font-size: 1.6rem;
}

h5{
  font-size: 1.6rem;
}

.anchor{
  padding-top: 95px;
  margin-top: -95px;  
}

.service h2+h3,.w-flow h3,.news h3,.corporate h3,.access h3,.company h3{
  width: 100px;
}

/* ------------------header------------------ */
#hamburger{
  position: relative;
  width: 40px;
  height: 30px;
  margin: 0 0 0 auto;
  z-index: 100;
}

#hamburger span{
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--deep-blue);
  transform: translateY(-50%);
}

#hamburger::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--deep-blue);
}

#hamburger::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 4px;
  background-color: var(--deep-blue);
}

.sp-nav {
  font-size: 1.6rem;
  color: var(--deep-blue);
  z-index: 200;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: #fff;
  transition: all .2s ease-in-out;
  opacity: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 100%;
  overflow: scroll;
}

.sp-nav ul {
  margin-top: 40px;
}

.sp-nav li {
  width: 100%;
  text-align: center;
}

.sp-nav li a {
  padding: 10px 0;
}

/*基準となるli要素*/
.sp-nav .close {
  position: absolute;
  top: .5%;
  right: 1.5%;
  width: 40px;
  height: 40px;
}
/*バツ印線1*/
.sp-nav .close::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--deep-blue);
  transform: rotate( 45deg );
}
/*バツ印線2*/
.sp-nav .close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--deep-blue);
  transform: rotate( -45deg );
}

.menu-tel{
  position: static;
  margin: 20px auto;
  font-size: 1.7rem;
  justify-content: center;
  box-shadow: none;
  width: 180px;
}

.menu-tel img{
  width: 20px;
  margin: 0 10px 0 0;
}

.toggle {
  transform: translateY( 0 );
  opacity: 1;
}

/* ------------------hero------------------ */
.msg{
  width: 90%;
  height: 230px;
}

/* ------------------container------------------ */
/* ......service...... */
.service div{
  width: 480px;
}

.service-icon a{
  padding: 20px 0px 10px;
}

.service-icon img{
  width: 50px;
}

.description a{
  padding: 0;
}

.description h3{
  font-size: 1.4rem;
  padding-bottom: 15px;
}

.border9 h3,.border4 h3,.border6 h3{
  font-size: 1.2rem;
}

.btn_service{
  font-size: 1.6rem;
  width: 140px;
  height: 40px;
}

/* ......workflow...... */
.w-flow{
  margin-top: 80px;
}

.w-flow-wrapper{
  width: 90%;
}

.w-flow h4{
  font-size: 2rem;
}

.w-flow p{
  line-height: 1.5;
}

/* ......news...... */
.news,.corporate{
  margin-top: 80px;
}

.news_wrapper{
  width: 90%;
}

.news_inner{
  height: 355px;
  padding: 5px 10px;
}

.news h3{
  margin: 0 auto 20px;
}

.news dt{
  font-size: 1.4rem;
}

.news dd{
  font-size: 1.6rem;
  padding-bottom: 4px;
}

.news dd>span{
  font-size: 1.2rem;
  padding: 2.5px 4px;
}

/* ......message...... */
.message{
  padding: 105px 0 80px;
}

.m_title_wrapper{
  width: 97%;
}

.message_title{
  width: 158px;
  height: 158px;
}

.message h2{
  padding-top: 50px;
}

.m_img_wrapper{
  display: none;
}

.message_text{
  padding: 50px 30px;
  width: 90%;
}

.message p{
  font-size: 1.6rem;
  padding: 10px 0 0;
}

/* ......access...... */
.access_inner{
  padding: 20px 0 40px;
  width: 90%;
}

.access h3{
  margin: 0 auto 20px;
}

.access_text{
  font-size: 1.4rem;
  width: 85%;
  padding: 5px 15px;
}

.access iframe{
  height: 85%;
  height: 500px;
}

/* ......company...... */
.company h3{
  margin: 0 auto 20px;
}

.company_inner1,.company_inner2{
  width: 90%;
  margin: 0 auto 20px;
}

.c-table{
  font-size: 1.4rem;
}

.c-table>tbody>tr>th{
  padding: 0 10px 15px 0;
}

dl.equipment{
  font-size: 1.4rem;
}

dl.equipment div::after{
	border-bottom: none;
}

dl.equipment dt{
  width: 78%;
}

dl.equipment dd{
  width: 22%;
}

.c_img_wrapper{
  display: none;
}

/* ......contact...... */
.contact{
  margin-top: 80px;
}

.c_title_wrapper{
  width: 97%;
  top: -2%;
}

.contact_title{
  width: 158px;
  height: 158px;
}

.contact h2{
  padding-top: 50px;
}

.contact_form{
  width: 90%;
  padding: 40px 0;
}

.contact_form ul{
  width: 270px;
}

.contact_form li:first-of-type{
  font-size: 2rem;
}

.contact_form li:not(:first-of-type){
  font-size: 1.6rem;
  padding-left: 55px;
  width: 70%;
  height: 50px;
  margin: 15px auto 0;
}

.contact_form a span{
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
  top: 15%;
}

/* ......works...... */
.works{
  margin-top: 50px;
}

.works ul{
  width: 90%;
}

/* ......TOPに戻るボタン...... */
.button{
  width: 50px;
  height: 50px;
}

.button img{
  width: 25px; 
}

/* ......footer...... */
.footer_nav_inner1{
  width: 100%;
  text-align: center;
}

.footer_nav_inner2{
  width: 95%;
  padding-top: 10px;
}

.footer_nav{
  justify-content: center;
}

footer li{
  padding: 0 10px 20px;
}

.footer_service{
  padding-bottom: 20px;
}

.x-logo img{
  width: 70px;
}

.y-logo img{
  width: 70px;
}

.footer_privacy{
  display: flex;
  justify-content: space-around;
  padding: 10px 0 20px;
}

.footer_contact li:not(:first-of-type){
  padding-bottom: 20px;
}

/* ------------------content------------------ */
.content{
  margin: 100px auto 0;
}

.border{
  padding: 10px;
}

.content h3{
  padding: 10px;
}

.service-list{
  margin-top: 100px;
}

/* ------------------security.html------------------ */
.security-logo{
  width: 28%;
  margin: 30px auto;
}

/* ------------------privacy-policy.html------------------ */
.privacy-logo{
  width: 20%;
  margin: 30px auto;
}

/* ------------------contact.html------------------ */
.form-select{
  font-size: 1.4rem;
}

.form-item,
.form-body {
  padding: 10px;
}

.form-item {
  font-size: 1.4rem;
}

.form-text {
  font-size: 1.4rem;
  padding: 5px;
}

.selectdiv select {
  font-size: 1.4rem;
  height: 40px;
  margin: 10px 0px;
  padding: 0px 20px;
}

.form-textarea {
  font-size: 1.4rem;
  padding: 5px;
}

.agreement{
  font-size: 1.4rem;
}

.form-submit,.btn-back {
  width: 200px;
  font-size: 1.6rem;
  margin: 0 auto 30px;
  padding: 10px;
}

.btn-back{
  margin: 80px auto 0;
}

/* ------------------dtp.html------------------ */
.dtp-inner1 video,.dtp-inner3 video,.ats-inner1 video{
  width: 100%;
}

.dtp-inner1 li{
  width: 100%;
  margin-top: 15px;
}

.dtp-inner1 li:first-of-type{
  order: 1;
  padding-top: 30px;
}

.dtp-inner1 li:nth-of-type(2){
  order: 2;
}

.dtp-inner1 li:nth-of-type(3){
  order: 4;
}

.dtp-inner1 li:nth-of-type(4){
  order: 3;
  padding-top: 30px;
}

.dtp-inner1 li:nth-of-type(5){
  order: 5;
  padding-top: 30px;
}

.dtp-inner1 li:last-of-type{
  width: 70%;
  order: 6;
}

.dtp-bg-img{
  width: 100%;
}

.dtp-inner2 li{
  width: 48%;
}

.carousel{
  margin: 10px;
}

.slick-dots li button:before {
  font-size: 12px;
  top: 5px;
}

/* ------------------auto-typesetting.html------------------ */
.btn-link{
  font-size: 1.6rem;
  width: 180px;
  height: 40px;
}

/* ------------------solution.html------------------ */
.btn-download{
  font-size: 1.4rem;
  width: 270px;
  height: 35px;
}

.solution li:first-of-type{
  width: 50%;
}

.solution li:last-of-type{
  width: 45%;
}

/* ------------------animation.html------------------ */
.animation iframe{
  height: 300px;
}

/* ------------------movie.html------------------ */
.movie-inner2 ul>li>p{
  padding: 0;
}

.m-concept li:nth-of-type(odd),.m-service li:nth-of-type(even){
  width: 100%;
}

.m-concept li:nth-of-type(even),.m-service li:nth-of-type(odd){
  width: 100%;
}

/* ------------------word.html------------------ */
.word-inner3 li:last-of-type{
  padding-top: 0;
}

/* ------------------ict.html------------------ */
.ict-inner2 ul{
  padding: 0;
}

.ict-inner3 ul{
  padding: 0;
}

.ict-inner2 li,.ict-inner3 li{
  width: 100%;
}

.order:first-of-type{
  order: 2;
}

.order:nth-of-type(2){
  order: 1;
}

.ict-inner3 figure{
  width: 80%;
  margin: 0 auto;
}

/* ------------------pod.html------------------ */
.pod-inner1 ul{
  padding-left: 0;
  padding-right: 0;
}

.pod-system li:first-of-type{
  width: 100%;
}

.pod-system li:last-of-type{
  width: 80%;
  margin: 0 auto;
  padding-top: 30px;
}

}

@media screen and (max-width: 500px) {

h2{
  font-size: 1.8rem;
}

h3{
  font-size: 1.4rem;
}

h4{
  font-size: 1.4rem;
}

h5{
  font-size: 1.4rem;
}

h6{
  font-size: 1.4rem;
}

.service h2+h3,.w-flow h3,.news h3,.corporate h3,.access h3,.company h3{
  width: 90px;
}

/* ------------------hero------------------ */
.msg{
  width: 100%;
  height: 240px;
  padding: 5px 10px;
  font-size: 1.8rem;
  bottom: 0;
}

.msg span{
  font-size: 2.8rem;
}

.hero-text{
  font-size: 2rem;
}

/* ------------------container------------------ */
/* ......service...... */
.service{
  margin-top: 60px;
}

.service div{
  width: 90%;
}

.service ul{
  width: 48%;
}

.service-icon a{
  padding: 30px 0px 15px;
}

.description a{
  padding: 0;
}

.description h3{
  padding-bottom: 20px;
}

.border9{
  border-bottom: none;
}

.border4,.border10{
  border-left: none;
}

.border3,.border5,.border9,.border11{
  border-left: solid 1px #ccc;
}

/* ......workflow...... */
.w-flow{
  margin-top: 70px;
}

.w-flow h4{
  font-size: 1.8rem;
}

.w-flow p{
  font-size: 1.4rem;
}

.w-flow-text{
  width: 100%;
}

.w-flow-img{
  display: none;
}

/* ......news...... */
.news{
  margin-top: 40px;
}

.corporate{
  margin-top: 70px;
}

.news dd{
  font-size: 1.4rem;
}

.news dd>span{
  font-size: 1rem;
}

/* ......message...... */
.message{
  padding: 105px 0 50px;
}

.message p{
  font-size: 1.4rem;
}

/* ......access...... */
.access_inner{
  padding: 15px 0 30px;
}

.access_text{
  margin: 15px auto 0;
}

.access iframe{
  height: 300px;
}

/* ......company...... */
.company{
  margin-top: 50px;
}

.company_inner1,.company_inner2{
  padding: 10px 0 10px 10px;
}

.company_inner2{
  padding: 10px;
}

.c-table{
  font-size: 1.2rem;
}

.company_inner2 p{
  font-size: 1.0rem;
}

dl.equipment{
  font-size: 1.2rem;
}

dl.equipment dt{
  width: 75%;
}

dl.equipment dd{
  width: 25%;
}

/* ......contact...... */
.contact{
  margin-top: 60px;
}

.contact_form ul{
  width: 240px;
}

.contact_form li:first-of-type{
  font-size: 1.8rem;
}

.contact_form li:not(:first-of-type){
  font-size: 1.4rem;
  padding-left: 50px;
  height: 45px;
}

.contact_form a span{
  font-size: 1rem;
  width: 30px;
  height: 30px;
}

/* ......works...... */
.works{
  margin-top: 0;
}

.works li{
  width: 44%;
  margin: 0 3% 15px;
}

.works li:last-of-type{
  width: 61.6%;
}

/* ......TOPに戻るボタン...... */
.button{
  width: 40px;
  height: 40px;
}

.button img{
  width: 20px; 
}

/* ......footer...... */
.footer_privacy{
  display: inline-block;
}

/* ------------------content------------------ */
.content p{
  font-size: 1.4rem;
}

.service-list p{
  font-size: 1.4rem;
}

/* ------------------contact.html------------------ */
.form-select label{
  width: 80%;
  padding: 10px 0;
  margin: 0 auto 15px;
}

.form-select{
  font-size: 1.2rem;
}

.form-item {
  font-size: 1.2rem;
}

.form-text {
  font-size: 1.2rem;
}

.selectdiv select {
  font-size: 1.2rem;
  padding: 0px 16px;
}

.form-textarea {
  font-size: 1.2rem;
}

.agreement{
  font-size: 1.2rem;
}

.form-submit,.btn-back {
  width: 120px;
  font-size: 1.4rem;
}

/* ------------------dtp.html------------------ */
.dtp-inner2 li{
  width: 100%;
}

/* ------------------auto-typesetting.html------------------ */
.btn-link{
  font-size: 1.4rem;
  width: 140px;
  height: 35px;
}

/* ------------------.solution.html------------------ */
.solution li:first-of-type{
  width: 100%;
  order: 2;
}

.solution li:last-of-type{
  width: 50%;
  margin: 0 auto;
  order: 1;
}

/* ------------------script.html------------------ */
.s-img5{
  width: 65%;
  margin: 0 auto;
}

/* ------------------animation.html------------------ */
.animation iframe{
  height: 250px;
}

/* ------------------word.html------------------ */
.word-inner1 li{
  width: 48%;
}

}
