@charset "UTF-8";
/* CSS Document */

* {
	padding: 0;
}


a:link,
a:visited,
a:hover,
a:active { text-decoration: underline; }

a:link      { color: #00BBFF; text-decoration: underline }
a:visited   { color: #9900FF; text-decoration: underline }
a:hover     { color: #9900FF; text-decoration: none }

body {
    margin: 0;
    padding: 0;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight:200;
    width:100%;
}

header,footer,main,nav,aside {
    box-sizing: border-box;
	padding: 0;
/*	padding: 0px 10px 0px 10px;
/*	padding: 0px 50px 0px 50px;*/
}
header {
    background-color: #FFFFFF;
}
footer {
    background-color: #FEAEEB;
	color: #000000;
}
main {
    background-color: #FFFFFF;
}
nav {
    background-color: #FFFFFF;
}
aside {
    background-color: #FFFFFF;
}

h1 {
	font-size: 16px;
	font-weight:500;
	color: #FFFFFF;
	float: left;
	padding: 4px 0px 4px 40px;
    background-color:#FEAEEB;
	height:20px;
    width:97%;
}

.grid_container {
	display: grid;/* グリッドコンテナであることを定義 */
    grid-template-areas: "header header header"/* 1行目 */
                         "nav main aside"/* 2行目 */
                         "footer footer footer";/* 3行目 */
    grid-template-rows: 880px 1fr auto; /* 行の高さ */
    grid-template-columns: 0% 1fr 0%; /* 列の幅 */
    grid-row-gap: 0px;/* 行と行の間の余白 */
    grid-column-gap: 0px;/* 列と列の間の余白 */
     /* ショートハンドだと
        grid-gap: 10px 10px;
        */
   height: 100vh;/* フッタの位置を最下部に */
}
.grid_header {
    grid-area: header;
}
.grid_footer {
    grid-area: footer;
}
.grid_main {
    grid-area: main;
}
.grid_nav {
    grid-area: nav;
/*    padding-left:100px;*/
}
.grid_aside {
    grid-area: aside;
}

.col_yellow {
	background-color: #FFFFCF;
}
.menu_pos {
	padding-top:10px;
	padding-left:10px;
	text-align:center;
}

.col_pos {
 padding: 1.4em  0;
}

.col_pos_c {
 padding:0.5em 0 0 0;
 margin:2.5em 0 0 0;
}

.col_h_pos {
 padding-bottom: 1.4em;
}

.mitem_pos {
  padding-top:10px;
  text-align: center;
}

.text_red{
 color: red;
}

.flex_cont {
 display: flex;
 flex-direction: row;
 justify-content: space-around;
 text-align:center;
}

.flex_cont_s {
 display: flex;
 flex-direction: row;
 justify-content:center;
/* text-align:center;*/
align-content:center;
 padding-left:100px;	
}

.flex_cont_l {
 display: flex;
 flex-direction: row;
 justify-content: space-around;
 text-align:baseline;
 align-content:left;
/* margin-left:340px;	
 width:700px;*/
}

.flex_cont_lb {
 display: flex;
 flex-direction: row;
 justify-content: space-around;
 text-align:baseline;
 align-content:left;
	/* height:400px;*/
 
 padding-left:40px;	
}

.flex_cont_lc {
 display: flex;
 flex-direction: row;
 justify-content:flex-start;
/* justify-content: space-around;*/
 text-align:baseline;
 align-content:center;
}

.flex_cont_m {
 display: flex;
 flex-direction: row;
 justify-content: space-around;
 text-align:baseline;
 align-content:center;
 height:18px;
}

.main_contents {
    margin-left:340px;
}

.blk_contents {
    margin-left:340px;
    padding-top:20px;
}

#footer_link {
   text-align:center;
}

#footer_link a {
   text-decoration: none;
   color:grey;
}

.com_name{
   font-size:18px;
   padding-left:60px;
}

.nav_listim{
    margin-bottom:-15px;
}

.alignright {
	float:right;
    padding-right:240px;
}

.alignleft {
	float:left;	
    padding-right:20px;
}

.center{
	text-align: center;
}

.centerp{
	text-align: center;
    padding-top:20px;
}

#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width:90px;
    height:90px;
    border:solid 6px #FF4DA6;
}
#page-top a {
    background: #ffffff;
    text-decoration: none;
    color: #FF4DA6;
    width: 90px;
    padding: 31px 0;
    text-align: center;
	display: block;
}
#page-top a:hover {
    text-decoration: none;
    background:#F8EFEF;
}

#page-top i {
	margin-top:-20px;
}

hr {
  width:85%;	
}
.footer_copy {
	width:99%;
	margin-top:20px;
	background:#FF80000;
    text-align: center;
	color:#FFFFFF;
    padding:4px;
	font-weight:500;
}

.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 100%;
}

.accbox label {
    display: block;
    margin: 1.5px 0;
    padding : 13px 12px;
/*    color: #ffba47;*/
    font-weight: bold;
    background: #ffffff;
    cursor :pointer;
    transition: all 0.5s;
}

.accbox label:before {
/*    font-family: "Font Awesome 5 Solid";
	content: "\f1570";*/
    padding-right: 8px;
	color:#79796a;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#ffffff;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    opacity: 0;
    transition: 0.8s;
	overflow: hidden;
    width:100%;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: #ffffff;
    opacity: 1;
}

.accbox .accshow p {
	padding-left: 5px;
	padding-top:2px;
	line-height: 21px;
	color: #000000;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
/*    content: "\f078";*/
	color: #79796a;
}

.k1_3 {
background: #000000;
box-shadow: 0px 0px 0px 5px #000000;
/*border: dashed 1px #ffffff;*/
padding: 0.2em 0.5em;
color: #ffffff;
margin-top:-20px;
margin-right:0px;
font-size:2.6em;
text-align:center;
}

.voice_com {
border:solid 2px #00B200;
margin-right:60px;
margin-left:60px;
margin-top:20px;
}

.omakase_com {
border:solid 2px #00B200;
margin:0.5em;
padding:0 2.0em;
}

.voice_t {
 padding:20px;
}

.line_silver {
    border-top:  solid 2px #E7E7E7;
	border-bottom: solid 2px #E7E7E7;
}

.head_box {
    padding: 0.5em 1em;
    margin: -1.5em 0 2.5em 0;
    color: #00BCD4;
    background: #FDEFDE;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}
.head_box p {
    margin: 0; 
    padding: 0;
}

.box_wrap {
  max-width: 70%;
  margin:0 15%;
  padding: 0.8rem;
  position: relative;
  background: linear-gradient(to right, #F0E7C3, #D5BB58);
/*  padding: 3px;*/
}

.box_mod {
  background: #FFFFE2;
  color: #000000;
  padding: 2rem;
}

#nayami ul {
/*  border: solid 2px skyblue;*/
/*  border-radius: 5px;*/
  margin:0;
  padding: 0.5em 0.1em 0.5em 1.8em;
  position: relative;
}

#nayami ul li {
  padding: 0.3em 0.1em 0.3em 1.8em;
  list-style-type: none!important;
  font-size:3.0em;
  font-weight:500;	
  line-height:1.0em;
  text-align:left;
}

#nayami ul li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight:400;
  position: absolute;
  left : 1em;
  color: #000000;
}

.nayami_line{
 border-top:solid 10px #52837F;
}

.h_box {
    width:65%;
    margin: 1.0em 17.5% 1.5em 17.5%;
	padding: 1.0em 0em;
/*    border: double 6px #7C9ED6;*/
    background: -moz-linear-gradient(#FF99CC, #FEAEEB);
    background: -webkit-linear-gradient(#FF99CC, #FEAEEB);
    background: linear-gradient(to bottom, #FF99CC, #FEAEEB);
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
    }

.h_box p {
    margin: 0; 
    padding: 0;
	font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size:3.2em;
	font-weight:500;
	line-height: 1.1em;
	text-align: center;
	color:#FFFFFF;
}

.h_l_box {
    width:100%;
    margin: 1.0em 0 1.5em 0;
	padding: 0.6em  0;
    background: -moz-linear-gradient(#FF99CC, #FEAEEB);
    background: -webkit-linear-gradient(#FF99CC, #FEAEEB);
    background: linear-gradient(to bottom, #FF99CC, #FEAEEB);
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
    }

.h_l_box p {
    margin: 0; 
    padding: 0;
	font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size:3.6em;
	font-weight:500;
	line-height: 1.1em;
	text-align: center;
	color:#FFFFFF;
}

.bg_pink {
	width:70%;
	margin:0 15%;
	padding:0.5em;
    background-color: #FFEEE8;
}

.career_te {
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     */
font-size:2.3em;
line-height:1.3em;
font-weight:bold;
text-align:center;
margin:-0.5em -0.6em;
}

.ban_te {
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     */
font-size:2.4em;
line-height:1.3em;
text-align:left;
font-weight:bold;
}

.info_h_te {
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     */
font-size:2.2em;
line-height:1.4em;
text-align:center;
}

.info_te {
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     */
font-size:2.0em;
line-height:1.3em;
text-align:left;
}

.prof_te {
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     */
font-size:2.0em;
line-height:1.3em;
font-weight:bold;	
text-align:left;
}

.sikaku_te {
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     */
font-size:1.4em;
line-height:1.2em;
text-align:center;
}

.promo_te {
margin:-0.2em 0 1.0em 0;
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
font-size:3.0em;
line-height:1.3em;
font-weight:500;
text-align:center;
}

.promo_h {
margin:-0.2em 0 1.0em 0;
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
font-size:4.2em;
font-weight:500;
line-height:1.2em;
text-align:center;
}

.reason_h_te {
font-size:3.0em;
line-height:1.3em;
text-align:center;
font-weight:bold;
}

.reason_te {
margin:0;
padding:0;	
font-size:2.0em;
line-height:1.5em;
text-align:left;
font-weight:500;
}

.bg_c_te {
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     */
font-size:3.4em;
line-height:1.2em;
text-align:center;
font-weight:bold;	
}

.ft_te {
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
font-size:1.2em;
line-height:1.2em;
text-align:center;
}

.prof_h_te {
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     */
font-size:2.4em;
font-weight:500;	
line-height:1.2em;
text-align:center;
}

.text_bcp5e {
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
font-size:2.8em;
line-height:1.4em;
font-weight:bold;
text-align:center;
}

.nayami_h {
margin:0;
padding:0.5em 0 0 0;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
font-size:3.4em;
font-weight:bold;
line-height:1.3em;
text-align:center;
color: #52837F;
}

.develop_com {
border:solid 3px #000000;
/*width:60%;*/
/*margin:1.5em 15% 0 20%;*/
}

.voice_te {
font-size:2.0em;
line-height:1.5em;
text-align:left;
font-weight:500;	
}

.line_de{
	border-bottom: solid 2px #008c00;
}

.text_lpl {
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
font-size:24px;
line-height:34px;
text-align:left;
margin:0 0 0 2%;
padding: 0.5em 0.1em 0.5em 0.8em;
}

.box6 {
    padding: 0.5em 1em;
    margin: 0.5em 2em 1.0em 2em;
    color: #FFFFFF;
    background: #000000;
}
.box6 p {
    margin: 0; 
    padding: 0;
}

.c_voice_te {
margin-left:0em;
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
font-size:2.4em;
line-height:1.5em;
font-weight:bold;
text-align:left;
}

.name_te {
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
font-size:2.0em;
line-height:1.5em;
text-align:left;
font-weight:400;	
}

.nagare_te {
margin:-0.5em 0 0.5em 0.5em;
padding:0 1.0em;	
font-size:1.4em;
font-weight:500;	
line-height:1.5em;
text-align:left;
}

.qa_te {
font-size:1.6em;
line-height:1.3em;
font-weight:500;	
}

.msg_te {
font-size:2.0em;
line-height:1.5em;
text-align:left;
font-weight:500;	
}

.banbox{
    margin:0 5.0em;
	padding: 0.5em 1em;
    background: -moz-linear-gradient(#FEFDAC, #FDF55A);
    background: -webkit-linear-gradient(#FEFDAC, #FDF55A);
    background: linear-gradient(to bottom, #FEFDAC, #FDF55A);
    color: #000000;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
    font-size:1.6em;
    line-height:1.5em;
    text-align:center;
}

.banbox img{
    border-radius: 10px;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, .5);
}

.banbox p {
    margin: 0; 
    padding: 0;
}

.line_nayami {
	border-bottom: solid 10px #52837F;
}

.nayamicheck {
	color: #EEEEEE;
}

.om_box{
	border: solid 2px #FF8000;
	outline: solid 5px #FF8000;
	outline-offset: 4px;
	margin: 6px;
}

.voice_h {
padding: 0.5em 1.0em;
text-align:left;
font-size:2em;
color: #000000;
background: #FFBFBF;
border-left: solid 5px #FD4507;
}

.text_lpl {
font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
font-size:2.0em;
line-height:1.4em;
text-align:left;
}

.msgbox {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #000000;
    background: #FFF;
    border: solid 4px #6091d3;
    border-radius: 10px;
}

.msgbox p {
    margin: 0; 
    padding: 0;
}

.phonehbox {
	width:860px;
	padding: 0.2em 0;
    margin: -0.6em calc((100% - 860px) / 2)  1.0em calc((100% - 860px) / 2);
	color: #000000;
    background: #FEAEEB;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
    font-size:3.2em;
    line-height:1.6em;
    text-align:center;
	font-weight:bold;
}

.phonehbox p {
    margin: 0; 
    padding: 0;
}

.phonebox {
	width:860px;
    margin: -1.6em calc((100% - 860px) / 2)  1.0em calc((100% - 860px) / 2);
    background: -moz-linear-gradient(#FEFDAC, #FDF55A);
    background: -webkit-linear-gradient(#FEFDAC, #FDF55A);
    background: linear-gradient(to bottom, #FEFDAC, #FDF55A);
    color: #000000;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
    font-size:1.6em;
    line-height:1.4em;
    text-align:left;
}

.phonebox p {
    margin: 0; 
    padding: 0.5em;
}

.kdcomp {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
}

.jibox {
	width:20%;
	margin: 1.0em 40% 0 40%;
	background: rgb(255,255,255);
    background: linear-gradient(100deg, rgba(255,255,255,1) 0%, rgba(255,128,0,1) 50%, rgba(255,255,255,1) 100%);
	color:#FFFFFF;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
    font-size:2.4em;
    line-height:1.4em;
    text-align:center;
	font-weight:bold;
}

.phonebox p {
    margin: 0; 
    padding: 0.5em;
}

.pricebox {
    padding: 0.2em 1em;
    margin: 1em calc( 100% / 4);
    color: #FFFFFF;
    background: #000000;
    border-bottom: solid 6px #3f87ce;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    border-radius: 9px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
    font-size:2.0em;
}
.pricebox p {
    margin: 0; 
    padding: 0;
}

.price_te {
    padding: 0.2em 1em;
    margin: -0.5em calc( 100% / 4) 1.0em calc( 100% / 4);
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
    font-size:2.0em;
	text-align:left;
    line-height:1.2em;
	color:#FF0000;
}

.rsetubox {
    padding: 0em 1.0em;
    margin: 1.0em calc( 100% / 5) 1.0em calc( 100% / 5);
    font-weight: bold;
	font-size:2.4em;
	text-align: center;
    color: #000000;/*文字色*/
    background: -moz-linear-gradient(#FEAEEB, #E6ECF7);
    background: -webkit-linear-gradient(#FEAEEB, #E6ECF7);
    background: linear-gradient(to bottom, #FEAEEB, #E6ECF7);
    border: solid 1px #FEAEEB;/*線*/
    border-radius: 25px;/*角の丸み*/
}
.rsetubox p {
    margin: 0; 
    padding: 0;
}

.under {
  border-bottom: dotted 6px #FF4D4D;
  line-height:1.8em;
}

.promo_box {
background: #a2831f;
background: -moz-linear-gradient(left,  #a2831f 0%, #f5ef7d 0%, #f5ef7d 0%, #dcb52b 0%);
background: -webkit-linear-gradient(left,  #a2831f 0%,#f5ef7d 0%,#f5ef7d 0%,#dcb52b 0%);
	background: linear-gradient(to right,  #a2831f 0%,#f5ef7d 0%,#f5ef7d 0%,#dcb52b 0%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a2831f', endColorstr='#dcb52b',GradientType=1 );
}

.voice_box{
    padding: 0.2em 0.5em;
    margin: 2em 0;
    background: #FFEAFB;
    box-shadow: 0px 0px 0px 10px #FFEAFB;
    border-bottom: dashed 1px #FEAEEB;
}
.voice_box p {
    margin: 0; 
    padding: 0;
}

.voice_tep {
	font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size:2.8em;
    line-height:1.3em;
    text-align:left;
    font-weight:500;
}

.voice_name {
font-size:2.4em;
line-height:1.3em;
text-align:left;
font-weight:500;	
}

.voiceimg {
border:solid 2px #E9DA94;	
border-radius: 10px;
background: #FFFFDB;
box-shadow:  -10px 10px 20px #d6d4cc, 
             10px -10px 20px #ffffff;
}
.voiceimgc {
border:solid 2px #E9DA94;
border-radius: 100%;
background: #FCF9F0;
box-shadow:  -10px 10px 20px #d6d4cc, 
             10px -10px 20px #ffffff;
}

.area_box {
    width:60%;
    margin: 1em 20%;
	padding: 0.8em 0em;
    background: #FFFFE2;
    }

.area_box p {
    margin: 0; 
    padding: 0;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     
    font-size:2.8em;
	line-height: 1.1em;
    font-weight:bold;
	text-align: center;
	color:#000000;
}

.area_line {
    width:60%;
    margin: -1.0em 20%;
	padding: 0.3em 0em;
    background: -moz-linear-gradient(#FEFCF9, #F6CF9C);
    background: -webkit-linear-gradient(#FEFCF9c, #F6CF9C);
    background: linear-gradient(to right, #F0E7C3, #D5BB58);
}


.flex_work {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr;
    grid-column-gap: 2%
    grid-row-gap: 2%
    justify-items: stretch
    align-items: stretch
}

.prom_h_te {
/*font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;     */
font-size:2.2em;
font-weight:500;	
line-height:1.2em;
text-align:center;
}

.setulist {
	padding:0 0 0 0.5em; 
	color:#000000;
    font-size:2.6em;
    font-weight:500;	
    line-height:1.4em;
    text-align:left;
}

.reason_box {
    width:30%;
    margin: 4.0em 35% 0 35%;
	padding: 1.0em 0em;
/*    border: double 6px #7C9ED6;*/
    background: -moz-linear-gradient(#FF99CC, #FEAEEB);
    background: -webkit-linear-gradient(#FF99CC, #FEAEEB);
    background: linear-gradient(to bottom, #FF99CC, #FEAEEB);
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
    }
.reason_box p {
    margin: 0; 
    padding: 0;
	font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size:2.8em;
	font-weight:bold;
	line-height: 1.1em;
	text-align: center;
	color:#000000;
}

.rlnag-right {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFFFFF;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.rlnag-right:before {
  content: "";
  position: absolute;
  top: 30%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #FFFFFF;
}

.rlnag-right p {
  margin: 0;
  padding: 0 0.5em;
}

.rlnag-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFFFFF;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.rlnag-left:before {
  content: "";
  position: absolute;
  top: 70%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #FFFFFF;
}

.rlnag-left p {
  margin: 0;
  padding: 0 0.5em;
}

.rlnag-left2 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #F3F7F7;
}

.rlnag-left2:before {
  content: "";
  position: absolute;
  top: 70%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #F3F7F7;
}

.rlnag-left2 p {
  margin: 0;
  padding: 0 0.5em;
}

.flex_cont_oy {
 width:70%;
 margin:-66px 15% 0 15%;
 display: flex;
 flex-direction: row;
 justify-content: space-around;
 text-align:left;
}

.text_mp_o {
font-size:2.0em;
font-weight:bold;
line-height:1.4em;
padding:0.2em 1.0em 0.2em 2.0em;
text-align:left;
width:30%;
}

.text_mp_oy {
font-size:2.0em;
font-weight:500;
line-height:1.4em;
padding:0.2em 1.0em 0.2em -4.0em;
text-align:left;
width:70%;
}
.compbox{
    width:100%;
	padding: 0 1em;
    margin: 1em 0 1.5em 0;
    background: #f4f4f4;
    border-left: solid 12px #D7584F;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.33);
    font-size:2.6em;
	font-weight:500;
    text-align:left;
}
.form_box {
position: relative;
color: black;
background: #d0ecff;
line-height: 1.4;
padding: 0.25em 0.5em;
margin: 2em 0 0.5em;
border-radius: 0 0px 10px 10px;
}

.form_box:after {/*タブ*/
  position: absolute;
/*  font-family: "Font Awesome 5 Free",'Quicksand','Avenir','Arial',sans-serif;
  content: '\f00c Check';*/
  width:97%;
  height:40px;
  background: #DC0003;
  color: #fff;
  left: 0px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 3px 7px 1px;
  font-size: 0.7em;
  line-height: 1;
  letter-spacing: 0.05em
  }

.form_box_2 {/*タブ*/
/*  position: absolute;*/
/*  font-family: "Font Awesome 5 Free",'Quicksand','Avenir','Arial',sans-serif;
  content: '\f00c Check';*/
  width:100%;
  height:100px;
  background:#DC0003;
  color: #fff;
  left: 0px;
  bottom: 100%;
  border-radius: 15px 15px 0 0;
  padding: 12px 7px 1px;
  font-size: 1.8em;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  font-weight:bold;  
  margin-top:-15px;
  margin-left:-7px;	
}

.form_back_i_1 {
	height:68px;
	background: url(../images/set-title.jpg) no-repeat center top;
    font-size:30px;
    padding-top:10px;
    font-weight:bold;
    color:#ffffff;
}

.form_back_i_2 {
	height:348px;
    background: url(../images/set-arrow.png) no-repeat center top;
    font-size:24px;
    padding-top:50px;
	padding-left:40px;
	font-weight:bold;
	text-align: left;
}

.form_btn {
	font-family: 'M PLUS Rounded 1c', sans-serif;
}