@charset "UTF-8";

/* INDEX ---------------------
  - common setting
  - header
  - main
  - contents
  - footer
--------------------- */

@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

/* =========================
  common setting
========================= */
html {
  font-size: 62.5%;
}

body {
  background-color: #FFFFFF;
  color: #2C2C2C;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
img {
  width: auto;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast; /* for Chrome */
}
em {
  font-style:normal;
}
.spOnly {
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 1582px) {
  html{
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 1024px) {
	body {
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;	
	}	
}
@media screen and (max-width: 767px) {
  .pcOnly {
    display: none !important;
  }
  .spOnly {
    display: block !important;
  }
}
/*--- color ---*/
.fc_blu {color: #1565C0;}
.fc_org {color: #ff6a4d;}
.fc_ylw { color: #F7FF06; }

/*--- emphasys ---*/
.txt_center{
	text-align:center;
}
.txt_highlight {
    background: linear-gradient(transparent 60%, #fff606 60% 90%, transparent 90%);
    font-weight: bold;
}
.txt_dots {
  -webkit-text-emphasis: filled dot;
  text-emphasis: filled dot;
}
/*--- size ---*/
.mbtm_10px{
	margin-bottom: 10px;
}
/*--- size ---*/
.fz_xs {font-size: 1rem !important;}
.fz_s {font-size: 2rem !important;}
.fz_m {font-size: 2rem !important;}
.fz_l {font-size: 2.5rem !important;}
.fz_xl {font-size: 5rem !important;}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  .fz_xs { font-size: 1.1rem !important; }
  .fz_s { font-size: 1.1rem !important; }
  .fz_m { font-size: 1.4rem !important; }
  .fz_l {font-size: 20px !important;}
  .fz_xl { font-size: 2.6rem !important; }
}
/*---  button---*/
.btn {
  background-color: #FFFFFF;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
}
.btn a {
    border-radius: 30px;
    display: block;
    padding: 4.5% 26px 4.5%;
    font-size: 16px;
}
.btn_white {
    color: #fff;
    background: linear-gradient(123deg, #7ed4ff, #64c0ff);
}
.btn_gradient a {
  background: -moz-linear-gradient(left, #ffb14b, #ff6070);
  background: -webkit-linear-gradient(left, #ffb14b, #ff6070);
  background: linear-gradient(to right, #ffb14b, #ff6070);
  border-radius: 30px;
  color: #FFFFFF;
  opacity: 1;
}
.btn_gradient a:hover {
  opacity: 0.85;
}
@media screen and (min-width: 768px) {
.btn {
    /* font-size: 1.5rem; */
    min-width: 25%;
}
}
@media screen and (max-width: 767px) {
  .btn a {
    border-radius: 30px;
    display: block;
    padding: 5px 12px;
  }
}
/* =========================
  header
========================= */
header {
    background-color: #FFFFFF;
    box-shadow: 7px 7px 10px rgb(0 0 0 / 11%);
    width: 100%;
    border-bottom: 2px solid #ff6a4d;
}
header.clone {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
.headerInner {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0.5% 0 0.5%;
}
.headerTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}
.headerTop h1.logo {
    width: 17%;
}
/*--- grobalNav ---*/
.grobalNav {
  margin-top: 0;
}
  .headerNav {
	width:65%;
  }
.grobalNav li:last-child{
	width:30%;
	border-left:none;
}
.grobalNav li:last-child a{
	    color: white;
    line-height: 5rem;
    margin-left: 10%;
    padding: 0 16%;
    background: -moz-linear-gradient(left, #ffb14b, #ff6070);
    background: -webkit-linear-gradient(left, #ffb14b, #ff6070);
    background: linear-gradient(to right, #ffb14b, #ff6070);
    color: #FFFFFF;
    opacity: 1;
}
.grobalNav li:last-child a:hover{
	color:white;
	background: #1565C0;
}
.grobalNav li a{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.grobalNav li a:hover{
	color:#ff7257;
}
@media screen and (min-width: 768px) {
  .headerInner {
    padding-left: 30px;
    padding-right: 30px;
  }
.grobalNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.grobalNav li {
    border-left: 1px solid #DFDFDF;
    padding: 0;
    width: calc(100% / 6);
  }
.grobalNav li a {
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #404040;
	display: block;
}
}
@media screen and (max-width: 1300px) {
  .headerNav {
	width:80%;
  }
}
@media screen and (max-width: 1100px) {
    .grobalNav li a {
	font-size:14px;
}
}
@media screen and (max-width: 930px) {	
	.grobalNav li a span{
		display:block;
	}
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
	top: 0;
	left: 0;
    z-index: 5;
  }
  .headerInner {
    padding:0 0 0 26px;
  }
  .headerTop {
    position: relative;
  }
  .headerTop .btn a {
    padding: 2px 12px;
    font-size: 14px;
  }
  .headerNav {
	display: none;
  }
  .headerNav .btn a {
    background: linear-gradient(to left, #ffb14b, #ff6070);
    font-size: 1.2rem;
    margin-top: 26px;
    padding: 10px 0;
    width: 100%;
  }
 .grobalNav {
    font-size: 16px;
}
  .grobalNav li:not(:last-child) {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 640px){
 .headerTop h1.logo {
  width: 40%;
}
}
/*------------------------*/
/*  トップ画像/*
/*------------------------*/
.mv {
    background: url(../../morido/images/mv_01_pc02_2.jpg) no-repeat top center / cover;
    position: relative;
    padding: 10% 0 10%;
}
.mvInner {
  max-width: 1582px;
  margin: 0 auto;
}
.mvTxt_main {
    font-size: 9rem;
    line-height: 1.2;
    text-shadow: 3px 3px 4px rgb(19 4 4 / 85%);
    font-family: ヒラギノ角ゴシック, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    letter-spacing: 0.07em;
	color:white;
}
.mvTxt_main span{
	color:#C4E1FF;
}
/*トップ画像吹き出し　危険の伴う、盛土調査はドローンにお任せ！*/
.mvTxt_1sub {
    background-color: #ff6a4d;
    color: #fffae3;
    display: inline-block;
    padding: 0.3% 1% 0.3% 2%;
    margin: 0 0 2% 0;
    border-radius: 60px;
    letter-spacing: 0.05em;
    font-size: 3rem;
    position: relative;
}
.mvTxt_1sub:before{
border: 20px solid transparent;
    border-top-color: #ff7459;
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: -33px;
    transform: translateX(-50%);	
}
/*トップ画像吹き出し　エイジェックグループの*/
.mvTxt_2sub{
    color: #1565c0;
    padding-left: 1.2%;
    margin: 1% 0%;
    letter-spacing: 0.05em;
    font-size: 5rem;
    font-family: ヒラギノ角ゴシック, "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
text-shadow: -3px -3px 10px rgba(255, 255, 255, 0.7), -7px -2px 16px rgba(255, 255, 255, 0.7), 0px 0px 14px rgba(255, 255, 255, 0.7), -5px 1px 8px rgba(255, 255, 255, 0.7), 3px 2px 7px rgba(255, 255, 255, 0.7);
}
/*アイコン　2025年5月より、国による盛土規制法の運用が始まります*/
.mv_icon{
position: absolute;
    bottom: -15%;
    right: 10%;
    width: 24%;
    text-align: center;
    background-image: url(../../morido/images/icon_announce.svg);
    background-position:center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 4%;
}
.mv_icon .mv_icon_year{
color: #fffae3;
    font-size: 3rem;
    line-height: 0;
    margin-bottom: 20px;
	letter-spacing: 0.05em;
}
.mv_icon .mv_icon_year span{
	font-size:1.5rem;
}
.mv_icon .mv_icon_month{
font-size: 10rem;
    color: #fffae3;
    line-height: 6rem;
    margin-top: 10px;
}
.mv_icon .mv_icon_month .spn1{
	font-size: 5rem;
}
.mv_icon .mv_icon_month .spn2{
	font-size: 3rem;
}
.mv_icon .mv_icon_annno{
font-size: 1.7rem;
    color: white;
    margin-bottom: 6px;
	letter-spacing: 0.03em;
}
.mv_icon .mv_icon_min{
    font-size: 1.1rem;
    color: white;
    font-weight: normal;
    margin-bottom: 4px;
	letter-spacing: 0.03em;
}
@media screen and (min-width: 1590px) {
.mv_icon {
	width: 20%;
	}	
}
@media screen and (min-width: 1700px) {
    .mv_icon {
        background-size: auto;
    }
}
/*ドローン写真*/
.mv_drone{
    position: absolute;
    top: 10%;
    right: 3%;
    width: 30%;
    transform: rotate(346deg);
  animation: fluffy 3s infinite;
}
/*上下モーション設定*/
@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@media screen and (max-width: 1582px){
.mvTxt_main {
    font-size: 7.5rem;
}
.mvTxt_1sub {
    margin: 0 0 3% 0;
}
}
@media screen and (min-width: 768px) {
.mvInner {
    padding-left: 10%;
    padding-right: 10%;
}
}
@media screen and (max-width: 767px) {
.mv {
    background-image: url(../../morido/images/mv_01_sp.jpg);
    padding: 30% 5% 41%;
}
	.mv_icon{
		display:none;
	}
.mvTxt_1sub {
	font-size: 2.5rem;
	}
/*2025年5月より～のスマホ表示*/
.spOnly.announce{
	position: absolute;
    bottom: 0;
    width: 100%;
   background-color: rgba(21, 101, 192, 0.8);
    left: 0;
    padding: 2%;
	text-align:center;
	}
	.spOnly.announce p{
		font-size:2rem;
		color:white;
		letter-spacing: 0.02em;
	}
	.spOnly.announce p span{
		font-size: 1.5rem;
        display: block;
        margin-top: 1%;
        font-weight: normal;
	}
	.mvTxt_2sub{
		font-size: 4rem;
	}
    .mvTxt_main {
        font-size: 7rem;
    }
}
@media screen and (max-width: 640px) {
    .mvTxt_main {
        font-size: 6rem;
    }
	.mv_drone{
	top: 14%;
    width: 25%;
	}
}
@media screen and (max-width: 600px) {
    .mvTxt_1sub {
        font-size: 2rem;
    }
	.mvTxt_1sub:before{
		display:none;
	}
}
@media screen and (max-width: 550px) {
    .mvTxt_main {
        font-size: 5rem;
    }	
	.spOnly.announce p{
		font-size: 1.7rem;
	}
	.mvTxt_2sub{
		font-size:3rem;
	}
}
@media screen and (max-width: 450px) {
    .mvTxt_main {
        font-size: 4rem;
    }
    .mvTxt_1sub {
        font-size: 1.5rem;
    }	
}
@media screen and (max-width: 400px) {
    .mv {
        padding: 35% 5% 35%;
    }	
}
/*------------------------*/
/*  section/*
/*------------------------*/
.secInner {
    margin: 0 auto;
    padding: 5% 0;
    max-width: 1170px;
}
.secTtl {
    text-align: center;
    position: relative;
    margin-bottom: 3%;
}
.secTtl_txt {
    font-size:2.8vw;
    letter-spacing: 0.05em;
    margin: 1% 0 0 0;
    line-height: 1em;
}
@media screen and (max-width: 1200px){
.secInner {
    width: 90%;
}
}
/*------------------------*/
/*  吹き出し/*
/*------------------------*/
.secTtl_balloon {
    background-color: #ff7459;
    border-radius: 50px;
    color: #FFFFFF;
    display: inline-block;
    margin-bottom: 2%;
    padding: 0.5% 2%;
    position: relative;
    letter-spacing: 0.05em;
}
.secTtl_balloon::before {
    border: 20px solid transparent;
    border-top-color: #ff7459;
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: -33px;
    transform: translateX(-50%);
}
.secTtl_balloon.balloon_gray {
  background-color: #EEEEEE;
  color: #2C2C2C;
}
.secTtl_balloon.balloon_gray::before {
  border-top-color: #EEEEEE;
}
@media screen and (max-width: 767px) {
  .secTtl {
    margin-bottom: 20px;
  }
  .secTtl_txt {
    font-size: 2.8rem;
  }
  .secTtl_balloon {
    font-size: 1.2rem;
    padding: 6px 20px;
    margin-bottom: 6%;
  }
  .secTtl_balloon.balloon_gray {
    padding: 6px 20px;
  }
}
/*------------------------*/
/*  parts/*
/*------------------------*/
.contentBox_white {
    background-color: #FFFFFF;
    border-radius: 30px;
}
h2.catch {
    text-align: center;
    font-size: 40px;
	letter-spacing:0.2rem;
}
h2.catch span {
    color: #ff5c37;
    font-size: 50px;
}
.back_cream{
	background-color: #fffae3;
}
.cardBox .cardItem a{
    font-size: 1.2rem;
    text-decoration: underline;
    color: #19bdbd;	
	margin-top:5px;
}
@media screen and (max-width: 800px) {
.cardBox .cardItem a {
    font-size: 1em;
}
h2.catch {
	font-size: 35px;
	}
}
@media screen and (max-width: 600px) {
h2.catch {
	font-size: 25px;
	}
section.reason h2 span {
	font-size: 25px;
	}
}
@media screen and (max-width: 320px) {
  .cardBox .cardItem {
    width: auto;
  }
}
/* =========================
  page top
========================= */
#page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: -50px;
    background: #ff5b3b;
    border-radius: 50%;
    z-index: 15;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f102';
    font-size: 20px;
    color: #fff;
    position: absolute;
    width: 18px;
    height: 18px;
    top: -10px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}
/*nav上部固定*/
.clone-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  transition: .3s;
  transform: translateY(-100%);
  background-color:#ffffffed;
}
.is-show {
  transform: translateY(0);
}
.clone-nav .gnav {
    background: #002357eb;
	height: 3rem;
}
.clone-nav .gnav li a {
    height: 3rem;
    line-height: 3rem;
    background: #143464;
}
.clone-nav .header_top {
    padding: 0.2% 0;
}
.clone-nav .gnav li:hover > ul > li {
    height: 3rem;
}
.clone-nav .gnav li ul.nav_serbtn_small li a:hover {
    background: #228bc8;
}
@media screen and (max-width:640px) {
.clone-nav.clone-nav {
  display:none;
}
}

/* =========================
  １.ドローンが最適な理由
========================= */
section.reason h2{
	margin:50px 0 70px;
}
section.reason h2 span{
	color:#1565C0;
	background:linear-gradient(transparent 60%, #fff606 60% 90%, transparent 90%);
	margin-right: 0.5rem;
}
section.reason h4{
	background-color:#ff7257;
}
section.reason .cardBox .cardItem_btn {
	margin-top: 15px;
}
/* =========================
  2.私たちがサポートできる4つのこと
========================= */
section.ourservice {
    background-color: #fffae3;
    background-size: cover;
}
section.ourservice .ourservice_box {
    overflow: hidden;
    padding: 3% 0 1%;
}
section.ourservice ul li {
    float: left;
    width: 48%;
    margin: 0 3% 3% 0;
    background-color: #fff;
    padding: 2%;
    height:172px;
    border-top: 7px solid #ff6f70;
    box-shadow: 2px 2px 5px #f1e9bf;
	position:relative;
}

section.ourservice ul li .image_box{
    background-color: #fff;
}
section.ourservice ul li .image_box img {
    position: absolute;
    right: 3%;
    top:8%;
	width:8%;
}
section.ourservice p.secTtl_balloon {
    text-align: center;
	margin:0;
    background-color: #ff7257;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
section.ourservice p.secTtl_balloon::before {
    border-top-color: #ff7257;
}
section.ourservice ul li:nth-child(2) {
    border-top: 7px solid #6fb6ff;
	margin:0 0 3% 0;
}
section.ourservice ul li:nth-child(3) {
    border-top: 7px solid #73cea6;
    margin:0 3% 0 0;
}
section.ourservice ul li:nth-child(4) {
    border-top: 7px solid #ffaf6f;
	margin:0;
}
section.ourservice ul li h3 {
    margin: 0 0 0 7%;
    font-size:1.4vw;
    line-height: 1.3em;
	letter-spacing:0.1rem;
}
section.ourservice ul li h3 span.kyocyo{
    color: #ff674a;
}
section.ourservice ul li h3 span.number{
    background-color: #ff674a;
    color: #fff;
    border-radius: 50%;
    padding: 0.6% 1.3%;
    margin: 0 1% 0 -7%;
    font-size: 20px;
}
section.ourservice ul li:nth-child(2) h3 span.kyocyo{
    color: #6fb6ff;
}
section.ourservice ul li:nth-child(2) h3 span.number{
    background-color: #6fb6ff;
}
section.ourservice ul li:nth-child(3) h3 span.kyocyo{
    color: #73cea6;
}
section.ourservice ul li:nth-child(3) h3 span.number{
    background-color: #73cea6;
}
section.ourservice ul li:nth-child(4) h3 span.kyocyo{
    color: #ffaf6f;
}
section.ourservice ul li:nth-child(4) h3 span.number{
    background-color: #ffaf6f;
}
section.ourservice ul li p {
    font-size: 16px;
    line-height: 1.6em;
    margin: 2% 0 0 0;
}
@media screen and (max-width: 1200px){
section.ourservice ul li .image_box {
    display:none;
}
section.ourservice ul li {
    height: 205px;
}
}
@media screen and (max-width: 930px){
	section.ourservice p.secTtl_balloon{
		font-size:3rem;
	}
section.ourservice ul li h3 {
    margin: 0 0 5% 7%;
    font-size: 2.5rem;
}
}
@media screen and (max-width:800px){
section.ourservice ul li p {
    font-size: 15px;
}
section.ourservice ul li {
    float: none;
    width: 100%;
    margin: 0 0 4% 0;
    height: auto;
}
section.ourservice ul li:nth-child(3) {
    border-top: 7px solid #73cea6;
    margin: 0 0 4% 0;
}
section.ourservice ul li:nth-child(2) {
    margin: 0 0 4% 0;
}
section.ourservice ul li h3 {
    margin: 0 0 0 7%;
    font-size: 18px;
}
	section.ourservice ul li h3 br{
		display:none;
	}
section.ourservice ul li h3 span.number {
    font-size: 16px;
}
section.ourservice .cardBox .cardItem {
    width: 100%;
    padding: 0 0 5% 0;
    border: none;
    border-bottom: 1px dashed #ff8972;
}
section.ourservice .cardBox .cardItem:nth-child(2) {
    border-bottom: none;
	padding:0;
}
section.ourservice .feature_box h4 {
    font-size: 20px;
    width: 83%;
}
section.ourservice .feature_box {
    padding: 8% 4% 3%;
}
section.ourservice .feature_box {
    background-color: #ffffff;
    margin: 14% 0 2%;
}
.cardBox .cardItem_img, .cardBox .cardItem_btn {
    text-align: center;
}
section.ourservice h2 {
    font-size: 22px;
}
section.ourservice h2 span {
    font-size: 30px;
}
section.ourservice {
    border-top: none;
    padding: 5% 0 0 0;
}
.flow .secInner::before {
    width: 95px;
    height: 61px;
    top: -30px;
}
}
@media screen and (max-width: 767px){
    section.ourservice p.secTtl_balloon {
        font-size: 2.2rem;
    }	
}
@media screen and (max-width: 460px){
section.ourservice ul li {
    height: auto;
	padding:4%;
}
	section.ourservice p.secTtl_balloon{
		font-size:1.8rem;
	}
}

/* =========================
  3.エイジェックグループの強み
========================= */
section.advantage .feature_box{
    border: 4px solid #1565C0
}
section.advantage .feature_box h4:before {
    border-top-color:#1565C0;
}
section.advantage .cardBox .cardItem_txt {
    height: 12rem;
}
@media screen and (max-width: 1120px){
section.advantage .cardBox .cardItem_txt {
    height: 15rem;
}	
}
@media screen and (max-width: 930px){
section.advantage .cardBox .cardItem_txt {
    height: 17rem;
}	
}
@media screen and (max-width: 800px){
    section.advantage .cardBox .cardItem_txt {
        height: auto;
        margin-bottom: 20px;
		text-align:center;
		letter-spacing:0.1rem;
    }
	section.advantage .cardBox .cardItem_txt .br{
		display:block;
	}
}
@media screen and (max-width: 460px){
	section.advantage .cardBox .cardItem_txt .br{
		display:none;
	}
}
/* =========================
  4.実績
========================= */
section.achievements .feature_box h4 {
    font-size: 25px;
	background: #ff7459;
	font-size: 1.7vw;
	width:60%;
}
section.achievements .cardBox{
	align-items:center;
	justify-content: center;
}
section.achievements .cardBox .cardItem {
	border-right:none;
	border-right: none;
    width: 50%;
}
section.achievements .cardItem_txt {
	font-size: 1.7rem;
    letter-spacing: 0.1rem;
    margin-left: 20%;
}
section.achievements .cardItem_txt p{
    background-color: #1565c0;
    color: white;
    display: block;
    width: 25%;
    text-align: center;
    margin-bottom: 2%;
    border-radius: 10px;
    font-size: 1.5rem;
}
section.achievements .cardItem_txt  li span{
	color:#1565C0;
	margin-right: 2rem;
}
/*バナー*/
section.achievements .banarBox{
	text-align:center;
	margin-top:40px;
}
section.achievements .banarBox a{
	display:block;
	width:60%;
	margin:1% auto 0;
	border: 1px solid gray;
}
section.achievements .banarBox p{
	font-size: 16px;
}
@media screen and (max-width: 800px){
section.achievements .cardBox .cardItem {
    width: 100%;
    border-bottom: none;
    margin: 0;
	padding:0;
}
	section.achievements .cardItem_txt{
		margin-left:0;
		font-size:15px;
	}
section.achievements .cardItem_txt p {
    font-size: 2rem;
}
section.achievements .banarBox a{
	width:100%;
}
}
@media screen and (max-width: 550px){
    section.achievements .cardItem_txt p {
        font-size: 1.2rem;
        margin-top: 10px;
    }	
}
/*------------------------*/
/*  5.業務委託フロー
/*------------------------*/
section.flow {
background-color: #ff977c;
background-image: linear-gradient(90deg, #ff977c 0%, #ffc57f 100%);
}
/*ボックス部分*/
section.flow .afterflow_box ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin: 0 0 4% 0;
    position: relative;
	background-color:white;
	align-items: center;
	box-shadow: 2px 2px 5px #aa6a20;
}
section.flow .afterflow_box{
    padding:5% 10% 0;
}
section.flow .afterflow_box ul li .afterflow_leftbox {
    margin: 0 3% 0 0;
    width: 33%;
	text-align:left;
}
section.flow .afterflow_box ul li .afterflow_leftbox .line{
	border: 1px solid gray;
}
section.flow .afterflow_box ul li .afterflow_rightbox {
    width: 70%;
	text-align:left;
}
section.flow .afterflow_box ul li .afterflow_rightbox .mbtm_10px{
	font-size: 1.7vw;
}
section.flow .afterflow_box ul li .afterflow_rightbox p{
    font-size: 17px;
    line-height: 1.8em;
}
/*▼マーク*/
section.flow .afterflow_box ul li:after{
	border: 15px solid transparent;
    border-top-color:#ff7257;
    border-bottom-width: 0;
    bottom: -27px;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    width: 0;
}
section.flow .afterflow_box ul li.last:after{
    content:none;	
}
/*リンク*/
section.flow .afterflow_box ul li .afterflow_rightbox p a{
	color:#ff7257;
	text-decoration:underline;
}
/*step1の表記*/
section.flow .afterflow_box ul li .afterflow_rightbox p.step_number {
background-color:#1565C0;
    display: inline-block;
    padding: 0.7% 1.2%;
    border-radius: 50%;
    line-height: 1em;
    color: #fff;
    position: absolute;
    left: -20px;
    top: -20px;
    letter-spacing: 0.1rem;
    text-align: center;
    font-weight: normal;
    font-size: 1.2rem;
	text-align:center;
}
section.flow .afterflow_box ul li .afterflow_rightbox p.step_number span{
	display: block;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    line-height: 2.4rem;
}
@media screen and (max-width: 1090px) {
	section.flow .afterflow_box ul li{
		margin-bottom:6%;
	}
.stepFlow {
    padding: 5%;
}
section.flow .afterflow_box ul li .afterflow_rightbox {
    padding: 2%;
}
}
@media screen and (max-width: 930px) {
	section.achievements .feature_box h4 {
    font-size: 3rem;
    width: 70%;
}
}
@media screen and (max-width: 800px){
section.flow .afterflow_box {
    padding: 0;
}
section.flow .secTtl_txt{
		margin-bottom:30px;
	}
	section.flow .afterflow_box ul li .afterflow_rightbox p{
		font-size:15px;
	}
	section.flow .afterflow_box ul li .afterflow_rightbox .mbtm_10px{
	font-size: 15px;
    color: #1565c0;
	}
}
@media screen and (max-width: 767px){
.flow .secInner::before {
    width: 95px;
    height: 61px;
    top: -30px;
  }
	section.flow .afterflow_box img{
		max-width: none;
	}
section.flow .afterflow_box ul li .afterflow_leftbox {
    margin: 0 3% 0 0;
    width: auto;
}
section.flow .afterflow_box ul li .afterflow_rightbox {
    width: 100%;
}
section.flow .afterflow_box ul li {
    margin: 0 0 8% 0;
}
section.flow .afterflow_box ul li .afterflow_rightbox h3{
    font-size: 2.0rem;
}
section.flow .afterflow_box ul li .afterflow_rightbox p {
    font-size: 15px;
    line-height: 1.3em;
}
section.flow .afterflow_box ul li .afterflow_rightbox p.step_number {
    font-size: 1.3rem;
}
section.flow h3 {
    font-size: 2.5rem;
    background-color: #ff5b3b;
    padding: 1.5% 3%;
}
	section.achievements .feature_box h4 {
    font-size: 2.2rem;
    width: 100%;
}
}
@media screen and (max-width: 640px){
section.flow .afterflow_box h3 {
    font-size: 1.5rem;
    padding: 2.5% 5%;
}
section.flow .afterflow_box.box_blue h3{
    font-size: 1.5rem;
    padding: 2.5% 5%;
}
section.flow .afterflow_box ul li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 7% 0;
}
section.flow .afterflow_box ul li .afterflow_leftbox {
    display:none;
}
section.flow .afterflow_box ul li .afterflow_leftbox img{
    display:none;
}
section.flow .afterflow_box ul li .afterflow_rightbox h4 {
    font-size: 24px;
    margin: 3% 0 2%;
}
section.flow .afterflow_box ul li .afterflow_rightbox p {
    font-size:15px;
}
}
@media screen and (max-width: 450px){
    section.achievements .feature_box h4 {
		font-size: 1.8rem;
	}
    section.flow .afterflow_box ul li .afterflow_rightbox p.step_number {
        margin-left: 20px;
    }
    section.flow .afterflow_box ul li .afterflow_rightbox {
        padding: 5%;
    }
section.flow .afterflow_box ul li:after {
    display:none;
}
    section.flow .afterflow_box ul li .afterflow_rightbox .mbtm_10px {
        margin-top: 0;
    }
	section.flow .afterflow_box ul li .afterflow_rightbox p.step_number span{
		    display: inline-block;
    font-size: 1.2rem;
	}
}
/*------------------------*/
/* 6. よくあるご質問*/
/*------------------------*/
.faq {
  background-color: #fffae3;
}
.faqItem:not(:last-child) {
    margin-bottom: 1%;
}
section.faq dl.faqItem {
    cursor: pointer;
}
.faq_Q, .faq_A {
    font-size: 1.6rem;
    padding: 1.5% 10%;
    position: relative;
}
.faq_Q {
  background-color: #ECECEC;
  border-radius: 35px;
}
.faq_A {
  background-color: #FFFFFF;
  border-radius: 0 0 20px 20px;
}
.faq_Q::before, .faq_A::before {
    content: "";
    display: block;
    width: 38px;
    height: 42px;
    position: absolute;
    top: 50%;
    left: 37px;
    transform: translateY(-50%);
    image-rendering: -webkit-optimize-contrast;
}
.faq_Q::before { background: url(../../morido/images/icon_q.png) no-repeat left center / contain; }
.faq_A::before { background: url(../../morido/images/icon_a.png) no-repeat left center / contain; }
.faq_Q::after {
  content: '＋';
  color: #FF5B3B;
  font-size: 3.4rem;
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
}
.faq_Q.active {
  border-radius: 20px 20px 0 0;
}
.faq_Q.active::after {
  content: '－';
}
@media screen and (max-width: 800px) {
.faq_Q::before, .faq_A::before {
	width: 20px;
	}	
}
@media screen and (max-width: 767px) {
.faqItem:not(:last-child) {
    margin-bottom: 6px;
}
  .faq_Q,
  .faq_A {
    font-size: 1.6rem;
    padding: 15px 30px 15px 52px;
  }
  .faq_Q {
    border-radius: 10px;
  }
  .faq_Q::before,
  .faq_A::before {
    width: 27px;
    height: 27px;
    left: 18px;
  }
  .faq_Q::after {
    font-size: 2.0rem;
    right: 10px;
  }
  .faq_Q.active {
    border-radius: 10px 10px 0 0;
  }
  .faq_A {
    border-radius: 0 0 10px 10px;
  }
}
/*------------------------*/
/* 7. 問い合わせフォーム
/*------------------------*/
.contact {
    background-color: #ff977c;
    background-image: linear-gradient(90deg, #ff977c 0%, #ffc57f 100%);
}
.contact h2{
  margin:0 0 2% 0;
}
.contact .contentBox_white {
  padding: 46px 54px 54px 58px;
}
.contactForm {
    /* font-size: 1.5rem; */
    font-size: 16px;
}
.contactForm .formBlock {
  padding: 0 46px;
}
.contactForm .formBlock:not(:first-of-type) {
  margin-top: 30px;
}
.contactForm .formBlock .txt_center {
  font-weight:normal;
}
.contactForm .formBlock .txt_center a{
	color: #2C2C2C;
}
.contactForm .formBlock a{
	color: #19bdbd;
  text-decoration: underline;
}
.contactForm .require {
  background-color: #ff4747;
  border-radius: 3px;
  color: #ffffff;
  font-size: 1.4rem;
  margin-left: 10px;
  padding: 2px 6px;
}
.contactForm .formItem {
    margin-top: 2%;
}
.contactForm .formItem.method_h .formItem_input input, .contactForm .formItem.method_h .formItem_select select, .contactForm .formItem.method_h .formItem_textarea textarea{
    padding: 1% 3%;
}

.contactForm .formItem_label {
  margin-bottom: 5px;
}
.contactForm .formItem_input input, .contactForm .formItem_select select, .contactForm .formItem_textarea textarea {
    border: solid 1px #888;
    border-radius: 30px;
    padding: 1.8% 3%;
    width: 100%;
}
.contactForm .privacyPolicy .formItem .formItem_label a:hover {
  text-decoration: underline;
}
.contactForm .privacyPolicy .formItem_checkbox {
  padding-left: 1.5em;
}
.contactForm .privacyPolicy .formItem_checkbox label {
  margin-left: 10px;
}
.contactForm .formItem_radio li {
  margin-top: 15px;
  margin-left: 20px;
}
.contactForm .formItem_radio li label {
  margin-left: 10px;
}
.contactForm .formItem_submit {
  text-align: center;
}
.contactForm .formItem_submit input[type="submit"] {
    background-color: #1565C0;
    border-radius: 10px;
    color: #FFFFFF;
    padding: 1% 4%;
    margin: 35px auto 20px;
}
.formItemBox{
	border-top: 1px solid #cacaca;
    margin: 3% 0 0 0;
    padding: 2% 0;
}
@media screen and (min-width: 1096px) {
.contactForm .formBlock {
    padding: 0;
}
}
@media screen and (min-width: 768px) {
  .contactForm .privacyPolicy .formItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .contactForm .formItemBox_col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contactForm .formItemBox_col .formItem {
    width: 45%;
  }
  .contactForm .privacyPolicy .formItem .formItem_label,
  .contactForm .privacyPolicy .formItem_checkbox {
    width: 45%;
  }
  .contactForm .formItem_radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
	.contact .contentBox_white{
		padding:5% 3%;
	}
  .contactForm {
      /* font-size: 1.3rem; */
  }
  .contactForm .formBlock {
    padding: 0 15px;
  }
  .contactForm .formBlock > .formBlock {
    padding-left: 0;
    padding-right: 0;
  }
  .contactForm .formBlock:not(:first-of-type) {
    margin-top: 15px;
  }
  .contactForm .require {
    font-size: 1.1rem;
    margin-left: 8px;
  }
  .contactForm .formItem {
    margin-top: 15px;
  }
.contactForm .formItem_input input, .contactForm .formItem_select select, .contactForm .formItem_textarea textarea {
    padding: 8px 10px 8px;
	font-size:15px;
}
.contactForm .formItem.method_h .formItem_input input, .contactForm .formItem.method_h .formItem_select select, .contactForm .formItem.method_h .formItem_textarea textarea {
    padding: 2% 3%;
}
  .contactForm .formItem_radio li {
    display: inline-block;
    margin-top: 5px;
    margin-left: 1em;
  }
  .contactForm .formItem_radio li label {
    margin-left: 0.5em;
  }
  .contactForm .formItem_submit input[type="submit"] {
    font-size: 1.4rem;
    margin: 25px auto 20px;
    padding: 10px 20px;
    width: 100%;
  }
  .contactForm .formItem_submit .formTxt {
    margin-left: 1.5em;
    text-align: left;
    text-indent: -1em;
  }
}
/*------------------------*/
/* 7. 問い合わせフォーム　確認
/*------------------------*/
div#wpcf7cpcnf {
  z-index: 0 !important;
}
div#wpcf7cpcnf table {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	border: 1px solid #ccc;
	/* border-bottom: none; */
  font-size: 16px;
}
div#wpcf7cpcnf table tr {
    border-bottom: 1px solid #ccc;
}
div#wpcf7cpcnf table th, div#wpcf7cpcnf table td {
    padding: 12px;
    background: #ffffff;
}
div#wpcf7cpcnf table th {
    width: 50%;
    border-right: 1px solid #ccc;
    background: #f0f8ff;
    color: #00367c;
}
div.wpcf7cp-btns {
	margin: 50px 0 0 !important;
	text-align: center;
}

.ly_contact .transmission .button, div.wpcf7cp-btns .wpcf7-form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    appearance: none;
    cursor: pointer;
    background:#005bac;
    display: inline-block;
    width: 30%;
    outline: none;
    border-radius: 5px;
    font-size:20px;
    font-weight: bold;
    border: none;
    padding: 12px 0;
    margin: 0 1%;
    letter-spacing: .2em;
    transition: .5s;
    color: #fff;
}

@media screen and (max-width: 767px) {
  div#wpcf7cpcnf table th,
  div#wpcf7cpcnf table td {
    display: block;
    width: 100%;
  }
  .ly_contact .transmission .button, div.wpcf7cp-btns .wpcf7-form-control {
      width: 43%;
      font-size: 1rem;
      letter-spacing: .1em;
  }
}
/* =========================
  サンキューメール
========================= */
.kotei_temp{
    background-image: url(img/overview_back.png);
}
.thanks_box p {
    font-size: 16px;
    line-height: 1.7em;
    font-weight: bold;
}
.thanks_box a{
	color:#ff6a4d;
}
p.thanks_topi {
    font-size: 25px;
    font-weight: bold;
    color: #ff6a4d;
    border-left: 10px solid;
    padding: 0 1%;
    line-height: 1.3em;
    margin: 0 0 2% 0;
    font-weight: bold;
}
.more-btn{
	margin:2% 0 0 0;
}
@media screen and (max-width: 767px) {
	.thanks_box{
		margin-top:70px;
	}
p.thanks_topi {
    font-size: 18px;
    color: #ff6a4d;
    border-left: none;
    padding: 0;
    line-height: 1.3em;
    margin: 0 0 5% 0;
}
.thanks_box a {
    color: #ff6a4d;
    font-size: 1.5rem;
    margin-top: 7%;
    display: block;
}
}
/* =========================
  footer
========================= */
.footerInner {
    max-width: 1582px;
    margin: 0 auto;
    padding: 2% 0;
}
.footerBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footerBottom .logo {
    max-width: 195px;
    margin: 0 0 1% 0;
}
.footerBottom .footerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footerBottom .footerNav li {
    margin-right: 67px;
    font-size: 15px;
}
.copyrights {
    background-color: #3770BF;
    color: #FFFFFF;
    font-size: 12px;
    text-align: center;
    padding: 0.4% 0;
}
@media screen and (min-width: 768px) {
.footerInner {
    padding-left: 15%;
    padding-right: 15%;
}
}

@media screen and (max-width: 767px) {
  .footerInner {
    padding: 25px 25px 10px;
  }
  .footerBottom .logo {
    max-width: 120px;
  }
  .footerBottom .footerNav li {
    font-size: 1.1rem;
    margin-right: 31px;
  }
  .footerBottom .footerNav li:last-child {
    margin-right: 1em;
  }
  .copyrights {
    font-size: 0.9rem;
    padding: 11px 0 9px;
  }
}

/*------------------------*/
/*  404ページ*/
/*------------------------*/
.inner-404 {
    padding: 10% 0;
    background-color: #f5f5f5;
}
.inner-404 .text {
    padding: 2%;
    background-color: #fff;
    width: 80%;
    margin: 0 auto;
}
.inner-404 .text h3{
    font-size: 22px;
    padding: 0 0 2% 0;
    font-weight: bold;
}
.inner-404 .text p{
    font-size: 16px;
}

/*------------------------*/
/*  体裁・白い枠に3分割のBOX/*
/*------------------------*/
/*白い枠*/
.feature_box {
    background-color: #ffffff;
    padding: 4% 4% 3%;
    position: relative;
    border-radius: 20px;
	box-shadow: 2px 2px 5px #f1e9bf;
}
.feature_box h4 {
    color: #fff;
    text-align: center;
    font-size:1.7vw;
    padding: 0 0 3% 0;
    position: absolute;
    background-color: #1565C0;
    padding: 0.5% 5%;
    border-radius: 40px;
    top: -2%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	letter-spacing:0.2rem;
}
.feature_box h4 span {
    color: #ffff8e;
}
.feature_box h4:before{
	    border: 20px solid transparent;
    border-top-color: #ff7459;
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    bottom: -33px;
    transform: translateX(-50%);
}
/*3分割*/
.cardBox{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    align-items: start;
}
.cardBox .cardItem {
    padding: 2%;
	background:transparent;
    border-radius: 0;
    box-shadow: none;
    border-right: 1px dashed gray;
	width:calc((100% - 10px) / 3);
	display: grid;
    grid-template-columns: repeat(1, 3fr);
}
.cardBox .cardItem:nth-child(3){
    border-right: none;
}
/*青色の見出し*/
.cardBox h3 {
    font-size:1.4vw;
    letter-spacing: 0.02em;
    color: #1565C0;
    border-bottom: none;
    padding-bottom: 5%;
    text-align: center;
}
/*番号*/
.cardBox h3 span{
    background: #1565C0;
    color: white;
    font-size: 2rem;
    padding: 0 2.5%;
    text-align: center;
    margin-right: 5px;
}
/*文字*/
.cardBox .cardItem_txt {
line-height: 1.8em;
    font-size: 16px;
    letter-spacing: 0.01rem;
}
.cardBox .cardItem_txt a{
font-size: 1.2rem;
    text-decoration: underline;
    color: #19bdbd;
}
/*画像・リンク画像*/
.cardBox .cardItem_img{
	position:relative;
}
.cardBox .cardItem_img, .cardBox .cardItem_btn {
    margin:0 auto;
}
/*画像キャッチ*/
.cardBox .cardItem_img span{
    position: absolute;
    right: 7px;
    bottom: 5px;
    color: white;
    font-size: 1.2rem;
    font-weight: normal;
}
@media screen and (max-width: 930px) {
	.cardBox h3 {
		font-size: 2.2rem;
	}
.feature_box h4 {
    font-size: 3rem;
}
}
@media screen and (max-width: 800px) {
  .cardBox {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
    flex-direction: column;
  }
  .cardBox .cardItem {
    padding: 15px 26px 16px 35px;
    width: auto;
	  border:none;
  }
.cardBox .cardItem_img span {
	font-size: 1em;
	}
  .cardBox .cardItem:not(:last-child) {
    margin-bottom: 19px;
	  border-bottom:1px dashed gray;
	}
.cardBox h3 {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 8px;
}
.cardBox h3 span {
    background: none;
    color: #1565c0;
    font-size: 20px;
    padding: 0;
}
.cardBox .cardItem_txt {
    line-height: 1.5em;
    font-size: 15px;
	letter-spacing:0.05rem;
}
  .cardBox .cardItem_img,
  .cardBox .cardItem_btn {
    margin-right: -4px;
    margin-left: -4px;
  }
	.cardBox .cardItem_img{
		        width: 70%;
        margin: 0 auto;
	}
}
@media screen and (max-width: 767px) {
    .feature_box h4 {
        font-size: 2.2rem;
        width: 100%;
    }
}
@media screen and (max-width: 640px) {
    .cardBox .cardItem_img {
        width: 100%;
    }	
}
/*モバイルメニュー*/
.header-area{
  display: flex;
  justify-content: space-between;
  height: 65px;
  padding: 0 20px;
  align-items: center;
}
.hamburger{
  width: 40px;
  height: 25px;
  position: relative;
  transition: .5s;
	margin-top:20px;
}
.hamburger span{
  position: absolute;
  width: 100%;
  height: 2px;
  background-color:#2c2c2c;
  transition: .5s;
}
.hamburger span:first-of-type{/* ハンバーガーメニューの1番目の線 */
  top: 0;
}
.hamburger span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
  top: 50%;
}
.hamburger span:last-of-type{/* ハンバーガーメニューの3番目の線 */
  top: 100%;
}
.slide-menu{
  background-color: rgba(0, 0, 0, .8);
  position: fixed;
  top: 65px;
  width: 100%;
  left: 0;
  transform: translateX(100%);
  transition: .5s;/* 追記 */
}
.slide-menu li{
  color: #fff;
  line-height: 400%;
  text-align: center;
}
.slide-menu li:last-child a{
background: -moz-linear-gradient(left, #ffb14b, #ff6070);
    background: -webkit-linear-gradient(left, #ffb14b, #ff6070);
    background: linear-gradient(to right, #ffb14b, #ff6070);
    color: #FFFFFF;
    display: block;
    margin: 2% auto 5%;
    width: 90%;	
}
.hamburger.active{/* 追記 */
  transform: rotateY(360deg);/* 追記 */
}
.hamburger.active span:first-of-type{/* ハンバーガーメニューの1番目の線 */
  top: 50%;
  transform: rotate(45deg);
}
.hamburger.active span:nth-of-type(2){/* ハンバーガーメニューの2番目の線 */
  opacity: 0;/* 透明にする */
}
.hamburger.active span:last-of-type{/* ハンバーガーメニューの3番目の線 */
  top: 50%;
  transform: rotate(-45deg);
}
.slide-menu.active{
  transform: translateX(0);
}
.hamburger span:nth-of-type(2){
    height: 2px;
}
.hamburger span:last-of-type {
    height: 2.5px;
}

/*ページ内リンク*/
span.anchorlink {
    position: relative;
    top: -150px;
    display: block;
}
@media screen and (max-width:640px){
span.anchorlink {
    top: -80px;
}
}