html {
font-size: 62.5%;
margin: 0;
padding: 0;
box-sizing: border-box;
font-feature-settings:"palt","salt";
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    -webkit-text-size-adjust:100%;
    -moz-text-size-adjust:100%;
    text-size-adjust:100%;
    font-family:neue-haas-grotesk-text,source-han-sans-japanese,sans-serif;
    font-style:normal;
    font-weight:300;
    color: #333;
}
body {
	font-family: neue-haas-grotesk-display,source-han-sans-japanese, sans-serif;
font-weight: 300;
font-style: normal;
    letter-spacing: 0.1rem;
    box-sizing: border-box;
    margin:0;padding:0;
display: flex;
  flex-direction: column;
  min-height: 100vh;
    overflow-x: hidden;
}
div, ul, li {
	box-sizing: border-box;
}

a:link {
	text-decoration: none;
    font-weight: bold;
    color: #305a92;
    transition: all .3s;
}

a:hover {

}

a:visited {
    color: #305a92;
}

.c-both{
    clear: both;
    height:0em;
    visibility:hidden;
    overflow:hidden;
    content:”.”;
}

img{
width:100%;
max-width: 100%;
height: auto;
}

header {
margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 150px;
    background-image: linear-gradient(#ffffff 30%, transparent);
}

#header_base {
    margin: 0 auto;
    padding: 10px 160px 10px 30px; 
    display: block flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 250px;
    height: 60px;
    background: url(images/logo.svg)center left no-repeat;
    background-size: contain;
    text-indent: -9999px;
    margin: 0;
    transition: all .3s;
}
.logo:hover {
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
}

main {
    margin: 80px auto 80px;
    padding: 0 35px;
    width: 100%;
    box-sizing: border-box;
}

.contents {
display: block;
position: relative;
margin: 0 auto;
max-width: 1200px;
}

/*Gナビ*/
nav{
	display: block;
}
.drawer{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  text-align: right;
}
.navbar_toggle{
  z-index:9999;
}
.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #305a92;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}
.navbar_toggle_icon:nth-child(1) {
    top: 0;
}
.navbar_toggle_icon:nth-child(2) {
    margin: 4px 0;
}
.navbar_toggle_icon:nth-child(3) {
    top: 0;
}
.menu.open {
  -webkit-transform:translateX(0);
  transform:translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu{
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
-webkit-transition:ease .5s;
transition:ease .5s;
}
.menu ul{
  padding: 0px;
    width: 100%;
}
.menu ul li{
	display: block;
	text-align: center;
}
.menu ul li a{
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 160%;
    color: #333;
    letter-spacing: 0;
}
.nav_icon{
	display: block flex;
    position: fixed;
    align-items: center;
    right: 0px;
    top:0;
    height: 80px;
}
.nav_icon_mail{
	width: 45px;
     transition: .4s;
    margin-right: 15px;
}
.nav_icon_mail:hover {
transform: scale(1.2,1.2);
}
.nav_icon_tel{
	width: 45px;
 transition: .4s;
    margin-right: 20px;
}
.nav_icon_tel:hover {
transform: scale(1.2,1.2);
}
.link_btn_bl {
position: relative;
}
.link_btn_bl::after {
content: url("images/icon_link.svg");
width: 15px;
position: absolute;
top: 5px;
right: -5px;
}

@media screen and (min-width: 1050px) {

.navbar_toggle{
  display: none;
}
.menu{
  width: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.menu ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}	
.menu ul li{
	display: block;
  padding: 0px 20px;
	text-align: center;
position: relative;
}	
}

a.underline {
	position: relative;
}
a.underline::after {
	background: #5d97c4;
	bottom: 0;
	content: '';
	display: block;
	height: 1px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -32px;
	position: absolute;
	transition: .5s all;
	width: 0;
}
@media screen and (min-width: 1200px) {
	a.underline:hover::after {
		width: 100%;
	}
}

@media only screen and (max-width:1050px){
header {
    height: 80px;
}
#header_base {
    padding: 5px 15px;
    height: 54px;
}
main {
    margin: 54px auto 60px;
    padding: 0 20px;
}

.logo {
    width:183px;
    height:44px;
}
.drawer{
padding: 20px 15px;
position: fixed;
top: 0px;
right: 0px;
pointer-events: auto;
z-index: 100;
}
	
.menu{
background: rgba(255,255,255,0.9);
height: 100%;
position: fixed;
width: 100%;
z-index: 98;
top: 0;
left:0;
}
.menu ul{
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
}	
.menu ul li{
  padding: 10px 20px;
}	
.menu ul a{
	position: relative;
	pointer-events: auto;
}
.nav_icon{
    height: 54px;
    right: 40px;
}
.nav_icon_mail{
width: 40px;
margin-right: 2px;
}
.nav_icon_tel{
width: 40px;
}
.link_btn_bl::after {
top:16px;
right: calc(50% - 55px);
}
}

/*フッター*/
footer {
    display: block;
    margin-top: auto;
}
.footer_base {
    background: #305a92;
    padding: 35px 30px 25px 30px;
    display: block flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #FFF;
    box-sizing: border-box;
    margin-top: auto;
}
.footer_right {
    text-align: right;
}
.footer_logo{
width: 250px;
}
.footer_tit{
font-size: 1.6rem;
font-weight: 700;
}
.footer_p{
font-size: 1.4rem;
line-height: 1.6;
}
.footer_p a{
color: #9bafca;
font-weight: normal;
transition: all .3s;
}
.footer_p a:hover {
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
}
.footer_nav{
text-align: center;
margin-bottom: 18px;
display: flex;
justify-content: flex-end;
}
.footer_nav ul{
margin: 0 ;
padding: 0 ;
}
.footer_nav li{
list-style: none;
display: inline-block;
padding: 0 18px;
}
.footer_nav a{
text-decoration: none;
color: #FFF;
font-size: 1.4rem;
transition: all .3s;
}
.footer_nav a:hover {
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
}
.copyright{
font-size:1.4rem;
color: #FFF;
font-weight: bold;
letter-spacing: 0;
}
.link_btn_wh {
position: relative;
padding: 0 35px 0 18px!important;
}
.link_btn_wh::after {
content: url("images/icon_link_wh.svg");
width: 15px;
position: absolute;
top:3px;
right: calc(50% - 42px);
}
@media only screen and (max-width:1200px){
footer {
    padding: 30px 0px 20px 0px;
    display: block;
    text-align: center;
}
.footer_right {
    text-align: center;
}
.footer_logo{
width: 180px;
margin: 0 auto -5px;
}
.footer_tit{
font-size: 1.4rem;
margin-bottom: -7px;
}
.footer_p{
font-size: 1.3rem;
}
.footer_nav{
text-align: center;
margin: 0 auto 5px;
justify-content: center;
}
.footer_nav:nth-child(2){
margin: 0 auto 15px;
}
.footer_nav li{
padding: 5px 10px;
}
.footer_nav a{
font-size: 1.3rem;
}
.copyright{
font-size:1.3rem;
}
.link_btn_wh::after {
width: 14px;
height: 14px;
right: calc(50% - 40px);
}
}

/* ページTOPに戻る */
.pagetop {
    display: none;
	position: fixed;
	right: 0px;
	bottom: 302px;
    z-index: 50;
}
.pagetop a {
	display: inline-block;
    background: url("images/pagetop.svg")no-repeat center center;
    background-size: 17px 135px;
    background-color: rgba(255, 255, 255, 0.8);
 transition: .3s;
    width: 40px;
    height: 180px;
}
.pagetop a:hover {
transform: translateY(-10px);
}
@media screen and (max-width: 1200px) {
.pagetop {
	bottom: 310px;
}
}
@media screen and (max-width: 1000px) {
.pagetop {
    bottom: 35px;
}
.pagetop a {
	background-size: 14px 111px;
    width: 30px;
    height: 150px;
}
}

/*フェードイン*/
.fadein, .time-fadein {
	opacity: 0;
	transform: translate(0, 40px);
	transition: all 800ms;
}
.fadein.scrollin, .time-fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
.fadein.fadein_l, .time-fadein.fadein_l {
	transform: translate(-50px, 0);
	transition: all 800ms;
	opacity: 0;
}
.fadein.fadein_l.scrollin, .time-fadein.fadein_l.scrollin {
	transform: translate(0, 0);
	opacity: 1;
}
.fadein.fadein_r.fadein, .time-fadein.fadein_r.fadein {
	transform: translate(50px, 0);
	transition: all 800ms;
	opacity: 0;
}
.fadein.fadein_r.scrollin, .time-fadein.fadein_r.scrollin {
	transform: translate(0, 0);
	opacity: 1;
}

@media screen and (max-width:850px) {
	/*タブレット以下は下からスライドに固定(横ずれを防ぐ為)*/
	.fadein, .time-fadein {
		transform: translate(0, 40px) !important;
	}
	.fadein.scrollin, .time-fadein.scrollin {
		opacity: 1;
		transform: translate(0, 0) !important;
	}
}

/* kv */
.kv{
  margin: 0px auto 0;
  height: 700px;
  position: relative;
  width: 100%;
background: url('images/kv.jpg')center center no-repeat;
background-size: cover;
padding: 0;
}
.catch{
font-family: "source-han-sans-japanese", sans-serif;
font-weight: 700;
font-style: normal;
color: #FFF;
position: absolute;
text-align: center;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
    font-size: 5rem;
    line-height: 1.6;
    letter-spacing: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    margin: 0;
}
@media screen and (max-width: 798px) {
.kv{
height: calc(100vh - 100px);
}
.catch{
font-size: 3rem;
letter-spacing: 5px;
box-sizing: border-box;
}
}

#title{
    display: flex;
    align-items: center;
    margin: 20px auto 0;
    justify-content: space-between;
    position: relative;
}
.tit_en{
    font-size: 7.2rem;
    color: #305a92;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0;
    line-height: 0;
}
#title h1{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 3px;
}
#sub_title{
    display: flex;
    align-items: center;
    margin: 25px auto 50px;
    position: relative;
}
#sub_title ul{
margin: 0 ;
padding: 0 ;
}
#sub_title li{
list-style: none;
display: inline-block;
padding: 0 25px 0 0;
}
#sub_title a{
text-decoration: none;
color: #333;
font-size: 1.4rem;
transition: all .3s;
padding: 0 0 0 22px;
position: relative;
}
#sub_title a::before{
    content: url("images/icon_down.svg");
    position: absolute;
    transition: all 0.2s ease-in;
    width: 16px;
    height: 16px;
    left: 0px;
    top: 0px;
}
#sub_title a:hover::before {
top: 3px;
}

/*ホーム*/
#loop_box{
display: block;
padding: 30px 0;
margin-bottom: 40px;
  }
.loop_tit {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 10px;
    color: #305a92;
    letter-spacing: 0;
  }
.loop_wrap {
    display: flex;
    width: 100%;
    height: 30px;
    overflow: hidden;
  }
.loop_wrap div {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 1.8rem;
    overflow: hidden;
    font-weight: bold;
  }
.loop_wrap div a {
    color: #333;
  }
.loop_wrap div a:hover {
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
  }
.loop_wrap div:nth-child(odd) {
animation: loop 50s -25s linear infinite;
}
.loop_wrap div:nth-child(even) {
animation: loop2 50s linear infinite;
}
@keyframes loop {
0% {transform: translateX(100%);}
to {transform: translateX(-100%);}
}  
@keyframes loop2 {
0% {transform: translateX(0);}
to {transform: translateX(-200%);}
}

.top_tit{
    display: flex;
    align-items: center;
    margin: 0 auto 40px;
    justify-content: space-between;
    position: relative;
}
.top_tit_en{
    font-size: 7.2rem;
    color: #305a92;
    font-weight: bold;
    margin: 0;
    letter-spacing: 0;
    line-height: 0;
}
.view_more_btn a {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  color: #305a92;
padding-right: 65px;
transition: all 0.2s ease-in;
    letter-spacing: 0;
}
.view_more_btn a::before,
.view_more_btn a::after {
    content: "";
    position: absolute;
    transition: all 0.2s ease-in;
}
.view_more_btn a::before {
    width: 10px;
    height: 10px;
    right: 2px;
    top: 54%;
    transform: translateY(-40%) rotate(25deg);
    border-top: 1px solid #305a92;
}
.view_more_btn a::after {
        width: 40px;
    height: 1px;
    right: 0px;
    top: 50%;
    transform: translateY(-40%);
    background: #305a92;
}
.view_more_btn a:hover::before {
    right: -8px;
}
.view_more_btn a:hover::after {
    right: -10px;
}
.page_flex{
display: flex;
align-items: flex-start;
flex-wrap: wrap;
gap:0 30px;
margin: 0 auto 50px;
justify-content:space-between;
}

#top_service{
    display: block;
    margin-bottom: 80px;
}
.big_bn01{
    display: block flex;
    position: relative;
    width: 47%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    min-width: 500px;
}
.big_bn01:after{
position: absolute;
content: "";
display: block;
width: 100%;
height: 100%;
top: 0;
background: url("images/top01.jpg")top center no-repeat;
background-size: cover;
transition: all .3s;
}
.big_bn01:hover:after{
transform: scale(1.1);
}
.big_bn01 a{
  display: block;
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
}

.big_bn02{
    display: block flex;
    position: relative;
    width: 47%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    min-width: 500px;
}
.big_bn02:after{
position: absolute;
content: "";
display: block;
width: 100%;
height: 100%;
top: 0;
background: url("images/top02.jpg")top center no-repeat;
background-size: cover;
transition: all .3s;
}
.big_bn02:hover:after{
transform: scale(1.1);
}
.big_bn02 a{
  display: block;
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
}

.big_bn_line{
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    background: rgba(48, 90, 146, 0.8);
    padding: 20px 30px;
    z-index: 10;
    font-size: 2rem;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.1rem;
    white-space: nowrap;
}
.big_bn_line::before,
.big_bn_line::after {
    content: "";
    position: absolute;
    transition: all 0.2s ease-in;
}
.big_bn_line::before {
    width: 10px;
    height: 10px;
    right: 32px;
    top: 52%;
    transform: translateY(-40%) rotate(25deg);
    border-top: 1px solid #FFF;
}
.big_bn_line::after {
        width: 40px;
    height: 1px;
    right: 30px;
    top: 50%;
    transform: translateY(-40%);
    background: #FFF;
}
.big_bn_line:hover::before {
    right: 22px;
}
.big_bn_line:hover::after {
    right: 20px;
}

#top_reason{
    display: block;
    margin-bottom: 80px;
    background: url("images/mark.svg")no-repeat left top;
}
#top_reason h1 {
    font-size: 3rem;
    text-align: center;
    margin: 0 auto;
}
.reason_p {
    font-size: 1.6rem;
    padding-top: 30px;
    text-align: center;
    margin: 0 auto 20px;
    line-height: 1.8;
}

#top_achievements{
    display: block;
    margin-bottom: 80px;
}
.ach_box{
    width: 30%;
}
.ach_box:nth-child(3){
    margin-bottom: 50px;
}
.ach_img{
margin: 0 auto 20px;
position: relative;
display: block;
overflow: hidden;
border: #C9C9C9 1px solid;
border-radius: 5px;
}
.ach_img img{
aspect-ratio: 16 / 9;
object-fit: cover;
transition-duration: 0.3s;
}
.ach_img img:hover{
transform: scale(1.1); /*拡大*/
}
.ach_category {
    position: absolute;
    right: 10px;
    top: 0px;
    font-size: 1.2rem;
    color: #FFF;
    font-weight: bold;
    display: inline-block;
    background: #5d97c4;
    padding: 4px 10px;
    z-index: 10;
    margin: 0;
    line-height: 1;
}
.ach_tit {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 5px;
	margin-top: 0;
}
.ach_tag {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #5d97c4;
    font-weight: bold;	
}
.ach_tag a:hover {
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
  }
.ach_btn a {
    display: block;
    padding: 10px 25px;
    text-align: center;
    margin: 20px auto 0;
    border: 1px solid #305a92;
    border-radius: 100vh;
    color: #305a92;
    letter-spacing: 0;
    font-size: 1.8rem;
    font-weight: bold;
}
.ach_btn a:hover {
    background-color: #305a92;
    color: #FFF;
}
.ach_partner_box{
display: flex;
width: 100%;
height: 60px;
overflow: hidden;
}
.ach_partner_box a:hover{
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
}
.ach_partner_box img{
height: 60px;
width: auto;
margin-right: 40px;
}
.ach_partner_box div {
flex: 0 0 auto;
overflow: hidden;
white-space: nowrap;
}
.ach_partner_box div:nth-child(odd) {
animation: loop 50s -25s linear infinite;
}
.ach_partner_box div:nth-child(even) {
animation: loop2 50s linear infinite;
}
@keyframes loop {
0% {transform: translateX(100%);}
to {transform: translateX(-100%);}
}  
@keyframes loop2 {
0% {transform: translateX(0);}
to {transform: translateX(-200%);}
}

#top_topics{
    display: block;
    padding: 60px 35px;
    background-color: #EFEFEF;
}
#top_topics .top_tit_en {
    margin-bottom: 30px;
    line-height: 1;
}
.topics_flex{
    display: block flex;
    gap:100px;
}
.topics_box{
    display: block flex;
    gap:30px;
    align-items: center;
    border-bottom: 1px #C9C9C9 dotted;
    padding-bottom: 20px;
    margin: 0 auto 20px; 
    padding-right: 60px;
    position: relative;
    box-sizing: border-box;
}
.topics_link::after{
    content: '';
    position: absolute; /* 親要素を基準に配置 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* 親要素より上に配置 */
}
.topics_box:nth-last-child(1 of .topics_box) {
  border-bottom: none;
	padding-bottom: 0px;
	margin-bottom: 0px; 
}
.topics_box::before,
.topics_box::after {
    content: "";
    position: absolute;
    transition: all 0.2s ease-in;
}
.topics_box::before {
    width: 10px;
    height: 10px;
    right: 2px;
    top: calc(51% - 10px);
    transform: translateY(-40%) rotate(25deg);
    border-top: 1px solid #305a92;
}
.topics_box::after {
        width: 40px;
    height: 1px;
    right: 0px;
    top: calc(50% - 10px);
    transform: translateY(-40%);
    background: #305a92;
}
.topics_box:hover::before {
    right: -8px;
}
.topics_box:hover::after {
    right: -10px;
}

.topics_img{
position: relative;
display: block;
overflow: hidden;
border: #C9C9C9 1px solid;
border-radius: 5px;
background-color: #FFF;
width: 160px;
}
.topics_img img{
aspect-ratio: 4 / 3;
object-fit: cover;
transition-duration: 0.3s;
}
.topics_img img:hover{
transform: scale(1.1); /*拡大*/
}
.topics_date{
font-size: 1.8rem;
font-weight: bold;
margin: 0 0 10px 0;
color: #333;
letter-spacing: 0;
display: flex;
align-items: center;
gap: 15px;
line-height: 1;
}
.topics_date span{
font-size: 1.6rem;
color: #305a92;
letter-spacing: 0.1rem;
}
.topics_p{
font-size: 1.4rem;
line-height: 1.6;
margin: 0;
color: #333;
font-weight: lighter;
}
.topics_p span{
display: inline-block;
background-color: #5d97c4;
padding: 2px 5px;
color: #FFF;
font-size: 1.4rem;
font-weight: bold;
letter-spacing: 0;
line-height: 1;
margin: 0 12px 0 0;
}

#top_recruit{
    display: block;
    padding: 60px 35px;
    background-color: #5d97c4;
    border-top: #5d97c4 1px solid;
    border-bottom: #5d97c4 1px solid;
    transition-duration: 0.3s;
}
#top_recruit:hover{
    background-color: #FFF;
}
#top_recruit .contents{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#top_recruit .top_tit_en{
    line-height: 1;
    color: #FFF;
    margin-bottom: 10px;
}
.recruit_p{
    color: #FFF;
    font-size: 1.6rem;
    margin: 0;
}
.recruit_btn {
  font-size: 2rem;
  color: #FFF;
  letter-spacing: 0;
  padding-right: 50px;
}
.recruit_btn::after {
    content: url(images/icon_link_wh.svg);
    width: 18px;
    position: absolute;
    top: 1px;
    right: 0;
}
#top_recruit:hover .top_tit_en{
    color: #5d97c4;
}
#top_recruit:hover .recruit_p{
    color: #5d97c4;
}
#top_recruit:hover .recruit_btn {
  color: #5d97c4;
}
#top_recruit:hover .recruit_btn::after {
    content: url(images/icon_link_bl.svg);
}

#top_contact{
    display: block;
    padding: 60px 35px;
    border-bottom: #305a92 1px solid;
    border-top: #305a92 1px solid;
    transition-duration: 0.3s;
}
#top_contact:hover{
    background-color: #305a92;
    border-bottom: #FFF 1px solid;
}
#top_contact .contents{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#top_contact .top_tit_en{
    line-height: 1;
    color: #305a92;
    margin-bottom: 10px;
}
.contact_p{
    font-size: 1.6rem;
    margin: 0;
    color: #333;
}
.contact_btn {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  color: #305a92;
padding-right: 65px;
transition: all 0.2s ease-in;
    letter-spacing: 0;
}
.contact_btn::before,
.contact_btn::after {
    content: "";
    position: absolute;
    transition: all 0.2s ease-in;
}
.contact_btn::before {
    width: 10px;
    height: 10px;
    right: 2px;
    top: 54%;
    transform: translateY(-40%) rotate(25deg);
    border-top: 1px solid #305a92;
}
.contact_btn::after {
        width: 40px;
    height: 1px;
    right: 0px;
    top: 50%;
    transform: translateY(-40%);
    background: #305a92;
}
#top_contact:hover .contact_btn {
  color: #FFF;
}
#top_contact:hover .contact_btn::before {
    right: -8px;
}
#top_contact:hover .contact_btn::after {
    right: -10px;
}
#top_contact:hover .top_tit_en{
    color: #FFF;
}
#top_contact:hover .contact_p{
    color: #FFF;
}
#top_contact:hover .contact_btn::before {
    border-top: 1px solid #FFF;
}
#top_contact:hover .contact_btn::after {
    background: #FFF;
}

.banner{
    text-align: center;
    margin: 0 auto;
    max-width: 280px;
    width: 70%;
transition-duration: 0.3s;
    border: 1px solid #9bafca;
}
.banner:hover{
transform: scale(1.1); /*拡大*/
}

/*会社情報*/
#outline{
display: block flex;
align-items: flex-start;
gap:50px;
padding: 0;
margin-bottom: 60px;
}
h2 {
    display: block;
    font-size: 2.6rem;
    color: #305a92;
    font-weight: bold;
    padding-top: 30px;
    position: relative;
    margin: 0 auto 30px;
    min-width: 250px !important;
}
h2::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 1px;
    left: 0;
    top: 0;
    background: #305a92;
}
table.company_table{
width: 100%;
margin: 38px auto 0;
border-collapse:  collapse;
}
table.company_table th,
table.company_table td {
    font-size: 1.5rem;
    padding: 25px 40px;
    margin: 0;
    vertical-align: top;
}
table.company_table th {
    width: 20%;
    min-width: 80px;
    font-weight: bold;
    text-align: left;
    border-top: dotted 1px #b5b5b5;
    border-bottom: dotted 1px #b5b5b5;
}
table.company_table td {
    line-height: 1.8;
    border-top: dotted 1px #b5b5b5;
    border-bottom: dotted 1px #b5b5b5;
}
table.company_table td ul {
    padding-left: 32px;
    margin: 5px auto 15px;
}
.link_btn {
    text-decoration: underline;
    position: relative;
    display: inline-block;
    padding-right: 26px;
}
.link_btn:hover {
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
}
.link_btn:after {
    content: "";
    display: inline-block;
    position: absolute;
    top:6px;
    right: 0;
    width: 14px;
    height: 14px;
    background: url(images/icon_link.svg) no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0px 6px;
    transition: all .3s;
}
#message{
display: block flex;
align-items: flex-start;
gap:50px;
padding: 0;
margin-bottom: 60px;
}
.message_img{
display: block;
max-width: 250px;
}
.message_box{
display: block;
margin-top: 38px;
}
.message_tit{
font-size: 2rem;
margin: 0 auto 10px;
line-height: 1.6;
font-weight: bold;
}
.message_p{
font-size: 1.5rem;
line-height: 1.8;
margin: 0 auto 20px;
}
.message_name{
display: flex;
align-items: center;
font-size: 2rem;
font-weight: bold;
margin: 0 auto 10px;
letter-spacing: 3px;
}
.message_name span{
font-size: 1.3rem;
font-weight: lighter;
margin-right: 20px;
letter-spacing: 0.1rem;
}
.message_caption{
font-size: 1.4rem;
font-weight: lighter;
line-height: 1.6;
margin: 0 auto;
}
#vision{
display: block;
padding: 0;
margin-bottom: 60px;
}
.vision_tit{
text-align: center;
font-size: 6rem;
font-weight: bold;
margin: 0 auto 15px;
line-height: 1.2;
color: #305a92;
}
.vision_p{
text-align: center;
font-size: 3.5rem;
font-weight: bold;
margin: 0 auto;
letter-spacing: 10px;
line-height: 1.6;
}
#history{
display: block flex;
align-items: flex-start;
gap:50px;
padding: 0;
margin-bottom: 60px;
}
table.history_table{
margin: 20px auto 0;
border-collapse: separate;
border-spacing: 15px;
}
table.history_table th,
table.history_table td {
    font-size: 1.5rem;
    vertical-align: top;
    margin: 0;
}
table.history_table th {
    width: 160px;
    font-weight: bold;
    text-align: left;
    border-right: solid 1px #333;
}
table.history_table td {
    line-height: 1.6;
    padding: 0 0 0 40px;
}
#community{
display: block flex;
align-items: flex-start;
gap:50px;
padding: 0;
margin-bottom: 60px;
}
.community_box{
display: block;
margin-top: 38px;
}
.community_ul {
    padding-left: 17px;
    margin: 5px auto 0;
	font-size: 1.5rem;
line-height: 1.8;
}
#access{
display: block;
padding: 0;
margin: 0px;
}
#access iframe{
width: 100%;
height: 400px;
}

/*事業内容*/
#manufacturing{
display: block;
padding: 0;
margin-bottom: 60px;
}
.service_flex{
display: flex block;
gap:50px;
padding: 0;
margin-bottom: 50px;
border-bottom: dotted 1px #b5b5b5;
padding-bottom: 50px;
}
.service_flex:nth-last-child(1 of .service_flex) {
border-bottom: none;
margin-bottom: 0px;
padding-bottom: 0px;
}
.service_img{
display: block;
width: 30%!important;
min-width: 350px!important;
height: auto;
}
.service_img01{
background: url("images/sevice01.jpg")center center no-repeat;
background-size: cover;
}
.service_img02{
background: url("images/sevice02.jpg")center center no-repeat;
background-size: cover;
}
.service_img03{
background: url("images/sevice03.jpg")center center no-repeat;
background-size: cover;
}
.service_img04{
background: url("images/sevice04.jpg")center center no-repeat;
background-size: cover;
}
.service_img05{
background: url("images/sevice05.jpg")center center no-repeat;
background-size: cover;
}
.service_img06{
background: url("images/sevice06.jpg")center center no-repeat;
background-size: cover;
}
.service_img07{
background: url("images/sevice07.jpg")center center no-repeat;
background-size: cover;
}
.service_img08{
background: url("images/sevice08.jpg")center center no-repeat;
background-size: cover;
}
.service_img09{
background: url("images/sevice09.jpg")center center no-repeat;
background-size: cover;
}
.service_img10{
background: url("images/sevice10.jpg")center center no-repeat;
background-size: cover;
}
.service_img11{
background: url("images/sevice11.jpg")center center no-repeat;
background-size: cover;
}
.service_img12{
background: url("images/sevice12.jpg")center center no-repeat;
background-size: cover;
}
.service_no{
font-size: 5.6rem;
letter-spacing: 0;
line-height: 1;
margin: 0 auto 20px;
font-weight: bold;
}
.service_flex h3{
font-size: 2.4rem;
line-height: 1.6;
margin: 0 auto 20px;
font-weight: bold;
}
.service_list {
    padding: 0px;
    margin: 0px auto 12px;
    list-style: none;
}
.service_list > li {
    position: relative;
    padding: 0px 0px 0px 2.2em;
    margin: 0px;
    font-size: 1.6rem;
    line-height: 1.6;
}
.service_list > li span {
    font-size: 1.4rem;
    line-height: 1.4;
}
.service_list > li strong {
    font-weight: bold;
}
.service_list > li::before {
    position: absolute;
    top: 14px;
    left: 5px;
    transform: translateY(-75%) rotate(45deg);
    width: 0.5em;
    height: 1em;
    border-bottom: 2px solid #305a92;
    border-right: 2px solid #305a92;
    content: "";
}
.service_list > li + li {
    margin: 6px 0px 0px;
}
.service_catch{
font-size: 2rem;
line-height: 1.6;
margin: 0;
color: #5d97c4;
}
.service_p{
font-size: 1.6rem;
line-height: 1.6;
margin: 0 auto 15px;
}
#others{
display: block;
padding: 0;
margin: 0px;
}

/*制作事例*/
#website{
display: block;
padding: 0;
margin-bottom: 60px;
}
#web_system{
display: block;
padding: 0;
margin-bottom: 60px;
}
#web_manual{
display: block;
padding: 0;
margin-bottom: 60px;
}
#users_manual{
display: block;
padding: 0;
margin-bottom: 60px;
}
#technical_illustrations{
display: block;
padding: 0;
margin: 0px;
}
.slick-list {
  margin: 0 -30px!important;
}
.slick-slide {
  margin: 0 30px;
}
.achievements_tit {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto 30px;
}
.arrow_box1,
.arrow_box2,
.arrow_box3,
.arrow_box4,
.arrow_box5{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
}
.prev-arrow,
.next-arrow {
    display: block;
    width: 50px;
    height: 50px;
    transition: all .3s ease;
    cursor: pointer;
    position:relative;
}
.prev-arrow{
    background: url("images/icon_prev.svg")center center no-repeat;
    background-size: contain;
}
.next-arrow{
    background: url("images/icon_next.svg")center center no-repeat;
    background-size: contain;
}
#achievements_detail{
display: block;
padding: 0;
margin-bottom: 0px;
}
#achievements_detail h2{
margin: 30px auto;
}
.achievements_detail_slider {
    margin: 0 auto 30px;
    position: relative;
    display: block;
    overflow: hidden;
    border: #C9C9C9 1px solid;
    border-radius: 5px;
    max-width: 900px;
    text-align: center;
}
.achievements_detail_slider img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
#achievements_detail .ach_tit {
    font-size: 1.8rem;
    font-weight: bold;
    margin: -20px auto 30px;
}
.ach_url {
    font-size: 1.6rem;
    margin: -20px auto 30px;
}
.ach_url a {
    font-weight: lighter!important;
}
.ach_url a:hover {
    opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
}
.achievements_detail_p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.dots-box {
    margin: 0 auto 30px;
}
.dots-wrap {
    display: flex block;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.dots-wrap li {
    width: 50px;
    height: 3px;
    margin: 0 5px;
    background: #5d97c4;
    cursor: pointer;
    list-style: none;
}
.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #305a92;
}
.dots-wrap li button {
    display: none!important;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    outline: none!important;
    padding: 0;
    border: none!important;
    background-color: none!important;
}
.dots-wrap li::marker {
    display: none!important;
}
.achievements_btn_area {
    display: block flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto 0;
}
.ach_prev_btn a {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  color: #305a92;
padding-left: 65px;
transition: all 0.2s ease-in;
    letter-spacing: 0;
}
.ach_prev_btn a::before,
.ach_prev_btn a::after {
    content: "";
    position: absolute;
    transition: all 0.2s ease-in;
}
.ach_prev_btn a::before {
    width: 10px;
    height: 10px;
    left: 2px;
    top: 54%;
    transform: translateY(-40%) rotate(-25deg);
    border-top: 1px solid #305a92;
}
.ach_prev_btn a::after {
    width: 40px;
    height: 1px;
    left: 0px;
    top: 50%;
    transform: translateY(-40%);
    background: #305a92;
}
.ach_prev_btn a:hover::before {
    left: -8px;
}
.ach_prev_btn a:hover::after {
    left: -10px;
}
.ach_next_btn a {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  color: #305a92;
padding-right: 65px;
transition: all 0.2s ease-in;
    letter-spacing: 0;
}
.ach_next_btn a::before,
.ach_next_btn a::after {
    content: "";
    position: absolute;
    transition: all 0.2s ease-in;
}
.ach_next_btn a::before {
    width: 10px;
    height: 10px;
    right: 2px;
    top: 54%;
    transform: translateY(-40%) rotate(25deg);
    border-top: 1px solid #305a92;
}
.ach_next_btn a::after {
        width: 40px;
    height: 1px;
    right: 0px;
    top: 50%;
    transform: translateY(-40%);
    background: #305a92;
}
.ach_next_btn a:hover::before {
    right: -8px;
}
.ach_next_btn a:hover::after {
    right: -10px;
}
.ach_back_btn a {
    display: block;
    padding: 10px 120px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid #305a92;
    border-radius: 100vh;
    color: #305a92;
    letter-spacing: 0;
    font-size: 1.8rem;
    font-weight: bold;
}
.ach_back_btn a:hover {
    background-color: #305a92;
    color: #FFF;
}

/*お知らせ*/
#topics{
display: block;
padding: 0;
margin: 40px auto 0px;
}
#topics_detail{
display: block;
padding: 0;
margin: 40px auto 0px;
}
#topics_detail .topics_date span{
    font-size: 1.3rem;
    color: #FFF;
    font-weight: bold;
    display: inline-block;
    background: #5d97c4;
    padding: 4px 5px;
    line-height: 1;
}
#topics_detail .topics_p{
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.topics_detail_img {
    margin: 0 auto 30px;
    position: relative;
    display: block;
    overflow: hidden;
    border: #C9C9C9 1px solid;
    border-radius: 5px;
    max-width: 900px;
    text-align: center;
}

/*お問い合わせ*/
#contact{
display: block;
padding: 0;
margin: 40px auto 0px;
}
.contact_flex{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 50px;
}
.contact_link a {
  position: relative;
  display: block flex;
    justify-content: center;
    border: 1px solid #305a92;
    padding: 20px 120px;
    border-radius: 5px;
  font-size: 1.8rem;
  color: #305a92;
transition: all 0.2s ease-in;
    letter-spacing: 0;
    min-width: 440px;
    box-sizing: border-box;
}
.contact_link a::before,
.contact_link a::after {
    content: "";
    position: absolute;
    transition: all 0.2s ease-in;
}
.contact_link a::before {
    width: 10px;
    height: 10px;
    right: 32px;
    top: 52%;
    transform: translateY(-40%) rotate(25deg);
    border-top: 1px solid #305a92;
}
.contact_link a::after {
        width: 40px;
    height: 1px;
    right: 30px;
    top: 50%;
    transform: translateY(-40%);
    background: #305a92;
}
.contact_link a:hover::before {
    right: 24px;
}
.contact_link a:hover::after {
    right: 20px;
}
.contact_txt {
  font-size: 1.6rem;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.8;
}
#contact_form {
    display: block;
    padding: 0;
    margin-bottom: 0px;
}
#contact_form h2 {
    margin: 30px auto;
}
table.contact_table{
	margin:0px auto;
	border-collapse:collapse;
	width:100%;
	text-align: left;
    box-sizing: border-box;
    max-width: 800px;
}
table.contact_table td,
table.contact_table th{
	float:left;
	font-size:1.6rem;
	width: 100%;
}
table.contact_table td p,
table.contact_table th p{
	margin:0;
	padding:0;
}
table.contact_table td{
	margin-bottom: 30px;
    line-height: 180%;
}
table.contact_table th{
	margin-bottom: 10px;
	font-weight: bold;
    display: flex;
    align-items: center;
    gap:15px;
    line-height: 1;
}
textarea {overflow: auto;}
input, textarea, select {
border: 1px solid #898989;
background-color: #FFF;
padding: 12px 15px;
font-size: 1.5rem;
border-radius: 5px;
line-height: 160%;
box-sizing: border-box;
width: 100%;
}
input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #898989;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
    padding: 0;
}
input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #305a92;
  content: '';
}
input[type="checkbox"] {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid #898989;
    border-radius: 2px;
    vertical-align: -6px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background: #305a92;
  content: '';
}
.form_small {
    font-size: 1.3rem;
	color:#5d97c4;
    line-height: 1.5;
	margin:5px 0px!important;
}
.wpcf7-list-item {
    margin: 0 1em 0 0!important;
}
.wpcf7-free-text {
margin-top:10px;
}
.wpcf7-spinner {
display:none!important;
}
.wpcf7 form .wpcf7-response-output {
display:none!important;
}
.wpcf7-not-valid-tip {
    font-size: 1.2rem!important;
}
.sendbutton{
	max-width:700px;
	margin:10px auto 0;
    display: flex block;
    justify-content: center;
    gap:50px;
}
.contact_button{
    -webkit-appearance: none;
    display: block;
  font-weight: bold;
    margin: 0 auto;
    padding: 20px 60px;
    font-size: 1.6rem;
    text-align: center;
    color: #305a92;
    letter-spacing: 3px;
    transition: 0.5s;
    cursor: pointer;
    border-radius: 0;
    border: 1px #305a92 solid;
    width: 250px;
    border-radius: 5px;
    line-height: 1;
}
.contact_button:hover{
    color: #FFF;
    background-color: #305a92; 
}
.hissu{
	font-size: 1.3rem;
	color: #FFF;
	font-weight: bold;
	background: #5d97c4;
	padding: 3px 4px;
    line-height: 1;
}
.wpcf7_address {
display: flex!important;
    align-items: center;
    gap: 0 10px;
    font-size: 1.6rem;
    line-height: 1.6;
	float:none;
}
.wpcf7-list-item {
    display: block!important;
}
.wpcf7-list-item {
    margin: 0 0 0 0 !important;
}

/*プライバシーポリシー*/
#privacypolicy{
display: block;
padding: 0;
margin: 40px auto 0px;
}
.policy_txt {
  font-size: 1.6rem;
    margin: 0 0 40px 0;
    line-height: 1.8;
}


.anchor {
    padding-top: 85px!important; /* ヘッダーの高さを入力 */
    margin-top: -85px!important; /* ヘッダーの高さを入力 */
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}



@media only screen and (max-width:798px){
#title{
    margin: 10px auto 0;
    flex-wrap: wrap;
}
.tit_en{
    font-size: 5rem;
    line-height: 0.8;
}
#title h1{
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 0;
}
#sub_title{
    margin: 16px auto 30px;
}
#sub_title li{
padding: 0 18px 5px 0;
}
#sub_title a{
text-decoration: none;
font-size: 1.3rem;
padding: 0 0 0 20px;
}
#sub_title a::before{
    width: 14px;
    height: 14px;
}
    
/*ホーム*/
#loop_box{
display: block;
padding: 25px 0;
margin-bottom: 20px;
  }
.loop_tit {
    font-size: 1.8rem;
    margin: 0 auto 6px;
  }
.loop_wrap div {
    font-size: 1.6rem;
  }
    
.top_tit{
    margin: 0 auto 20px;
    flex-wrap: wrap;
    gap:20px;
}
.top_tit_en{
    font-size: 5rem;
}
.view_more_btn a {
  font-size: 1.5rem;
padding-right: 40px;
}
.view_more_btn a::before {
    width: 8px;
    height: 8px;
    right: 1px;
    top: 56%;
}
.view_more_btn a::after {
    width: 28px;
}
.view_more_btn a:hover::before {
    right: -6px;
}
.view_more_btn a:hover::after {
    right: -8px;
}
.page_flex{
display: flex;
align-items: flex-start;
justify-content: space-between;
gap:30px;
margin: 0 auto 30px;
}

#top_service{
    display: block;
    margin-bottom: 60px;
}   
.big_bn01{
    width: 100%!important;
    max-width: 500px;
    min-width: 350px;
}
.big_bn02{
    width: 100%!important;
    margin: 0 auto;
    max-width: 500px;
    min-width: 350px;
}
.big_bn_line{
    padding: 15px 60px 15px 20px;
    font-size: 1.7rem;
    white-space: wrap;
}
.big_bn_line::before {
    width: 8px;
    height: 8px;
    right: 25px;
    top: 52%;
}
.big_bn_line::after {
        width: 30px;
    right: 24px;
}
.big_bn_line:hover::before {
    right: 19px;
}
.big_bn_line:hover::after {
    right: 17px;
}

#top_reason{
    margin-bottom: 60px;
}
#top_reason h1 {
    font-size: 2.5rem;
}
.reason_p {
    font-size: 1.5rem;
    padding-top: 20px;
    text-align: left;
    margin: 0 auto 20px;
}
    
#top_achievements{
    margin-bottom: 60px;
}
.ach_box{
    width: 100%;
    max-width: 500px;
    margin: 0 auto 10px;
}
.ach_box:nth-child(3){
margin-bottom: 35px;
}
.ach_img{
margin: 0 auto 20px;
}
.ach_category {
    font-size: 1.1rem;
    padding: 3px 7px;
}
.ach_tit {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.ach_tag {
    font-size: 1.3rem;
}
.ach_btn a {
    padding: 6px 25px;
    margin: 20px auto 0;
    font-size: 1.6rem;
}
.ach_partner_box{
height: 45px;
}
.ach_partner_box img{
height: 45px;
margin-right: 30px;
}
    
#top_topics{
    padding: 40px 20px;
}
#top_topics .top_tit_en {
margin: -15px 0 0 0!important;
line-height:0;
}
#top_topics .view_more_btn {
    margin-bottom: 25px;
}
#top_topics .topics_left{
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
margin: 0 auto 5px;
flex-wrap: wrap;
gap: 20px;
}
.topics_flex{
    display: block;
}
.topics_box{
    gap:20px;
    padding-bottom: 15px;
    margin: 0 auto 15px;
    padding-right: 40px;
}
.topics_box::before {
    top: calc(52% - 7px);
}
.topics_box::after {
    top: calc(50% - 7px);
    width: 28px;
}
.topics_img{
width: 80px;
}
.topics_date{
font-size: 1.6rem;
margin: 0 0 5px 0;
gap:12px;
}
.topics_date span{
font-size: 1.4rem;
}
.topics_p{
font-size: 1.3rem;
}
.topics_p span{
font-size: 1.3rem;
margin: 0 10px 0 0;
}
    
#top_recruit{
    display: block;
    padding: 30px 20px;
}
#top_recruit .top_tit_en{
    margin-bottom: 5px;
}
.recruit_p{
    font-size: 1.3rem;
}
.recruit_btn {
  font-size: 1.6rem;
  padding-right: 28px!important;
}
.recruit_btn::after {
    width: 16px;
    top: 1px;
}

#top_contact{
    display: block;
    padding: 30px 20px;
}
#top_contact .top_tit_en{
margin-bottom: 5px;
}
.contact_p{
    font-size: 1.3rem;
}
.contact_btn {
font-size: 1.6rem;
padding-right: 38px;
}
.contact_btn::before {
    width: 8px;
    height: 8px;
    right: 1px;
    top: 56%;
}
.contact_btn::after {
        width: 28px;
}
#top_contact:hover .contact_btn::before {
    right: -6px;
}
#top_contact:hover .contact_btn::after {
    right: -8px;
}
    
#banner{
    padding: 30px 20px;
}


/*会社情報*/
#outline{
display: block;
margin-bottom: 45px;
}
h2 {
font-size: 2rem;
padding-top: 20px;
margin-bottom: 20px;
width: 100%;
display: block;
}
table.company_table {
    margin: 25px auto 0;
}
table.company_table th,td {
    display: block;
    width: 100%;
    font-size: 1.3rem;
}
table.company_table th {
    width: 100%;
    border-top: dotted 1px #b5b5b5;
    border-bottom: none;
    padding: 16px 0 6px 0;
}
table.company_table td {
    border: none;
    padding: 0px 0 13px 0;
    font-size: 1.3rem;
}  
table.company_table td.last {
    border-bottom: dotted 1px #b5b5b5;
}
.link_btn {
    padding-right: 24px;
}
.link_btn:after {
    top:4px;
    width: 12px;
    height: 12px;
    margin: 0px 5px;
}
#message{
display: block;
margin-bottom: 45px;
}
.message_img{
max-width: 250px;
width: 70%;
text-align: center;
margin: 0 auto;
}
.message_box{
margin-top: 20px;
}
.message_tit{
font-size: 1.8rem;
margin: 0 auto 5px;
}
.message_p{
font-size: 1.3rem;
margin: 0 auto 15px;
}
.message_name{
font-size: 1.8rem;
margin: 0 auto 8px;
}
.message_name span{
font-size: 1.1rem;
margin-right: 15px;
}
.message_caption{
font-size: 1.2rem;
}
#vision{
margin-bottom: 45px;
}
.vision_tit{
font-size: 2.6rem;
margin: 0 auto 12px;
line-height: 1.2;
}
.vision_p{
font-size: 2rem;
letter-spacing: 6px;
line-height: 1.6;
}
#history{
display: block;
margin-bottom: 45px;
}
table.history_table{
margin: 0 auto;
border-collapse: collapse;
border-spacing: 0;
}
table.history_table th,td {
    display: block;
    width: 100%;
    font-size: 1.3rem;
}
table.history_table th {
    width: 100%;
    border: none;
    padding: 0 0 6px 0;
}
table.history_table td {
    border: none;
    padding: 0px 0 13px 0;
    font-size: 1.3rem;
} 
#community{
display: block;
margin-bottom: 45px;
}
.community_box{
display: block;
margin-top: 20px;
}
.community_ul {
padding-left: 15px;
font-size: 1.3rem;
}
#access iframe{
height: 300px;
}
    
/*事業内容*/
#manufacturing{
margin-bottom: 45px;
}
.service_flex{
display: block;
margin-bottom: 35px;
padding-bottom: 35px;
}
.service_img{
display: block;
width: 100%!important;
max-width: 350px!important;
margin: 0 auto 20px;
aspect-ratio: 4 / 3;
}
.service_no{
font-size: 3rem;
margin: 0 auto 10px;
}
.service_flex h3{
font-size: 1.8rem;
margin: 0 auto 10px;
}
.service_list {
    margin: 0px auto 10px;
}
.service_list > li {
    font-size: 1.4rem;
}
.service_list > li span {
    font-size: 1.4rem;
}
.service_list > li::before {
    top: 13px;
}
.service_list > li + li {
    margin: 5px 0px 0px;
}
.service_catch{
font-size: 1.5rem;
}
.service_p{
font-size: 1.4rem;
margin: 0 auto 12px;
}
    
/*制作事例*/
#website{
margin-bottom: 45px;
}
#web_system{
margin-bottom: 45px;
}
#web_manual{
margin-bottom: 45px;
}
#users_manual{
margin-bottom: 45px;
}
.slick-list {
  margin: 0 -20px!important;
}
.slick-slide {
  margin: 0 20px;
}
.achievements_tit {
    margin: 0 auto 20px;
}
.arrow_box {
    gap: 10px;
}
.prev-arrow,
.next-arrow {
    width: 40px;
    height: 40px;
}
#achievements_detail h2{
margin: 22px auto;
}
.slick-dotted.slick-slider {
    margin-bottom: 20px!important;
}
#achievements_detail .ach_tit {
    font-size: 1.6rem;
    font-weight: bold;
    margin: -15px auto 20px;
}
.ach_url {
    font-size: 1.4rem;
    margin: -15px auto 20px;
}
.achievements_detail_p {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.dots-box {
    margin: 0 auto 20px;
}
.dots-wrap li {
    width: 40px;
    height: 3px;
    margin: 0 4px;
}
.achievements_btn_area {
    margin: 30px auto 0;
}
.ach_prev_btn a {
font-size: 1.5rem;
padding-left: 38px;
}
.ach_prev_btn a::before {
width: 8px;
height: 8px;
left: 1px;
top: 56%;
}
.ach_prev_btn a::after {
width: 28px;
}
.ach_prev_btn a:hover::before {
    left: -6px;
}
.ach_prev_btn a:hover::after {
    left: -8px;
}
.ach_next_btn a {
font-size: 1.5rem;
padding-right: 38px;
}
.ach_next_btn a::before {
width: 8px;
height: 8px;
right: 1px;
top: 56%;
}
.ach_next_btn a::after {
width: 28px;
}
.ach_next_btn a:hover::before {
    right: -6px;
}
.ach_next_btn a:hover::after {
    right: -8px;
}
.ach_back_btn a {
padding: 6px 40px;
font-size: 1.6rem;
}
    
/*お知らせ*/
#topics{
margin: 25px auto 0px;
}
#topics_detail{
margin: 25px auto 0px;
}
#topics_detail .topics_date span{
    font-size: 1.2rem;
    padding: 2px 3px;
}
#topics_detail .topics_p{
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.topics_detail_img {
    margin: 0 auto 20px;
}
    
#contact{
margin: 25px auto 0px;
}
.contact_flex{
    display: block;
}
.contact_link a {
    padding: 15px 70px;
  font-size: 1.6rem;
    min-width: 100px;
width: 100%;
max-width: 400px;
margin: 0 auto 10px;
}
.contact_link a::before,
.contact_link a::after {
    content: "";
    position: absolute;
    transition: all 0.2s ease-in;
}
.contact_link a::before {
width: 8px;
    height: 8px;
    right: 21px;
    top: 52%;
}
.contact_link a::after {
     width: 28px;
    right: 20px;
}
.contact_link a:hover::before {
    right: 15px;
}
.contact_link a:hover::after {
    right: 12px;
}
.contact_txt {
  font-size: 1.4rem;
    margin: 0 auto 25px;
}
#contact_form h2 {
        margin: 22px auto;
}   
table.contact_table td,
table.contact_table th{
	font-size:1.4rem;
}
table.contact_table td{
	margin-bottom: 25px;
}
table.contact_table th{
	margin-bottom: 5px;
    gap:10px;
}
textarea {overflow: auto;}
input, textarea, select {
padding: 8px 10px;
font-size: 1.3rem;
}
.sendbutton{
    max-width: 400px;
	margin:0px auto;
    gap:30px;
}
.contact_button{
    padding: 15px 35px;
    font-size: 1.5rem;
}
.hissu{
	font-size: 1.1rem;
}
.contact_thanks {
font-size: 2.5rem;
margin: 0 auto 20px;
letter-spacing: 2px;
}
.wpcf7-not-valid-tip {
    font-size: 1.1rem!important;
}
.form_small {
    font-size: 1.2rem!important;
	margin:4px 0px!important;
}
 
/*プライバシーポリシー*/
#privacypolicy{
margin: 25px auto 0px;
}
.policy_txt {
font-size: 1.4rem;
margin: 0 0 25px 0;
}
    
    
    
.anchor {
    padding-top: 60px!important; /* ヘッダーの高さを入力 */
    margin-top: -60px!important; /* ヘッダーの高さを入力 */
}   
.pc-only {
  display: none;
}	
.sp-only {
  display: block;
}
	
}

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}
