@charset "UTF-8";
/*
Theme Name: makasale2025_theme
Theme URL: oa-center.co.jp
Description: makasale2025のテーマです。
Author: OAkozue
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');

html {
  scroll-behavior: smooth;
	scroll-padding-top: 70.5px;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #2B3B4C;
  font-size: 16px;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: auto;
  background-color: #F0F2F2;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;               /* top:0; right:0; bottom:0; left:0; と同じ */
  width: 100vw;
  background-image: url("images/main_bg.png");
  background-size: cover; /* ここが効かないなら上書き確認を */
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;   /* 背景にタップを邪魔されないように */
	
}


/* 共通 */
.wrapper {overflow-x: hidden;}
.content {overflow-x: hidden;}

img {
  max-width: 100%;
  
}
picture {
  display: block;
}
a {
  transition: all 0.5s;
  text-decoration: none;
}
a:hover {}
a.link_l img, a.link_opa img {
  transition: all 0.5s;
}
a.link_l img:hover {
  transform: scale(1.1); /* 拡大 */
}
a.link_opa img:hover {
  opacity: 0.7;
}
div{
	text-align: justify;
}
section {
  padding: 100px 0;
}
section.sec-100 {
  padding: 0px 0 100px;
}
.t-lg{
	font-size: 120%;
}
.t-sm{
	font-size: 80%;
}
.t-center {
  text-align: center;
}
.t-left {
  text-align: left;
}
.t-right {
  text-align: right;
}
.t-blue{
	color: #0081CC;
}

.under{
	background: linear-gradient(transparent 60%, #FFE66B 60%);
}
.mt-6 {
  margin-top: 6rem;
}
.mb-5 {
  margin-bottom: 80px;
}
hr{
	margin: 2rem 0!important;
	color: #86B3E0!important;
}

h3{
	font-size: 36px;
	color: #0081CC;
	text-align: center;
	font-weight: bold;
	margin-bottom: 80px;
}
h4{
	line-height: 1.6;
}


/* フェードイン用のCSS */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition-property: transform, opacity;
  transition-duration: 1.5s;
  transition-delay: 0s;
}
.fadein_late {
  transition-delay: 0.5s !important;
}
.fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}
/* main */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  position: fixed;
  padding: 60px 0 20px;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease;
  z-index: 999;
}
.header.is-visible {
  transform: translateY(0); /* 表示 */
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1001;
  margin: 0 30px;
}
.logo {
  z-index: 999;
  width: 250px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3001; /* 念のため更に前面 */
}

.hamburger span {
  width: 30px;
  height: 2px;
  background: #fff; /* 青丸に映える白ライン */
  border-radius: 2px;
  transition: 0.3s ease;
}
/* ×マーク変化 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}



a.hmenu_con{
	background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
	color: #fff!important;
	border-radius: 50px;
	padding: 15px 40px;
}

nav#nav-menu{
	background: #fff;
	padding-left:40px;
	border-radius: 50px;
	box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

/* モバイルナビ（初期は非表示） */
#nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 990;
}
#nav-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#nav-menu a {
  font-size: 14px;
  color: #2B3B4C;
  text-decoration: none;
  transition: 0.3s;

}
#nav-menu a:hover {
  opacity: 0.7;
}
.sp_sns {
  display: none;
}
/* PC表示（768px以上） */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  #nav-menu {
    position: static;
    flex-direction: row;
    height: auto;
    width: auto;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    gap: 30px;
    background: none;
	  
  }
.nav-service {
  position: relative;
  display: inline-block;
}
	

/* サブメニュー */
.nav-sub {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  display: none;
  z-index: 999;
	
}

/* サブリンク */
.nav-sub a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}

/* hoverで表示 */
.nav-service:hover .nav-sub,
.nav-service:focus-within .nav-sub {
  display: block;
}

}




.mv {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.mv_copy img{
	max-height: 100vh;
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto; /* 横中央寄せ */
	padding: 250px 0 60px;
}



#top section.section01 {
	background: #fff;
	
}

h3.h3_onayami{
	background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
	text-align: center;
	padding: 10px;
	font-size: 48px;
	color: #fff;
	border-radius: 10px;
	margin-bottom: 80px;
}
.case_num{
	color: rgba(0, 129, 204, 0.6);
	font-size: 24px;
	font-weight: bold;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	margin-right: 20px;
}

.cace_mt{
	margin-top: 40px;
}
h4.h4_case_t{
	color: #0081CC;
	font-size: 24px;
	font-weight: bold;
}

.whi_box{
	background: #fff;
	border-radius: 20px;
	padding: 60px 80px;
	
}

#top section.section02 {
padding-top: 150px;
	
}

h3.h3_partner{
	text-align: center;
	color: #0081CC;
	margin-bottom: 60px;
}
.h3_partner_sub{
	text-align: center;
	background: #0081CC;
	color: #fff;
	padding: 5px 20px;
	border-radius: 30px;
	display: table;
	margin: -80px auto 30px;
	
}

.partner_title{
	position: relative;
}
.partner_titleimg01 img{
	position: absolute;
	top: -50px;
	left: 10%;
	height: 180px;
}
.partner_titleimg02 img{
	position: absolute;
	top: -50px;
	right: 10%;
	height: 180px;
}

.partner_t{
	color: #0081CC;
	font-size: 32px;
	font-weight: bold;
}
.partner_t i{
	color: #FFE66B;
	margin-right: 20px;
}

#top section.section03 {
background: #fff;
}

h3.h3_itsapo{
	text-align: center;
	font-weight: bold;
	font-size: 36px;
	margin-bottom: 40px;
	color: #2B3B4C;
}
h4.h4_itsapo{
	text-align: center;
	font-size: 24px;
	margin: 20px 0 60px;
	line-height: 1.8;
}
.itsapo_teian{
	text-align: center;
	background: #0081CC;
	color: #fff;
	padding: 10px 20px;
	border-radius: 30px;
	font-size: 20px;
}
.bg_blue{
	margin-top: 60px;
	background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
	padding: 40px 0;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	
}
.bg_blue .container{
	text-align: center;
}

h4.h4_makasaletoha{
	text-align: center;
	font-weight: normal;
	line-height: 1.8;
	margin-top: 60px;

}


#top section.section04 {
background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
}

h3.h3_jirei{
	color: #fff;
	text-align: center;
}

.jirei{
	display: flex;
	justify-content: center;
	background: #fff;
	border-radius: 20px;
	margin-top: 60px;
}
.jirei_img{
	width: 40%;

}
.jirei_img img{
	width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0 0 20px; /* 角丸を合わせる場合 */
}
.jirei_tbox{
	flex: 1;
	padding: 40px;
}
.jirei_name{
	font-weight: bold;
	margin: 20px 0;
	display: flex;
	align-items: center;
}


.jirei_name:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
}

.jirei_name:after {
    margin-left: 1rem;
}

#top section.section05 {
background: #fff;
}


h4.h4_service{
	color: #0081CC;
}
.h4_service_sub{
	font-weight: bold;
}
.cta{
	background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
	padding: 60px 20px;
	border-radius: 20px;
	margin-top: 80px;
	display: flex;
	justify-content: space-evenly;
align-items: center;
}
h4.h4_cta{
	color: #fff;
	font-size: 36px;
	line-height: 1.6;
}
.cta_tel a{
	font-size: 52px;
	font-weight: bold;
	color: #fff;
}
.cta_telsm{
	font-size: 32px;
}
.cta_text01{
	text-align: center;
	color: #fff;
	margin-bottom: -20px;
}
.cta_text02{
	text-align: center;
	color: #fff;
	margin-top: -10px;
	margin-bottom: 20px;
}

.ac {
  width: 100%;
  margin: 0 auto;
}
/* クリック領域 */
.ac-parent {
  position: relative; /* 追加 */
  padding: 20px 60px 20px 30px;
  background-color: #fff;
  cursor: pointer;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
	border-radius: 50px;
}
/* ①プラスの横線 */
.ac-parent:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 2px;
  background: #0081CC;
  transform: translateY(-50%);
}
/* ②プラスの縦線 */
.ac-parent:after {
  content: "";
  position: absolute;
  top: 50%;
  /* 8px+12px-1px(幅2pxの半分) */
  right: 29px;
  width: 2px;
  height: 20px;
  background: #0081CC;
  transform: translateY(-50%);
  transition: .1s;
}
/* ③オープン時にopenクラスを付与（縦線を回転させて非表示に） */
.ac-parent.open:after {
  top: 25%;
  opacity: 0;
  transform: rotate(90deg);
}
/* クリックしたら表示される領域 */
.ac-child {
  display: none;
  padding: 10px 20px 40px;
}



.greeting_bg{
	background: linear-gradient(90deg, transparent 0%, transparent 15%, #fff 15%, #fff 100%);
	padding: 80px 0;
}

.company_t{
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
}

.btn01 a {
    display: block;
    color: #fff;
    background: #0081CC;
    padding: 15px 30px;
    text-align: center;
    width: 100%;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    font-size: 15px;
	border: 1px solid #0081CC;
}
.btn01 a::after {
    position: absolute;
    content: "\f054";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    top: 50%;
    right: 20px;
    left: auto;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.btn01 a:hover{
	background: #fff;
	color: #0081CC;
	border: 1px solid #0081CC;
}

#top .section09 .btn01{
	margin: 60px 0;
}


table.tbl_com {
  border-collapse: collapse;
  width: 100%;
}

table.tbl_com tr th {
  color: #0081CC;
  width: 25%;
}

table.tbl_com tr td {
  padding: 20px 0;
}

table.tbl_com tr {
  border-bottom: 1px solid #86B3E0;
}
table.tbl_com tr:last-child {
  border-bottom: 0px;
}
table.tbl_add {
  border-collapse: collapse;
  width: 100%;
}
table.tbl_add tr th{
	color: #0081CC;
	width: 25%;
	padding-right: 20px;
	font-size: 14px;
	text-align:left;
}
table.tbl_add tr {

}
table.tbl_add tr td {
  padding: 5px 0;
	text-align:left;
}

#top section.section10 {
background: #fff;
	background-image: url("images/area_01.png");
	background-position: right;
	background-size: contain;
	background-repeat: no-repeat;
	padding-bottom: 200px;
}
#top section.section10 h3{
	text-align: left;
}




.con_form{
	padding: 80px 0;
}
.con_form_tr{
    display: flex;
border-bottom: 1px solid #B3D9F4;
}
.con_form_tr:last-child {
border-top: 0px;
}
.con_form_tr div{
    padding: 20px;
    margin: 5px 0;
}
.con_form_th{
    width: 30%;
    font-weight: bold;
}
.con_form_td{
    width: 70%;
}



.required{
    background: #0081CC;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 5px;
    float: right;
}
.con_form_td input,
.con_form_td textarea,
.con_form_td select{
    background: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    width: 100%;
	border: 1px solid #D9D9D9;
    
}
.privacy_check{
    text-align: center;
    margin-top: 40px;
    
    
}
.mwform-checkbox-field-text{
    font-size: 18px;
}
.btn_confirm{
    background-color: #0081CC;
  padding: 15px 20px;

  width: 300px;
  text-align: center;
  margin: 20px auto 0;
  border-radius: 50px;
  color: #fff;
  transition: 0.5s;
    display: block;
}

h3.h3_blog {
    position: relative;
z-index: 1;
	color: #265B95;
	margin-bottom: 80px!important;
}
h3.h3_blog::before {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    color: #CFE7F5;
    font-size: 120px;
    text-transform: uppercase;
    content: 'BLOG';
    z-index: -1;
}


/* ---------------------- 

下層ページ

 ---------------------- */

main#page,
main#p_404{
	margin-top: 100px;
}
#page section.title{
	padding-top: 0px;
}
.h2_pageen{
	font-family: "Oswald", sans-serif;
	font-weight: bold;
	font-size: 80px;
	color: transparent;
  -webkit-text-stroke: 1px #0081CC; /* ベンダープレフィックス */
  text-stroke: 1px #0081CC;
}
h2.h2_page{
	font-size: 30px;
	font-weight: bold;
	color: #0081CC;
	margin-bottom: 30px;
}
.h2_pagesub{
	font-weight: bold;

}
.page_title .btn01{
	width: 50%;
}



/* PC・ネットワーク構築支援*/
#page section.sec_net01 {
}
#page h3{
	margin-bottom: 60px;
}
.h3_sub{
	font-size: 18px;
	text-align: center;
}

.network_ser{
	display: flex;
	justify-content: center;
	    align-items: center;
	margin-top: 40px;
	flex-wrap: wrap;
	
}
.network_ser_con{
	border-right: 1px solid #BBDCF4;
	display: flex;
	justify-content: center;
	    align-items: center;
	padding: 0 20px;
	margin-top: 40px;
}

.network_ser_i{
display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
  text-align:center;
  line-height: 100px;
	color: #fff;
	font-size: 40px;
	margin-right: 20px;
	}

.network_ser_t{
	
}
.network_ser_con h4{
	font-size: 24px;
	font-weight: bold;
	color: #125D99;
}

#page .whi_box{
	background: #fff;
	border-radius: 20px;
	padding: 60px;
	
}
#page section.sec_net02 {
background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
	position: relative;
}

h3.h3_sec_net02{
	color: #fff;
}
h3.h3_sec_net02 span{
	font-size: 150%;
}
.network_onayami{
	background: #fff;
	padding: 20px;
	text-align: center;
	color: #265B95;
	font-size: 24px;
	font-weight: bold;
	border-radius: 20px;
	height: 100%;
	display: flex;
  align-items: center;      /* 縦中央 */
  justify-content: center;  /* 横中央 */
}
.onayami_img{
	position: absolute;
	bottom: 0;
	right: 0;
	width: 300px;
}

.sec_net03_bg {
    background: linear-gradient(90deg, transparent 0%, transparent 15%, #fff 15%, #fff 100%);
    padding: 80px 0;
}
h3.h3_sec_net03{
	text-align: left;
}
h4.h4_sec_net03{
	font-size: 24px;
	color: #0081CC;
}
h4.h4_sec_net03 i{
	font-size: 36px;
	color: #FFD000;
	margin-right: 5px;
}
.network_dekiru{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.network_dekiru div{
	width: 50%;
	margin-top: 20px;

}
.network_dekiru div:nth-child(1),
.network_dekiru div:nth-child(3){
	padding-right: 30px;
}
.network_dekiru div:nth-child(2),
.network_dekiru div:nth-child(4){
	padding-left: 30px;
}
.dekiru_img{
	margin-top: -40%;
}

#page section.sec_net04{
	background: linear-gradient(#fff 0%, #fff 50%, #E8F4FC 50%, #E8F4FC 100%);
}
h4.h4_sec_net04{
	font-size: 24px;
	color: #0081CC;
	text-align: center;
	margin-bottom: 10px;
}
.network_merit{
	text-align: center;
	margin-bottom: 20px;
}
.network_merit img{
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
}


.network_jirei{
	background: #fff;
	border-radius: 20px;
}
.network_jirei_img img{
	border-radius: 20px 20px 0 0;
}
.network_jirei_inner{
	padding: 30px;
}
.network_jirei_t{
	font-size: 20px;
	font-weight: bold;
}
.network_jirei_li01{
	color: #CC008B;
	font-size: 14px;
	border: 1px solid #CC008B;
	border-radius: 3px;
	width: 80px;
	text-align: center;
	margin-right: 10px;
	align-self: flex-start;
	flex-shrink: 0;
	font-weight: bold;
}
.network_jirei_li02{
	color: #0081CC;
	font-size: 14px;
	border: 1px solid #0081CC;
	border-radius: 3px;
	width: 80px;
	text-align: center;
	margin-right: 10px;
	align-self: flex-start;
	flex-shrink: 0;
	font-weight: bold;
}
.network_jirei_li03{
	color: #66BDAA;
	font-size: 14px;
	border: 1px solid #66BDAA;
	border-radius: 3px;
	width: 80px;
	text-align: center;
	margin-right: 10px;
	align-self: flex-start;
	flex-shrink: 0;
	font-weight: bold;
}

#page section.sec_net06{
	background: #fff;
}
.flow_steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
}

.flow_step {
  position: relative;
}

/* 丸の中央から次の丸へ線を引く */
.flow_step::before {
  content: "";
  position: absolute;
  top: 40px; /* circleの中央 */
  left: 50%;
  width: 100%;
  height: 2px;
  background: #8BB6E5;
  z-index: -1;
}

/* 最後（5）の右側の線を消す */
.flow_step:last-child::before {
  display: none;
}

.flow_step {
  width: 20%;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.flow_circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: #8BB6E5;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow_step_icon{
	text-align: center;
}
.flow_step_icon i {
color: #0081CC;
	font-size: 64px;
	
}


.flow_step h3 {
  font-size: 16px;
  color: #0074C8;
	margin-top: 20px;
  margin-bottom: 20px!important;
  font-weight: bold;
}

.flow_step p {

}


/* ITトラブル*/
#page section.sec_itt01 {
	background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
	position: relative;
}

h3.h3_itt_pro {
    position: relative;
z-index: 1;
	color: #fff;
}
h3.h3_itt_pro::before {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(255, 255, 255,0.3);
    font-size: 90px;
    text-transform: uppercase;
    content: 'PROBLEM';
    z-index: -1;
}

.itt_pro_box{
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	font-size: 14px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.itt_pro_box_t{
	font-size: 20px;
	color: #265B95;
	font-weight: bold;
	text-align: center;
	min-height: 80px; /* ここで高さを揃える */
	display: flex;
	align-items: center;
	justify-content: center;
}
.itt_pro_box div{
	text-align: center;
}

.itt_pro_copy{
	font-size: 24px;
	text-align: center;
	color: #FFF;
	font-weight: bold;
	margin-top: 60px;
}
.itt_pro_copy2{
	position: absolute;
	bottom: -30px;
	background: #fff;
	padding: 0 20px;
	text-align: center;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	color: #265B95;
	font-weight: bold;
	font-size: 30px;
width: 90%;
	
}
.itt_pro_copy2 span{
	color: #0081CC;
	font-size: 46px;
}

.itt_tokucho_num{
	position: relative;
	color: rgb(117, 175, 205,0.3);
	font-size: 120px;
	font-family: "Oswald", sans-serif;
    font-weight: bold;
}

.itt_tokucho_num div{
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	font-size: 36px;
	color: #0081CC;
}

.itt_melit{
	background: #fff;
	border-radius: 20px;
}
.itt_melit_inner{
	padding: 30px;
	text-align: center;
}
.itt_melit_t{
	font-size: 20px;
	font-weight: bold;
	color: #0081CC;
	text-align: center;
	margin-bottom: 20px;
}




#page section.sec_itt04 {
background: #fff;
}


.flow_title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #0A6EB1;
  margin-bottom: 60px;
}

.flow_list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.flow_item {
  width: 220px;
  text-align: center;
}

.flow_icon {
	text-align: center;
  margin: 0 auto 20px;
}

.flow_icon i{
	color: #75AFCD;
	font-size: 128px;
}


.flow_item h3 {
  font-size: 18px;
  font-weight: bold;
  color: #0A6EB1;
  margin-bottom: 20px!important;
}

.flow_item p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.flow_line {
  width: 60px;
  height: 2px;
  background: #9EC3DA;
  margin-top: 60px;
}


.itt_jirei_box{
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	border: 1px solid #0081CC;
	display: flex;
}

.itt_jirei_img{
	margin-right: 20px;
	width: auto;
	position: relative;
}
.itt_jirei_img img{
	
}
.itt_jirei_box h4{
	color: #0081CC;
	margin-bottom: 0;
}
.itt_jirei_com{
	font-weight: bold;
	margin-bottom: 20px;
}
.itt_jirei_imgcat{
	position: absolute;
	top: 0;
	background: #0081CC;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	padding: 0 10px;
}

/* バックアップ・復旧支援*/
#page section.sec_backup01 {
	background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
}

section.sec_backup01 h3.h3_backuponayami{
	color: #fff;
}
section.sec_backup01 h3.h3_backuponayami span{
	font-size: 64px;
}
.backup_onayami{
	background: #fff;
    padding: 30px 20px;
    text-align: center;
    color: #265B95;
    font-size: 20px;
    font-weight: bold;
    border-radius: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backup_onayami_inner{
	position: relative;
	padding-bottom: 80px;
}
.backup_onayami_img{
	position: absolute;
	bottom: 0;
	width: 350px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	
}
.backup_onayami_copy1{
	color: #fff;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	margin-top: 40px;
}
.backup_onayami_copy2{
	color: #fff;
	text-align: center;
	font-size: 48px;
	font-weight: bold;
}
.backup_onayami_copy2 span{
	font-size: 30px;
}


.backup_anshin_copy1{
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 80px;
}
.backup_anshin_li{
	background: #fff;
	padding: 5px 20px;
	font-weight: bold;
	color: #0081CC;
	font-size: 24px;
	margin-bottom: 10px;
	display: flex;
}
.backup_anshin_li i{
	color: #FFD000;
	font-size: 36px;
	margin-right: 10px;
}
.backup_anshin_copy2{
	text-align: center;
	font-weight: bold;
	font-size: 32px;
	color: #0081CC;
	margin: 80px 0 20px;
}

#page section.sec_backup03 {
	background: linear-gradient(#fff 0%, #fff 50%, #E8F4FC 50%, #E8F4FC 100%);
}

h4.h4_backup_anshin{
	text-align: center;
	font-size: 24px;
	color: #0081CC;
	min-height: 80px;
}

.backup_plan_copy{
	font-weight: bold;
	text-align: center;
	font-size: 20px;
}

.backup_plan_box{
	background: #fff;
	padding: 60px 20px 30px;
	border-radius: 20px;
	margin-top: 80px;
}

h4.h4_backup_plan01{
	background: #125D99;
	color: #fff;
	width: 80%;
	padding: 10px;
	border-radius: 40px;
	text-align: center;
	margin: -100px auto 10px;
}
h4.h4_backup_plan02{
	background: #ED9248;
	color: #fff;
	width: 80%;
	padding: 10px;
	border-radius: 40px;
	text-align: center;
	margin: -100px auto 10px;
}
.plan_price{
	font-size: 24px;
	font-weight: bold;
	margin: 20px 0;
	text-align: center;
}
.plan_price span{
	font-size: 200%;
	color: #10075E;
}
.plan_th{
	background: #EEF0EE;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}


.plan_tr{
	display: flex;
	padding: 10px;
	border-bottom: 1px solid #DCDDDD;
	justify-content: space-between;
	font-size: 20px;
}
.plan_tr .plan_td:first-child{
	font-weight: bold;
}
.plan_td{
	
}
.plan_td span{
	font-size: 80%;
}


.backup_plan_box .plan_tr:nth-child(3),
.backup_plan_box .plan_tr:last-child{
	border-bottom: 0px;
}

.backup_plan_copy2{
	font-weight: bold;
	text-align: center;
	font-size: 24px;
	margin: 40px 0 0;
}

#page section.sec_backup05 {
	background: #fff;
}

.backup_suport{
	background: #DEE7F5;
	padding: 5px 20px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	border-radius: 27px;
	margin-bottom: 20px;
}

.backup_suport_copy{
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	margin-top: 60px;
}
.backup_suport_copy2{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
}

.backup_jirei_copy{
	font-size: 48px;
	font-weight: bold;
	margin-top: 60px;
	color: #0081CC;
	text-align: center;
}
.backup_jirei_copy span{
	font-size: 60%;
}
#page section.sec_backup07 {
	background: #fff;
	padding-bottom: 50px;
}
h3.h3_backup_cta {
    position: relative;
z-index: 1;
	color: #265B95;
	margin-bottom: 80px!important;
}
h3.h3_backup_cta::before {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    color: #CFE7F5;
    font-size: 120px;
    text-transform: uppercase;
    content: 'CONTACT';
    z-index: -1;
}

.backup_cta_copy{
	font-size: 20px;
	text-align: center;
}

.sec_backup07_cta{
	background: linear-gradient(#fff 0%, #fff 50%, transparent 50%, transparent 100%);
	margin-bottom: 100px;
}
.sec_backup07_cta .cta{
	margin-top: 0px;
}








/* まかせーるBLOG*/

.blog_wbox{
	background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	height: 100%;
}
.blog_wbox .blog_thum img{
	border-radius: 20px 20px 0 0;
	aspect-ratio: 16 / 9;
    object-fit: cover;
	width: 100%!important;
	height: auto!important;
}
.blog_wbox .blog_post{
	padding: 20px;
	
}
.blog_wbox .blog_data{
	display: flex;
    justify-content: space-between;
	color: #2B3B4C;
	margin-bottom: 10px;
}
.blog_wbox .cat_name {
    background-color: #0081CC;
    color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin-left: 20px;
    display: inline-block;
    margin-top: 0px;
    vertical-align: middle;
}

section.sec_blog01 .blog_mt,
section.section_blog .blog_mt{
	margin-top: 20px;
}

h3.post_title{
	font-size: 20px;
	text-align: left;
	margin-bottom: 10px!important;
}

.post_img img{
	width: 100%!important;
	height: auto!important;
	aspect-ratio: 16 / 9;
    object-fit: cover;
}
.blog_wbox .post_p{
	color: #2B3B4C;
	font-size: 14px;
	margin-bottom: 0;
}

.side{
background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
	padding: 30px 20px;
	border-radius: 20px;
	
}
.side h4{
	font-size: 16px;
	background: #0081CC;
	color: #fff;
	padding: 5px;
	text-align: center;
	border-radius: 20px;
	margin-bottom: 20px;
}

.new_post .new_post_thum img {
    border: 1px solid #86B3E0;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
	width: 100%!important;
	height: auto!important;
}
.new_post{
	margin-bottom: 40px;
}
.new_post a{
	color: #2B3B4C;
	font-size: 14px;
	margin-bottom: 20px;
    display: block;
}
.new_post .new_post_data{
	margin-top: 5px;
}

.side ul.li_cat li{
	
}
ul.li_cat, ul.li_archive {
    margin-bottom: 40px;
    list-style: none;
	padding-left: 0;
}
ul.li_cat li a, ul.li_archive li a {
    padding: 10px;
    border-bottom: 1px solid #86B3E0;
    color: #2B3B4C;
    display: block;
	font-size: 14px;
}

ul.side_tag_ul{
	margin: 40px 0 0 0;
	padding: 0;
	display: flex;
	flex-wrap:wrap;
}
ul.side_tag_ul li.side_tag_li{
	list-style:none;
}
ul.side_tag_ul li.side_tag_li a{
		font-size: 14px;
	padding: 3px 10px;
	border-radius: 15px;
	    background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
    color: #fff;
	margin-right: 5px;
	margin-top: 5px;
	    display: inline-block;
}

section.sec_single01{
	margin-top: -60px;
}

.single_box{
	background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
	padding: 40px 30px;
	border-radius: 20px;
	margin-top: 20px;
}
.single_box h3{
	text-align: left;
	margin-bottom: 20px!important;
	margin-top: 40px;
	font-weight: inherit;
	font-size: 24px;
	background: #fff;
	border-radius: 10px;
	padding: 10px 20px;
}
.single_box #toc_container{
	margin: 2em 0;
	padding: 20px;
}
section.blog_title ul.tag_ul{
	display: flex;
	margin: 10px 0 0 0;
	padding: 0;
}
section.blog_title ul.tag_ul li.tag_li{
	list-style:none;
}
section.blog_title ul.tag_ul li.tag_li a{
	font-size: 14px;
	padding: 3px 10px;
	border-radius: 15px;
	    background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
    color: #fff;
	margin-right: 5px;
	display: inline-block;
}



/* トップへ戻るボタン */
.topbtn {
  display: none;
  /*最初は隠す*/
  width: 70px;
  height: 70px;
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 888;
}
.topbtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
  background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
  -webkit-tap-highlight-color: transparent; /* iOSタップ時の青い枠を消す */
}

/* PCだけ hover 有効 */
@media (hover: hover) and (pointer: fine) {
  .topbtn a:hover {
    background-image: linear-gradient(135deg, #fff, #fff);
	  border: 2px solid #86b3e0;
    color: #86b3e0;
  }
}

/* スマホではタップ中だけ白 */
.topbtn a:active {
  background-color: #fff;
  color: #c69c6d;
}

footer {
  padding: 40px 0 40px;
}
footer a:hover{
	transition: 0.3s;
	opacity: 0.7;
}

.f_logo {
  width: 150px;
      margin-top: -50px;
}
ul.f_nav {
  display: flex;
  justify-content: center;
	padding-left: 0;
}
ul.f_nav li {
  list-style: none;
}
ul.f_nav li a {
  list-style: none;
  padding: 0 20px;
	color: #fff;
}
ul.f_nav li + li {
  border-left: 1px solid #fff;
}


.copyright{
	text-align: center;
	font-size: 12px;
	
}
.pcnone {
  display: none;
}
.spnone{
		display: block;
	}
@media (max-width: 1599.98px) {
	

}
@media (max-width: 1399.98px) {
	.itt_pro_copy2{
		    font-size: 26px;
	}
	.itt_pro_copy2 span{
		font-size: 32px;
	}
	.itsapo_teian{
		font-size: 16px;
	}
	
}
@media (max-width: 1300.98px) {

	
}
@media (max-width: 1199.98px) {
	#nav-menu{
		gap: 12px; 
	}
    #nav-menu a {
        font-size: 14px;
    }
	nav#nav-menu{
		padding-left: 20px;
	}
	a.hmenu_con{
		padding: 15px 20px;
	}
	h3.h3_onayami{
		font-size: 32px;
	}

	h4.h4_cta{
		font-size: 26px;
	}
	.cta_tel a{
		font-size: 40px;
	}
	.cta_telsm{
		font-size: 24px;
	}
	
	
	.partner_titleimg01 img{
		    left: 3%;
		height: 150px;
	}
	.partner_titleimg02 img{
		right: 3%;
		height: 150px;
	}
	.partner_t{
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	
}
@media (max-width: 991.98px) {
	.logo {
    width: 150px;
}
	
	#nav-menu a {
        font-size: 12px;
    }
	nav#nav-menu{
		padding-left: 20px;
	}
	a.hmenu_con{
		padding: 15px 20px;
	}
	.mv_copy img{
		padding: 150px 0 60px;
	}

	.itsapo_teian{
		font-size: 20px;
		margin-bottom: 10px;
	}
	.makasaletoha_logo{
		width: 50%;
		margin: 0 auto;
	}
	.makasaletoha_t{
		margin-top: 20px;
		text-align: center;
	}
	

	.partner_titleimg01 img{
		    left: -5%;
		height: 120px;
	}
	.partner_titleimg02 img{
		right: -5%;
		height: 120px;
	}
		.jirei{
		display: block;
	}
	.jirei_img{
		width: 100%;
	}
	.jirei_img img{
		border-radius: 20px 20px 0 0;
	}
	.jirei_tbox{
		padding: 30px;
	}
	.service_i{
		text-align: center;
	}
	h4.h4_service{
		text-align: center;
		margin-bottom: 20px;
	}
	.network_ser_con{
		border-right: 0px;
		    padding: 0px;
		border-bottom: 1px solid #BBDCF4;
		width: 100%;
		padding-bottom: 20px;
		margin-top: 20px;
		justify-content: flex-start;
	}
	
	

}
@media (max-width: 767.98px) {
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
	--bs-gutter-x: 2.5rem;
	}
	  .pcnone {
    display: block;
  }
	.spnone{
		display: none;
	}
  body.no-scroll {
    overflow: hidden;
  }
	.header{
		padding: 30px 0 20px;
	}
  .hamburger {
    display: flex;
	  position: absolute;
	  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	  width: auto;
  }
	nav#nav-menu{
		border-radius: 0;
		padding-left: 0px;
	}
	#nav-menu{
		gap: 20px;
	}
	#nav-menu a{
		font-size: 18px;
	}
	a.hmenu_con{
		padding: 15px 30px;
	}
	
.h_menu {
  position: fixed; /* 右上に固定配置 */
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-image: linear-gradient(135deg, #b3d9f4, #86b3e0);
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000; /* nav-menu より前面にする */
}
	
	.mt-6{
		margin-top: 3rem;
	}	
	h3{
	font-size: 26px;
}

	main#page, main#p_404 {
    margin-top: 40px;
}
	
	.mv_copy img{
		padding: 140px 0 60px;
	}
	
	h3.h3_onayami{
		font-size: 22px;
		margin-bottom: 40px;
	}

	h4.h4_case_t{
		font-size: 22px;
	}
	.case_num{
		font-size: 16px;
	}
  .cace_mt{
	margin-top: 10px;
}
	.cace_mt .t-lg{
		font-size: 16px;
	}
	.h3_partner_sub{
		margin: -40px auto 30px;
	}
	h3.h3_partner{
		font-size: 22px;
		
	}
	.partner_titleimg01 img{
		    left: -5%;
		height: 100px;
	}
	.partner_titleimg02 img{
		right: -5%;
		height: 100px;
	}
	.whi_box{
		padding: 20px;
	}
	
	.partner_t{
		font-size: 20px;
	}
	h3.h3_itsapo{
		font-size: 24px;
	}
	.section03 .t-lg{
		font-size: 16px;
	}

	.service_i{
		width: 50%;
		margin: 0 auto;
	}
	h4.h4_service{
	margin-bottom: 10px;
	}
	.h4_service_sub{
	text-align: center;
		margin-bottom: 20px;
}
	.cta{
		display: block;
		padding: 30px 20px;
	}
	h4.h4_cta{
		text-align: center;
	}
	.cta_tel{
		text-align: center;
	}
	
.plan_img {
    overflow-x: auto;   /* 横スクロール有効化 */
    -webkit-overflow-scrolling: touch; /* iOSで慣性スクロール */
    white-space: nowrap; /* 折り返さず横に並べる */
	position: relative;
  }

  .plan_img img {
    display: inline-block; /* インライン要素にする */
    max-width: none;       /* デフォルトの100%制御を外す */
    width: 1000px;         /* スクロールしたい横幅を指定 */
  }


  .scroll_icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
    color: #666;
    background: rgba(255,255,255,0.7);
    padding: 5px 8px;
    border-radius: 20px;
    opacity: 0;
    animation: showhint 4s forwards;
  }
	.ac-parent{
		font-size: 16px;
	}
	
	.greeting_bg{
		background: #fff;
	}
	table.tbl_add tr th{
		display: block;
		width: 100%;
		        margin-top: 5px;
	}
	table.tbl_add tr td{
		display: block;
		width: 100%;
	}
	#top section.section10{
		background-size: cover;
		background-position: right 50% bottom 5%;
	}
	.con_form_tr{
        display: block;
        
    }
    .con_form_th,
    .con_form_td{
        width: 100%;
    }
    .con_form_tr div{
        padding: 10px 20px;
        margin: 3px;
    }
	
	/* PC・ネットワーク構築支援*/
	
	.page_title_main{
		margin: 0 auto 10px;
		width: 70%;
	}
	main#page .h2_pagesub{
		text-align: center;
	}
	main#page h2.h2_page{
		font-size: 24px;
		margin-bottom: 20px;
		text-align: center;
	}
	.page_title .btn01{
		width: 100%;
	}
	#page .whi_box{
		padding: 30px 20px;
	}
	#page h3{
		margin-bottom: 40px;
	}
	.h3_sub{
		font-size: 14px;
	}
	

	.network_ser_i{
		width: 60px;
		height: 60px;
		line-height: 60px;
    font-size: 20px;
	}
	.network_ser_con h4{
		font-size: 18px;
	}
	.network_onayami{
		font-size: 18px;
	}
	.onayami_img{
		position: inherit;
		margin-top: 30px;
		width: 100%;
	}
	.dekiru_img{
		margin-top: -10%;
		width: 70%;
	}
	.network_dekiru{
		display: block;
	}
	.network_dekiru div{
		width: 100%;
	}
	.network_dekiru div:nth-child(1), .network_dekiru div:nth-child(3){
		padding-right: 0px;
	}
	.network_dekiru div:nth-child(2), .network_dekiru div:nth-child(4),
	.network_dekiru div:nth-child(1), .network_dekiru div:nth-child(3){
    padding-left: 20%;
}
	h4.h4_sec_net03{
		font-size: 18px;
	}
	
	.network_merit{
		margin-top: 40px;
		margin-bottom: 10px;
	}
	.network_jirei{
		margin-top: 20px;
		font-size: 14px;
	}
	.flow_steps{
		display: block;
	}
	.flow_step{
		width: 100%;
	}
	.flow_step::before{
		display: none;
	}
	.flow_circle{
		width: 60px;
		height: 60px;
		    margin: 40px auto 10px;
	}
	
	/* バックアップ・復旧支援*/
	section.sec_backup01 h3.h3_backuponayami{
		font-size: 20px;
	}
	section.sec_backup01 h3.h3_backuponayami span{
		font-size: 30px;
	}
	.backup_onayami{
		font-size: 18px;
	}
	.backup_onayami_img{
		position: inherit;
		margin-top: 30px;
	}
	.backup_onayami_inner{
		padding-bottom: 40px;
	}
	.backup_onayami_copy1,
	.backup_onayami_copy2 span{
		font-size: 20px;
	}
	.backup_onayami_copy2{
		font-size: 30px;
	}
	.backup_anshin_copy1{
		font-size: 18px;
		margin-bottom: 40px;
	}
	.backup_anshin_li{
		font-size: 16px;
		margin-bottom: 0;
		margin-top: 10px;
	}
	.backup_anshin_copy2{
		font-size: 20px;
		margin: 40px auto 20px;
	}
	h4.h4_backup_anshin{
		min-height: inherit;
	}
	.backup_plan_copy{
		font-size: 18px;
	}
	.backup_plan_copy2{
		font-size: 20px;
	}
	.backup_suport{
		font-size: 18px;
	}
	.backup_suport_copy{
		font-size: 22px;
		    margin-top: 40px;
	}
	.backup_jirei_copy{
		font-size: 24px;
	}
	h3.h3_backup_cta{
		font-size: 24px;
		margin-bottom: 60px!important;
	}
	h3.h3_backup_cta::before{
		    font-size: 80px;
		top: -40px;
	}
	.backup_cta_copy{
		font-size: 16px;
	}
	
	
	/* 急なITトラブル*/
	h3.h3_itt_pro::before{
		font-size: 70px;
		top: -30px;
	}
	.itt_pro_copy{
		font-size: 16px;
		margin-top: 20px;
		margin-bottom: 40px;
	}
	.itt_pro_copy2{
		font-size: 18px;
		bottom: -20px;
		line-height: 1.6;
		padding: 10px 0;
	}
	.itt_pro_copy2 span{
		font-size: 24px;
		display: block;
		
	}
	.itt_tokucho_num{
		font-size: 60px;
	}
	.itt_tokucho_num div{
		font-size: 20px;
	}
	.itt_melit{
		margin-top: 20px;
	}
	.itt_melit_inner{
		padding: 20px;
	}
	.flow_list{
		display: block;
	}
	.flow_item{
		width: 100%;
	}
	.flow_line{
		width: 2px;
    height: 40px;
    margin: 10px auto;
	}
	
	
	
	
	
	.itt_jirei_box{
		display: block;
	}
	.itt_jirei_img{
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	
	/* まかせーるBLOG*/
	main#blog {
	
	}
	.post_img{
		margin-top: 20px;
	}
	.side{
		margin-top: 40px;
	}	
	
}

@keyframes showhint {
  0% {
    opacity: 1;
  }
		70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
	
	
}

/* PCで電話番号リンクを無効に */

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

@media (max-width: 575.98px) {


  div{
	text-align: justify;
}
	
	section{
		padding: 60px 0;
	}
	section.sec-100{
		padding: 0px 0 60px;
	}
	
	    h3.h3_itsapo {
        font-size: 20px;
    }
	h4.h4_itsapo{
		font-size: 18px;
	}
	.itsapo_teian{
		font-size: 18px;
	}
	.bg_blue{
		font-size: 18px;
		padding: 40px 20px;
	}
	.bg_blue .container{
	text-align: justify;
}
	.cta_tel a{
		font-size: 34px;
		margin-top: 10px;
		display: block;
	}
	.cta_telsm{
		font-size: 18px;
	}
	table.tbl_com tr th{
		display: block;
		width: 100%;
		        margin-top: 20px;
	}
	table.tbl_com tr td{
		display: block;
	}
	
	    #top section.section10 {
        background-size: contain;
        background-position: right -90px bottom 0%;
    }


}

@media (max-width: 438.98px) {
	


}