@charset "utf-8";
/* CSS Document */
@import url("style.css");
body {
  margin: 0;
  padding: 0;
}
#wrap {
  width: 100%;
}
.wrapper {
  width: 100%;
}
p {
  font-size: 16px;
  line-height: 1.7;
}
#hamburger {
  display: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
/* ===================
改行
====================== */
.pc-br {
  display: block;
}
.sp-br {
  display: none;
}
/* ===================
ヘッダー関連 
====================== */
#header {
  position: fixed;
  width: 100%;
  top: 0;
  margin: 0;
  padding: 0;
  background: url("../img/header_bg.png") no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 5000;
  background-color: #fff;
}
.head-wrap {
  width: 100%;
  display: flex;
}
.head-logo {
  width: 15%;
  position: relative;
  margin: 0 2%;
}
.head-logo img {
  width: 100%;
  max-width: 288px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
/* ===================
 ナビゲーションメニュー
====================== */
#menubar01 {
  width: 63%;
  margin: 0 auto;
  position: relative;
  z-index: 1 !important;
  display: flex;
  justify-content: normal;
  align-items:center;
  border-left: 1px solid #727171;
}
#dropmenu {
  list-style-type: none;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
#dropmenu li {
  position: relative;
  text-align: center;
  width: calc(100% / 5);
  border-left: 1px solid #727171;
}
#dropmenu li:first-of-type {
  border-style: none;
}
#dropmenu li a img {
  width: 24%;
  display: block;
  margin: 0 auto;
  padding: 0;
}
#dropmenu li a {
  display: block;
  width: 100%;
  line-height: 1;
  color: #575554;
  text-decoration: none;
  font-weight: 700;
  transition: .3s;
  padding: 18px 10px 18px 10px;
  font-size: 0.9em;
}
@media (max-width: 1260px) {
  #dropmenu li a {
    font-size: 1.1vw;
  }
}
#dropmenu li ul {
  display: block;
  width: 100%;
  list-style: none;
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0%;
  padding: 0;
  white-space: nowrap;
}
#dropmenu li:nth-child(2) ul {
  width: 250px;
}
#dropmenu li:nth-child(3) ul {
  width: 250px;
}
#dropmenu li:nth-child(4) ul {
  width: 250px;
}
#dropmenu li ul li {
  overflow: hidden;
  width: 100%;
  height: 0;
  color: #fff;
  transition: .3s;
  border-style: none;
}
#dropmenu li ul li a {
  width: 100%;
  display: inline-block;
  line-height: 1;
  text-align: left;
  font-size: 0.8em;
  font-weight: normal;
  color: #fff;
  white-space: nowrap;
}
#dropmenu > li:hover > a {
  background: #ccc;
  color: #000;
}
#dropmenu > li:hover li:hover > a {
  width: 100%;
  color: #000;
  background-color: #fff;
}
#dropmenu > li:hover > ul > li {
  width: 100%;
  height: 35px;
  border-style: none;
  text-align: left;
  background: #89c125;
}
#hamburger {
  display: none;
}
.tel-icon {
  width: 22%;
}
.tel-icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #89c125;
  width: 100%;
  padding: 0 10px;
  color: #fff;
  flex-wrap: wrap;
}
.tel-icon a p {
  color: #fff;
  font-size: 0.83vw;
}
.tel-icon i {
  margin: 10px;
}
.tel-icon span {
  font-size: 1.56vw;
  font-weight: bold;
}
@media (max-width: 1260px) {
  .tel-icon {
    width: 18%;
  }
  .tel-icon a {
    padding: 10px;
  }
  .tel-icon a p {
    font-size: 1.5vw;
  }
  .tel-icon span {
    font-size: 1.5vw;
  }
}
/* ===================
 サイト内検索
====================== */
.head_search {
  width: 80%;
}
.searchform {
  position: relative;
}
.searchfield {
  font-size: 14px;
  width: 100%;
  margin: 3px;
  padding: 5px;
  border: solid 1px #bbb;
  border-radius: 4px;
  background-color: #fff;
}
.searchsubmit {
  font-family: FontAwesome;
  font-size: 1.2em;
  position: absolute;
  top: -5%;
  right: 0%;
  margin-top: 0px;
  padding: 0;
  cursor: pointer;
  color: #C69C8E;
  border: none;
  background: transparent;
}
.searchsubmit:hover {
  opacity: .6;
}
table.table-search {
  width: 100%;
  margin: 0px auto;
}
table.table-search th {
  text-align: left;
  font-size: 15px;
  margin: 0px 0 5px 0px;
  vertical-align: middle;
}
table.table-search td {
  line-height: 160%;
  text-align: right;
  vertical-align: middle;
  font-size: 15px;
  padding: 0 0.2em;
}
table.table-search tr td:nth-of-type(2) {
  width: 32%;
}
/***2列め***/
table.table-search tr td:nth-of-type(3) {
  width: 20%;
}
/* ===================
 ブロック要素
====================== */
.lay-block {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding-top: 7rem;
}
.lay-block-10 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.lay-block-11 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.lay-block-12 {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.lay-block-top {
  width: 100%;
  position: relative;
  text-align: center;
  margin-bottom: 3em;
  padding-top: 4rem;
}
.lay-block-page {
  width: 100%;
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding-top: 4rem;
}
.lay-block-bottom {
  width: 100%;
  border-top: 10px solid #d7d7d8;
}
/* ===================
 見出し
====================== */
.content-ttl {}
.content-ttl h2 {
  padding: 0.5em 0;
  border-bottom: solid 3px black;
}
/* ===================
 ボタン
====================== */
.btn {
  width: 15%;
  display: inline-block;
  padding: 0.5em;
  font-weight: 400;
  align-items: center;
  text-decoration: none !important;
  font-size: 1.5rem;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
  text-align: center;
  background-color: #1470a9;
  margin: 1em;
  border-radius: 10px;
}
.btn a {
  color: #fff !important;
  font-size: 1.5rem;
}
.btn:hover {
  opacity: 0.8;
}
.btn-box {
  width: 100%;
  text-align: center;
}
/* ===================
 フッターのリスト
====================== */
.footer-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0.5em;
}
.footer-link {
  width: 100%;
  padding: 0 2%;
  display: flex;
  justify-content: space-between;
}
.link-wrap {
  padding-left: 0.8em;
  border-left: 1px solid #cacacb;
padding-right: 1em;
}
.link-wrap:first-of-type {
  border-style: none;
}
.link-wrap li.office-info {
  padding: 0;
  font-size: 13px;
}
.link-wrap li.p-mark {
  margin-top: 80px;
}
.link-wrap .footer-logo a img {
  width: 80%;
  margin-top: 2.5em;
}
.link-wrap ul {
  padding-left: 0;
}
.link-wrap ul li {
  width: 100%;
  list-style: none;
}
.link-wrap li {
  width: 100%;
  color: #000;
  list-style: none;
  padding: 0.5em 0;
}
.link-wrap li:not(:first-of-type) {
  /*padding-left: 0.5em;*/
}
.link-wrap a {
  color: #000;
  font-size: max(0.677vw, 13px);
}


.link-wrap:nth-of-type(6n) img{
	width:150px;
}


.copy {
  font-size: 1em;
  color: #000;
  text-align: center;
  margin: 3em 0 1em 0;
  padding: 20px 0;
  padding-bottom: 15px;
}
/* ===================
 ニュース
====================== */
.news-bg {
  margin-top: 172px;
  position: relative;
  height: 100vh;
}
.news-wrap {
  width: 100%;
  margin: 5em auto;
  position: absolute;
  top: -125px;
  left: 0;
  right: 0;
}
.news-ttl {
  width: 100%;
  margin: 5em auto;
  position: absolute;
  top: -125px;
  left: 0;
  right: 0;
}
.news-ttl h2 {
  font-size: 35px;
  color: #154995;
}
.news-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2em;
  padding: 0;
}
/*news のtable*/
table.table-news {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  margin: 0 auto;
}
table.table-news th {
  width: 10%;
  padding: 1em 1em 1em 3em;
  border-bottom: 1px #333 solid;
  line-height: 180%;
  text-align: left;
  vertical-align: top;
  color: #000;
  font-size: 16px;
  font-weight: normal;
}
table.table-news td {
  width: 10%;
  padding: 1em 3em 1em 1em;
  border-bottom: 1px #333 solid;
  line-height: 180%;
  text-align: left;
  vertical-align: middle;
  color: #000;
  font-size: 16px;
  font-weight: normal;
}
table.table-news th span {
  display: inline-block;
  width: 80px;
  font-size: 10px;
  text-align: center;
  border: 1px solid #154995;
}
table.table-news td:last-of-type {
  width: 80%;
}
table.table-news tr th a, table.table-news tr td a {
  text-decoration: none;
  color: #333;
}
.news-archive {
  display: block;
  background-color: #154995;
  padding: 10px;
  width: 200px;
  margin: 0 auto;
  color: #fff;
}
/* ===================
 グーグルマップ
====================== */
.access-wrap {
  width: 100%;
  margin: 0 auto 3em;
}
.map-box {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 1em;
  text-align: center;
}
.gmap {
  max-width: 1100px;
  width: 100%;
  height: 380px;
  position: relative;
  margin: 0 auto;
}
.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.clone-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  transition: .3s;
  transform: translateY(-100%);
}
.is-show {
  transform: translateY(0);
}
/* ===================
 フォーム関連
====================== */
input, select {
  border: solid 1px #CCC;
  background-color: #FFFFFF;
  color: #333333;
  padding: 0.5em;
  margin: 0.5em;
  height: 2.5em;
  cursor: pointer;
  vertical-align: middle;
}
textarea {
  border: solid 1px #CCC;
  background-color: #FFFFFF;
  color: #333333;
  padding: 0.5em;
  margin: 0.5em;
}
input#submit_button {
  width: 18%;
  cursor: pointer;
}
input#reset_button {
  width: 18%;
  cursor: pointer;
}
.hissu {
  text-align: center;
  font-size: 12px;
  line-height: 140%;
  color: #FFF;
  background-color: #D8070B;
  display: inline-block;
  padding: 5px;
  margin: 0px 0 0 10px;
}
/* ===================
 ページトップへ
====================== */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #89898a;
  opacity: 0.8;
  border-radius: 50%;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: FontAwesome;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/* ===================
　封緘機
====================== */
/*共通タイトル*/
.page-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-ttl_omakase{
  display:none;
}

.page-ttl h2 {
  font-size: 2.2rem;
  margin: 2em 1em;
}
.mb-3 {
  margin-bottom: 3em;
}
.mb-4 {
  margin-bottom: 4em;
}
/*トップ*/
.top-img {
  position: relative;
}
.top-img::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  padding-top: 50%;
}
.top-wrap {
  width: 100%;
}
.top-wrap img:first-of-type {
  display: block;
  position: absolute;
  width: 45%;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -12%);
}
.top-wrap img:last-of-type {
  display: block;
  position: absolute;
  bottom: -4%;
  left: 0%;
  padding: 0 8%;
}
.lead-img {
  width: 60%;
  padding: 0 2em;
  margin-bottom: 6em;
}
.lead-img img {
  width: 100%;
  max-width: 800px;
}
.lead-txt {
  padding: 0 1em;
  margin-bottom: 3em;
  font-size: 2.083vw;
}
.omakase {
  margin-bottom: 6em;
}
.omakase-box {
  display: flex;
  flex-wrap: wrap;
  padding: 2em;
}
.omakae-item {
  margin-inline: auto;
  position: relative;
  width: calc(100% / 4 - 40px);
  margin: 20px;
}
.omakase-txt {
  color: #fff;
  font-weight: 700;
  text-align: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
font-size: 1.5vw;
}
.omakae-item a:hover > .omakase-txt {
  color: #000;
}
.omakase-img img {
  display: block;
  width: 100%;
  height: auto;
}
.link-ttl {}
.link-ttl a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}
.link-ttl p {
  font-size: 30px;
  font-weight: bold;
}
.circle-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fb4b4c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 0 1em;
}
.case-merit {}
.case-box {
  width: 100%;
  display: flex;
  padding: 2em;
  margin-bottom: 4em;
}
.flex2025 {
width: 100%;
display: flex;
padding: 0em;
margin-bottom: 0em;
justify-content: center;
}
.flex2025waku{
padding: 2em;
margin-bottom: 4em;
}
.flex2025txt{
font-size: 3.75vw;
}
.atenaind{
text-align: left;
text-indent: -1em;
padding-left: 1em;
padding-left: 3.4em;
}
.case-item {
  width: calc(100% / 3 - 40px);
  margin: 20px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.case-item img {
  width: 20%;
  margin-bottom: 10px;
}
.case-item p {
  font-size: max(1.82vw, 18px);
  color: #0855a5;
  line-height: 1.6;
  padding: 1em;
  background-color: #dddddd;
  min-height: 200px;
}
.case-txt {
  font-family: "Sawarabi Mincho", serif;
  font-size: max(1.82vw, 18px);
  line-height: 1.6;
  margin-bottom: 3em;
}
.merit-img {
  margin-bottom: 4em;
}

.merit-imgsp {
  display: none;
}

.news-cnt {}
.news-cnt-ttl img {
  width: 10%;
  transform: translateY(30px);
}
.news-cnt-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e3f9fb;
  padding-bottom: 2em;
  margin-bottom: 6em;
}
.news-cnt-box h3 {
  font-size: 1.822vw;
  text-align: center;
  line-height: 1.6;
  padding-top: 1em;
}
.news-cnt-box img {
  width: 10%;
}
.tel-cnt {
  margin-bottom: 6em;
}
.tel-cnt img {
  width: 50%;
  max-width: 550px;
}
.tel-cnt h3 {
  font-size: 30px;
  font-family: "Sawarabi Mincho", serif;
line-height: 1.5em;
}
/*封函機*/
.solution-img {
  display: flex;
  transform: translateY(-100px);
  padding: 0 10%;
}
.solution-img img {
  display: block;
  width: calc(100% / 3 - 40px);
  margin: 20px;
}
.dekirukoto-box {
  width: 100%;
  display: flex;
  padding-top: 2em;
  margin-bottom: 4em;
}
.dekirukoto-img {
  width: calc(45% - 20px);
  margin: 10px;
}
.dekirukoto-txt-wrap {
  width: calc(55% - 20px);
  margin: 10px;
  display: flex;
}
.dekirukoto-txt-box {}
.dekirukoto-txt {
  display: flex;
  margin: 30px 10px;
font-weight: bold;
}
.dekirukoto-txt img {
  width: 35px;
  /*margin: 5px;*/
  display: block;
}

.dekirukoto-txt-60 img {
  width: 60px;
  margin: 5px;
  display: block;
}

.dekirukoto-txt p {
  margin: 5px 0px 5px 0px;
  font-size: 22px;
}
.fukanki-detail {
  margin-bottom: 6em;
}
.fukanki-ttl {
  text-align: center;
  color: #231815;
  font-weight: bold;
  margin-bottom: 1em;
}
.fukanki-ttl p:first-of-type {
  font-family: "Sawarabi Mincho", serif;
  font-size: 40px;
  margin-bottom: 0.2em;
}
.fukanki-ttl p:last-of-type {
  font-size: 45px;
  margin-bottom: 0.5em;
}
.youtube-box {
  margin-bottom: 7em;
}
.youtube-box img {
  display: block;
  width: 100%;
}
.youtube-box p {
  text-align: center;
  padding: 1em;
  background-color: #231815;
  color: #fff;
  font-size: 26px;
}
.fukanki-point {
  padding-top: 2em;
  margin-bottom: 6em;
}
.fukanki-point-box {
  display: flex;
  align-items: center;
  color: #231815;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #231815;
  padding: 0.5em 5em;
}
.fukanki-point-box h3 {
  text-align: center;
  border: 1px solid #231815;
  font-size: 26px;
  font-weight: bold;
  border-radius: 5px;
  padding: 5px 15px;
  margin: 10px;
}
.fukanki-point-box p {
  font-size: 20px;
  margin-left: 0.5em;
	font-weight: bold;
}
.kensa-cnt {
  /*  padding: 2em 10%;*/
  margin-bottom: 4em;
}
.kensa-box {
  display: flex;
}
.kensa-item {
  width: calc(100% / 3 - 40px);
  margin: 20px;
  background-color: #eee;
  color: #0855a5;
  font-size: 28px;
  padding: 4em 2em;
  text-align: center;
}
.kensa-txt {
  padding: 0.5em 16%;
  text-align: left;
}
.kensa-txt p {
  display: flex;
  align-items: center;
  font-size: 20px;
font-weight: bold;
}

.fukan_h2{
	font-size:3em;
	color:#F15A24;
padding-top: 2em;
}

.hassou_daikou_data_table,
.hassou_daikou_data_table tr,
.hassou_daikou_data_table td{
	border-collapse: collapse;
	border:1px solid #333;
}
.hassou_daikou_data_table{
	width:100%;
}

.hassou_daikou_data_table tr{
}

.hassou_daikou_data_table td{
	width:34%;
	padding:5% 8%;
	text-align:left;
	font-size:2em;
	font-weight:bold;
	line-height:1.4em;
	/*２行目字下げ*/
	padding-left:2.2em;
	text-indent:-1.2em;
	vertical-align:middle;
}

.hassou_daikou_data_table td span{
	display:block;
	margin-top:5%;
	font-size:24px;
	padding-left:0em;
	text-indent:0em;
}

.hassou_daikou_data_table td:first-letter{
	color:orange;
	letter-spacing:0.2em;
}

/* hachu_flow.html */

.hacchu_flow_soudan {
  padding-top:8%;
  padding-bottom:3%;
}

.hacchu_flow{
  padding-top:8%;
  padding-bottom:3%;
  text-align: center;
  color: #231815;
  font-weight: bold;
  margin-bottom: 1em;
}
.hacchu_flow p:first-of-type {
  font-family: "Sawarabi Mincho", serif;
  font-size: 30px;
  margin-bottom: 0.2em;
}
.hacchu_flow p:last-of-type {
  font-size: 24px;
  margin-bottom: 0.5em;
}


.hacchu_flow_title{
  width:80%;
  padding:1%;
  margin:0 auto;
  background:#99D2C2;
  border-radius:10px;
}

.hacchu_flow_img{
  display:block;
  max-width:70%;
  margin:5% auto;

}

.step_box{
  max-width:70%;
  margin:0 auto;
  position:relative;
}

.step_box_step{
  display:block;
  width:60px;
  position:absolute;
  font-weight:bold;
}

.step_box_num{
  display:block;
  width:60px;
  text-align:center;
  position:absolute;
  top:23px;
  font-size:3em;
}

.step_box_title{
  padding:3%;
  margin:0 0 3% 0;
  font-size:2.5em;
  font-weight: bold;
  border-bottom:#000 solid 1px;
font-family: "Sawarabi Mincho", serif;
}

.step_box_text{
  font-size:0.8em;
  text-align:left;
}

.step_box_arrow{
  display:block;
  width:50px;
  margin:8% auto;
}

.hacchu_flow_title{
  width:80%;
  padding:1%;
  margin:0 auto;
  background:#99D2C2;
  border-radius:10px;
}

/*contact form*/
.contact_form_wrap {
  text-align: center;
  color: #231815;
  font-weight: bold;
  margin-bottom: 1em;
}

.telnum{
  display:block;
  margin:5% auto;
  width:50%;
}

.contact_form{

  font-size:20px;
  padding-top:8%;
  padding-bottom:3%;
  text-align: center;
  color:#231815;
  font-weight: bold;
  margin-bottom: 1em;

}

.contact_form p{
   font-size:20px;
}

.contact_form_text p:first-of-type {
  font-family: "Sawarabi Mincho", serif;
  font-size: 30px;
  margin-bottom: 0.2em;
}
.contact_form_text p:last-of-type {
  font-size: 30px;
  margin-bottom: 0.5em;
}


.contact_form{
  width:70%;
  margin:0 auto;
}

.form_elements{
  margin:3% auto;
  text-align:left;
}

.form_elements input,.form_elements textarea{
  width:100%;
}

  .form-table {
    width: 100%;
    margin: 0px auto;
    border-collapse: separate;
    border-spacing: 10px;
    padding: 0em 0em;
  }
  .form-table th {
    padding: 1em 0;
    line-height: 180%;
    text-align: left;
    vertical-align: top;
    color: #222;
    width: 30%;
  }
  .form-table td {
    padding: 0.5em 0;
    line-height: 180%;
    text-align: left;
    vertical-align: top;
    color: #222;
    width: 100%;
  }

  .personal-info {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  .personal-info div {
    height: 250px;
    border: 1px solid #ddd;
    padding: 2em;
    overflow: auto;
    background-color: #fff;
  }
  .personal-info div p {
    text-align: left;
    line-height: 180%;
    word-wrap: break-word;
  }

  .consent-text {
    font-weight: bold;
    color: #4d4d4d;
    vertical-align: middle;
    margin-bottom: 2em;
	text-align: center;
  }
  .form-mail {
    /*display: block;*/
    text-align: left;
    font-weight: bold;
    margin: 10px;
  }
  .consent-btn {
    color: #FFFFFF;
    background-color: #223d8a;
    display: block;
    padding: 7px 20px;
    border-radius: 40px;
    width: 250px;
    margin: 10px auto;
	font-weight: bold;
  }
.kousoku{
font-size: 48px;
}


.contact_form_send_button{
  border:none;
}

#radio_01 input{
  width:auto;
}

#pp_wrap{
  text-align:center;
}

#pp_wrap input{
  
  width:auto;
}

#pp_txt{
  width:100%;
  background:#fff;
}

.kensasmall{
font-size: 20px;
line-height: 1.8;
}

@media (max-width: 1280px) {
  .lay-block-top {
    padding-top: 4rem;
  }
  .dekirukoto-img {
    width: calc(40% - 20px);
  }
  .dekirukoto-txt {
    /*margin: 10px;*/
  }
  .dekirukoto-txt-wrap {
    width: 70%;
  }
  .case-txt {
    font-size: 26px;
  }
  .news-cnt-box h3 {
    font-size: 26px;
  }
  .lead-txt {
    font-size: 26px;
  }
  .link-ttl p {
    font-size: 30px;
  }
  .step_box{
    max-width:90%;
  }

  .contact_form{

    font-size:20px;
    padding-top:16%;
    padding-bottom:3%;
    text-align: center;
    color:#231815;
    font-weight: bold;
    margin-bottom: 1em;
  
  }
}
@media (max-width: 1024px) {
  .lay-block-top {
    padding-top: 7.2rem;
  }
  .lay-block-page {
    padding-top: 7.2rem;
  }
  .dekirukoto-txt p {
    font-size: 20px;
  }
  .solution-img {
    transform: translateY(-30px);
  }

  .step_box_title{
    font-size:2.0em;
  }

  .step_box_text{
    font-size:0.6em;
  }
.omakase-txt {
  color: #fff;
  font-weight: 700;
  text-align: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
font-size: 10px;
}
}