@charset "utf-8";

/*input一括設定*/
input{
    border: solid 1px #808080;
}
button{
    border: none;
}
:focus{
    outline: none;
}
/*ヘッダーの設定
---------------------------------------------------------------------------*/
.logo img {
    margin-top: 10px;
    margin-left: 30px;
    float: left;
    height: 35px;
}

.navprofile {
    float: right;
}

.gnav {
    float: left;
    margin-left: 10px;
}

.gnavarea li {
    padding: 0 10px;
}

.gnavarea a {
    text-decoration: none;
}

.headerarea {
    float: left;
    height: 60px;
}

.headerback {
    background-color: #20486d;
}

/*ローディング画像の設定
---------------------------------------------------------------------------*/
.loading_svg{
    background-color: #9e9e9ebf;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
}

.loading_svg img{
    width: 10%;
    position: relative;
    top: 42%;
    left: calc((100% - 10%) / 2);
}

.loaded{
    opacity: 0;
    visibility: hidden;
}

/*ログイン画面の設定
---------------------------------------------------------------------------*/
.login_body{
    background-size: cover;
}

.logincontainer {
    margin: 0 auto;
    width: 350px;
}

.loginarea {
    width: 350px;
    text-align: center;
    padding: 30px 0 20px;
    margin: 80px 0;
    background: #e2e2e2;
}

.loginlogo{
    width: 250px;
    height: auto;
}

.loginform {
    width: 300px;
    margin: 0 auto;
}

input.logintext {
    width: 100%;
    font-size: 18px;
    padding: 3px;
    border-radius: 5px;
}

.loginarea p {
    text-align: left;
    padding: 10px;
}

.loginarea .restart_text{
    background-color: mediumturquoise;
    padding: 3px;
    margin: 5px 16px;
    text-align: center;
    font-size: 19px;
    color: white;
    font-weight: bold;
}

input#loginsubmit {
    padding: 10px 40px;
    border-style: none;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #88b4de;
    color: #fff;
    font-weight: bold;
}

.information2 {
    margin: 10px auto;
    padding: 15px;
    border: 1px solid;
    border-radius: 5px;
    background-color: #fff;
    width: 600px;
    height: 200px;
    overflow-x: scroll;
}

.info2 {
    text-align: center;
    margin-bottom: 10px;
}

.information2 h4 {
    margin-top: 10px;
    margin-bottom: 5px;
}

/* TOPページの設定
---------------------------------------------------------------------------*/
.site_name {
    width: 25%;
    margin: 35px auto;
}

.site_name img {
    width: 100%;
}

.information {
    border: 1px solid #333;
    border-radius: 5px;
    margin: 15px 0;
    padding: 20px;
    font-size: 16px;
    background-color: #fdfdfd;
}

/* 進捗状況の設定
---------------------------------------------------------------------------*/
.progress {
    width: 861px;
    margin: 0 auto;
}

.progress_ul li {
    width: 150px;
    display: inline-block;
}

li.progress_li2 {
    width: 2%;
    position: relative;
    top: 25px;
}

.progress_li2 img {
    width: 100%;
}

.progress_li {
    background-color: #d3f7d3;
    border: 1px solid;
    color: #177517;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

.now {
    background-color: #3e8a3e;
    color: #fff;
    font-weight: bold;
}

/* 回答ページの設定
---------------------------------------------------------------------------*/

.question_area {
    border-radius: 5px;
    padding: 15px;
    margin-top: 25px;
    background-color: #f1fff8;
    border: 3px solid #89c997;
    margin-top: 25px;
    text-align: center;
}

.question_area h2 {
    width: 80%;
    height: 58px;
    color: #000000;
    border-bottom: 4px solid #48d1cc;
    padding: 0 10px;
    margin: 0 auto 10px auto;
    font-size: 35px;
    font-weight: bold;
}

/*大見出しの補足事項のカラー*/
.question_area p {
    color: #969696;
}

/*大見出しの下に蛍光ペン風ボーダー*/
.marker{
    display:inline-block;
    background: linear-gradient(transparent 50%, #98ffaf 50%);
}

.desc_area {
    border: 1px solid;
    border-radius: 5px;
    margin: 5px;
    padding: 5px 15px;
    background-color: #fff;
    color: #626262;
}

.dsc_info {
    border: 1px solid;
    border-radius: 5px;
    padding: 5px;
    color: #626262;
    background-color: #fdfdf0;
    padding-left: 1em;
}

/* 補足 ----------------------------*/

.supplement {
    border: 1px solid;
    border-radius: 5px;
    padding: 5px;
    color: #626262;
    background-color: #fdfdf0;
    padding-left: 1em;
}

/* 回答 ----------------------------*/
.answer_area {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

.answer_area_00{
/*	display: flex;*/
}

.answer_area_01{
/*	flex: 2;
	margin-right: 15px;*/
    text-align: center;
}

.answer_area_02{
/*	flex: 1.6;*/
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 7px;
}

.fa-search-plus{
    position: relative;
    bottom: 20px;
    right: 51px;
    cursor: pointer;
    background-color: lightseagreen;
    color: white;
    border: solid lightseagreen 3px;
    border-radius: 50%;
    padding: 6px;
    font-size: 20px;
    transition: 0.3s;
}

.fa-search-plus:hover{
    background-color: white;
    color:lightseagreen;
}

#popupImageBg{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.65;
    z-index: 1;
}
.popupimage{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 15px;
}

.q-head h3 {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    margin: 10px auto;
    vertical-align: text-bottom;
}

.q-head h4 {
    background-color: #20486d;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    padding-left: 10px;
    margin: 5px auto;
    vertical-align: text-bottom;
}

.couponTitle{
    background-color: #4da5bf;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding: 5px;
    padding-left: 15px;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
    margin-block-end: 0.33em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.a-head h4 {
    background-color: #9fbbe4;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    padding-left: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

.desc {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    background-color: #ffe4f9;
    color: #bf0000;
}

.desc2 {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    margin: 15px 15px 0 15px;
    background-color: #fbffef;
}

.desc2 p {
    font-weight: bold;
    color: #626262;
}

.desc h2, .desc h3, .desc h4 {
    font-weight: bold;
}

.menu_prev_img {
    width: 100%;
}

.desc h3 {
    background-color: #e87a7b;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    padding-left: 15px;
    margin-top: 20px;
}

.desc h4 {
    background-color: #626262;
    color: #fff;
    padding-left: 10px;
    margin-top: 15px;
}

h5 {
    padding: 3px;
    margin: 0;
    padding-left: 10px;
    background-color: #b5d0ea;
    color: #626262;
}

h5.part2 {
    border-radius: 5px;
    padding: 3px;
    margin: 5px;
    padding-left: 10px;
    background-color: #89c997;
    color: #626262;
    vertical-align: middle;
}


.green {
    background-color: #c6e4c6;
}

.red {
    background-color: #f2bfbf;
}

/*注意点の装飾（h2用）*/
.reqkome {
    color: #ffffff;
    font-weight: bold;
    margin-left: 1em;
    font-size: 10px;
    background: #f00;
    padding: 2px;
}

/*注意点の装飾（h4.5用）*/
.reqkome2 {
    color: #FF0000;
    font-weight: bold;
    padding-left: 1em;
    font-size: 13px;
}

.noreqkome {
    color: #626262;
    font-weight: bold;
    padding-left: 1em;
    font-size: 13px;
}

.info {
    color: #626262;
    padding-left: 15px;
}

.answer52_2_area {
    margin: 10px;
    padding: 5px;
    border: 1px solid;
    border-radius: 5px;
    background-color: #f2fdff;
}

.addbutton {
    width: 281px;
    margin: 0 auto;
}

.gkv {
    border: 1px solid;
    border-radius: 5px;
    padding: 5px;
    float: left;
    background-color: #9abb00;
    color: #fff;
    text-align: center;
    margin: 0;
    margin-left: 5px;
    width: auto;
    height: auto;
    font-size: 15px;
}

.directry {
    background-color: #deecfd;
    margin: 10px;
    padding: 5px;
    border-radius: 5px;
}

.gkwPopup {
    background-color: #626262;
    color: #fff;
    padding: 5px;
    padding-left: 15px;
}

.gkwPopup_p {
    margin: 5px;
}

.redPoint {
    color: #d82020;
}

.admin_soft {
    margin-left: 10px;
    font-weight: bold;
}

/* テーマ ---------------------------*/
.theme_block_1, .theme_block_2, .theme_block_3, .theme_block_4 {
    border-radius: 5px;
    padding: 5px;
    margin: 10px 0;
}

.theme_block_1 {
    background-color: #e3ebf5;
}

.theme_block_2 {
    background-color: #e9f9ea;
}

.theme_block_3 {
    background-color: #f9e4e5;
}

.theme_block_4 {
    background-color: #e3ebf5;
}

.q-head h4.red {
    background-color: #ef8184;
}

.q-head h4.green {
    background-color: #67b770;
}

.theme_zone {
    background-color: #cecfd0;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
    color: #fff;
}

.theme_heading h5 {
    background-color: #888888;
    color: #fff;
}

.theme_kome {
    font-weight: bold;
    padding-left: 1em;
    font-size: 13px;
}

.theme_info {
    border: 1px solid;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    background-color: #ffeded;
    color: #b16262;
}

.theme_info p {
    font-weight: bold;
}

.theme_main .a-head {
    width: 30%;
    margin: 0 5px;
}

.theme_service .a-head {
    width: 15%;
    margin: 0 5px;
}

.theme_main .a-head input[type="text"], .theme_service .a-head input[type="text"]{
    width: 95%;
}

/* 求人テーマ ----------------------------*/
.recruit_theme {
    padding: 15px;
}

div.recruit_theme_input input[type="text"] {
    width: 95%;
    font-size: 16px;
    padding: 3px;
}

/* 文章の方向性　例文 ----------------------------*/
.example {
    border: 1px solid;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    width: 98%;
    background-color: #fbe0c6;
    color: #626262;
}

.blinking {
    color: #f00;
    font-style: italic;
    font-weight: bold;
    padding-left: 5px;
}
/* 点滅 */
.blinking{
    -webkit-animation:blink 1.0s ease-in-out infinite alternate;
    -moz-animation:blink 1.0s ease-in-out infinite alternate;
    animation:blink 1.0s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

.menu_image_area {
    width: 48%;
    margin-left: 1%;
}

/* 雰囲気 ---------------*/
.mood_block1, .mood_block2, .mood_block3 {
    border-radius: 5px;
    padding: 5px;
    margin: 10px 0;
}

.mood_block1 {
    background-color: #e3ebf5;
}

.mood_block2 {
    background-color: #e9f9ea;
}

.mood_block3 {
    background-color: #f9e4e5;
}

/* 不明 ----------------------------*/
.form_area {
    display: inline-block;
}

/* ローディング設定
---------------------------------------------------------------------------*/
.loading_area {
    width: 800px;
    margin: 50px auto;
}

.loading_text h2 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}

.loading_text p {
    font-size: 22px;
    margin: 20px;
}

.loading_image {
    text-align: center;
    margin-top: 70px;
}

.loading_image img {
    width: 200px;
}

/* ページ、業種ゾーンの設定
---------------------------------------------------------------------------*/
.inline {
    display: inline-block;
    padding-top: 13px;
    width: 180px;
    height: 50px;
    border: 1px solid;
    border-radius: 5px;
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
}

.pagelist {
    background: #f3c6c9;
}

.pagelist2 {
    background: #c6e1f3;
}

.business_choice {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    margin-top: 5px;
}

.business_choice2 {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    margin-top: 5px;
}

.parts_zone {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    margin-top: 5px;
}

.typepreview_area {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    margin-top: 5px;
}

.page_choice_zone {
    background: url('/images/page_tag/page_choice_zone.jpg');
    background-size: 1150px;
    padding: 40px;
}

.page_choice_info {
    font-size: 11.5px;
    font-weight: bold;
}

.page_image {
    max-width: 1200px;
}

.page_image img {
    width: 100%;
    margin-top: 10px;
}

/* カラー選択ゾーンの設定
---------------------------------------------------------------------------*/
.headerback2 {
    position: fixed;
    z-index: 10;
    width: 100%;
}

.color_choice {
    border: 1px solid;
    border-radius: 5px;
    background-color: #fff;
    width: 150px;
    height: 45px;
    text-align: center;
    margin: 5px 10px 0 0;
}

.color_choice p {
    color: #000;
    position: relative;
    top: 8px;
}

.color_choice_area {
    padding: 0 20px 20px;
}

.color_zone {
    border: 1px solid;
    border-radius: 5px;
    width: 100px;
    height: 50px;
    text-align: center;
    margin-left: 5px;
    margin-bottom: 5px;
}

.color_zone p {
    position: relative;
    top: 12px;
    color: #000;
}

.color_zone2 {
    width: 100px;
    height: 50px;
}

.color_zone3 li {
    display: inline-block;
}

.color_zone3 button {
    width: 100px;
    height: 50px;
    border-radius: 5px;
    font-size: 18px;
    margin: 0;
    margin-bottom: 3px;
}

.selected {
    border: 5px solid #00f3ff;
}

.blink {
  animation: blinkAnime 1s infinite alternate;
}
@keyframes blinkAnime{
   0% { border: 5px solid #ff0000 }
 100% { border: 5px solid #fff800 }
}

.labelarea h3 {
    background-color: #60a2cc;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    padding-left: 15px;
    border-radius: 6px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.kome {
    padding-left: 20px;
}

.color_change {
    width: 150px;
    height: 60px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    background-color: #3888da;
    border: 3px solid #1c3370;
    color: #ffffff;
}

.color_choice_area_title .kome {
    font-size: 16px;
}

.colorInput p {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    background-color: #eee3f9;
}

/* リザルト画面設定
---------------------------------------------------------------------------*/
.prev_area {
    border: 1px solid;
    border-radius: 5px;
    padding: 5px;
    background-color: #626262;
    margin: 10px 0;
}

.result_area {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
}

.prev_title {
    color: #fff;
    padding: 5px;
    padding-left: 15px;
}

.prev_title h3 {
    font-weight: bold;
}

.result_label {
    width: 150px;
}

.result_color_prev {
    width: 33%;
    float: left;
}

.result_type_prev {
    width: 280px;
    border: 1px solid;
    border-radius: 5px;
    margin: 15px 10px 0 0;
    padding: 5px 15px;
    text-align: center;
    background: #c6e0f3;
}

.color_prev {
    width: 260px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid;
}

.page_prev_area {
    margin-bottom: 15px;
    font-size: 18px;
}

.result_label2 {
    font-weight: bold;
}

.page_prev p {
    font-weight: bold;
}

.result_label2 h3 {
    background-color: #626262;
    color: #fff;
    padding: 5px;
    padding-left: 15px;
    font-weight: bold;
    margin-bottom: 15px;
}

.basic_question {
    background-color: #fff;
}

.result_area {
    background-color: #fff;
}

.information h2 {
    font-size: 18px;
    font-weight: bold;
}

.analysis_form {
    display: inline;
}

/* 確認画面の設定
---------------------------------------------------------------------------*/
.form_area_check {
    width: 521px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 50px;
}

/* サンキュー画面の設定
---------------------------------------------------------------------------*/
.thanks_area {
    margin: 20px auto;
    width: 90%;
    max-width: 750px;
    color: #438c53;
    background-color: #effdf2;
    font-size: 16px;
    padding: 20px;
}

.thanks_area h3 {
    padding-bottom: 12px;
}

/* ポップアップ
---------------------------------------------------------------------------*/
.popupButton {
    border: none;
    background: #323232;
    color: #fff;
    padding: 20px;
    border-radius: 33px;
    cursor: pointer;
}

.popup {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    background: rgba(5, 5, 5, 0.71);
    opacity: 0;
    transition:all .3s;
    transform: scale(0);
}

.popup.is-active {
    transform: scale(1);
    opacity: 1;
}

.popup_content {
    position: absolute;
    z-index: 30;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #626262;
    width: 95vw;
    height: 95vh;
    border-radius: 5px;
}

.popup_content_closeButton {
    cursor: pointer;
    text-align: right;
}

.color_choice_area_title h2 {
    color: #fff;
    float: left;
}

.close_btn button {
    width: 50px;
    height: 28px;
    float: right;
    margin: 0;
    background: #efb8b8;
}

.close_btn button:hover {
    color: #fff;
    background-color: #f35252;
    border-radius: 5px;
}

/* サジェストチェック　ポップアップ ----------------------------*/
.popup_content2 {
    position: absolute;
    z-index: 30;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 800px;
    border-radius: 5px;
}

.popup_content_description2 {
    margin: 0;
}

.suggest_h {
    background-color: #626262;
    color: #fff;
    padding: 5px;
    padding-left: 15px;
    font-weight: bold;
    text-align: center;
}

.keyword1 h4 {
    background-color: #6994b9;
    color: #fff;
    padding: 5px;
    padding-left: 15px;
    font-weight: bold;
    text-align: center;
    border-radius: 0;
    margin-top: 0;
}

p#keyp1 {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
}

.keyword2 h4 {
    background-color: #6994b9;
    color: #fff;
    padding: 5px;
    padding-left: 15px;
    font-weight: bold;
    text-align: center;
    border-radius: 0;
    margin-top: 0;
}

p#keyp2 {
    font-size: 30px;
    text-align: center;
    font-weight: bold;
}

.popup_content5 {
    position: absolute;
    z-index: 30;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 650px;
    height: auto;
    border-radius: 5px;
}

/* タイプチェック　ポップアップ ----------------------------*/
.popup_content3 {
    position: absolute;
    z-index: 30;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 1220px;
    height: 550px;
    border-radius: 5px;
}

.prev_section2_2 {
    width: 600px;
    height: 460px;
}

.popup_content_description3 {
    margin: 0;
}

/* 最終確認　ポップアップ ----------------------------*/
.popup_content4 {
    position: absolute;
    z-index: 30;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 1200px;
    height: 500px;
    border-radius: 5px;
}

.popup_content_description4 {
    margin: 0;
}

.prev_area4 {border: 1px solid;
    border-radius: 5px;
    padding: 5px;
    background-color: #626262;
    margin: 0;
}

.preview_area4 {
    height: 500px;
    overflow: scroll;
}

/* 成功・削除の設定
---------------------------------------------------------------------------*/
.success {
    border-radius: 12px;
    margin: 20px 20px 20px 20px;
    padding: 10px;
    padding-left: 20px;
}

.delete {
    border-radius: 12px;
    margin: 20px 20px 20px 20px;
    padding: 10px;
    padding-left: 20px;
}

.caution {
    background-color: #fbdddd;
    color: #e02929;
    border: 1px solid;
    border-radius: 5px;
    margin: 0 20px;
    padding: 10px;
    padding-left: 20px;
}

.caution2 {
    background-color: #7d7d7d;
    color: #ffffff;
    border: 1px solid;
    border-radius: 5px;
    margin: 0 20px;
    padding: 10px;
    padding-left: 20px;
}

.caution2 p {
    font-weight: bold;
}

.caution p {
    font-weight: bold;
}

.caution3{
    padding-left: 20px;
    margin-bottom: 15px;
}

/* フロー図の設定
---------------------------------------------------------------------------*/
.flow {
    float: left;
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    height: 56px;
    margin: 15px 2px;
    width: 113px;
    font-size: 12px;
    text-align: center;
}

.flow2 {
    margin-left: 353px;
}

.result_info {
    margin-top: 9px;
    font-size: 15px;
}

#wordCount, #wordCount2, #wordCount3 {
    color: #f00;
    font-size: 21px;
}

#wordCount4 {
    color: #f00;
    font-size: 40px;
    padding-left: 45px;
}

.google_evaluation {
    border: 1px solid #f00;
    border-radius: 5px;
    margin: 0 5px 15px;
    padding: 15px;
    background-color: #ffe4f9;
    width: 50%;
}

.kome3 {
    font-size: 15px;
}

.times {
    margin: 5px;
}

.a-check {
    border: 1px solid;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    padding-left: 15px;
    background-color: #fefefe;
}

.a-check2 {
    border: 1px solid;
    border-radius: 5px;
    margin: 30px 15px 0;
    padding: 5px;
    padding-left: 15px;
    background-color: #fefefe;
}

.question_zone {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 15px;
}

.quescheck_title h3 {
    border: 3px solid #b8d3ef;
    border-radius: 5px;
    padding: 10px;
    background-color: #f1f8ff;
    color: #3e3d3d;
}

.colorInput {
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    font-weight: bold;
    font-size: 14px;
}

.sitemap {
    width: 100%;
}


div.type_select2 {
    width: 446px;
    margin: 0 auto;
    margin-top: 20px;
}

div.type_select3 {
    width: 670px;
    margin: 0 auto;
    margin-top: 20px;
}

.button_area2_3 {
    width: 645px;
    margin: 0 auto;
}

.image_check {
    width: 325px;
    margin: 0 auto;
}

.typ_info {
    border: 1px solid;
    border-radius: 5px;
    margin: 5px 0;
    padding: 5px;
    background-color: #f9dada;
    color: #626262;
}

.typ_info2 {
    border: 1px solid;
    border-radius: 5px;
    margin: 5px 0;
    padding: 5px;
    background-color: #deecfd;
    color: #626262;
}

.typ_info h5 {
    border-radius: 5px;
    padding: 3px;
    margin: 5px;
    padding-left: 10px;
    background-color: #f98784;
    color: #ffffff;
}

.typ_info2 h5 {
    border-radius: 5px;
    padding: 3px;
    margin: 5px;
    padding-left: 10px;
    background-color: #9fbbe4;
    color: #ffffff;
}

.typ_info p, .typ_info2 p {
    padding: 0 10px;
}

.seo_words {
    margin: 10px;
    color: #626262;
    border: 1px solid;
    border-radius: 5px;
    padding: 5px;
    background: #eff6fd;
}

.empty_btn_area {
    width: 280px;
    height: 45px;
    margin: 20px;
}

.style_info {
    border: 1px solid;
    border-radius: 5px;
    margin: 10px;
    padding: 5px;
    background-color: #f2f9ff;
    color: #626262;
}

.suggest_button2 {
    margin: 0;
    margin-top: 10px;
    width: auto;
    height: auto;
}

.juicer_manual {
    width: 280px;
    border-radius: 5px;
    font-size: 18px;
    background-color: #a1b91e;
    color: #ffffff;
    margin: 20px;
    text-align: center;
    padding: 8px 0px;
    float: left;
}

.juicer_manual:hover {
    color: #fff;
    background-color: #3ba518;
    border-radius: 5px;
}

.relative {
    position: relative;
}

.pb60 {
    padding-bottom: 60px;
}

.replication li:nth-child(even) {
    border-bottom: 3px solid #e0e0e0;
}

.replication li:nth-child(odd) {
    border-bottom: 3px solid #c8e6f5;
}

.logo_create {
    padding: 10px;
    margin: 0 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #fefefe;
    border-radius: 5px;
    background: #67c7f5;
    color: #fefefe;
    width: 300px;
    text-align: center;
    display: inline-block;
}

.logo_create:hover {
    background: #00abff;
}

.copy_btn_area {
    padding: 15px;
    background-color: #e9f5ff;
}

.copy_btn_area button {
    width: 9%;
    background-color: #2576c0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    margin-right: 0.5%;
    font-size: 13px;
}

.copy_btn_area button.gray {
    background: #bdc3c7;
    color: #869198;
    cursor: default;
}

.copy_btn_area button:hover {
    background-color: #45a6ff;
}

.copy_btn_area button.gray:hover {
    background: #bdc3c7;
    color: #869198;
}

.copy_btn_zone {
    padding: 5px;
}

.desc3 {
    border: 1px solid #89c997;
    border-radius: 5px;
    padding: 10px;
    background-color: #f0fff8;
    color: #626262;
    margin: 0 10px;
}

.desc3 li {
    display: inline-block;
    font-size: 13px;
}

.text a {
    display: block;
    width: 90px;
    text-align: center;
    top: 5px;
    right: 0;
    position: absolute;
}

#prevBtn_area {
    cursor: default;
}

.prevBtn_pc {
    margin: 0;
    width: 200px;
    background-color: #3c8e89;;
    font-size: 14px;
    font-weight: bold;
    height: auto;
}

.inputAlert {
    display : inline-block;
    background : #ff0000;
    color : #ffffff;
    font-weight : bold;
    font-size : 12px; 
    letter-spacing : -1px;
    line-height : 1.7;
    vertical-align : top;
    margin : 0;
    padding : 3px;
    transform : scale(1.1)
                      translatex(34%)
                      translateY(18%);
    animation : newAnime .7s infinite alternate;
}
@keyframes newAnime {
    0%    { color : rgb(255, 0, 0.88);
                background : #ffffff;
             }
   100% { color : #ffffff;
               background : rgb(255, 0, 0.88);
            }
}

.error_zone {
    background-color: #ffdfdf;
    color: #a94c4c;
    margin: 10px 10px 0;
    padding: 10px 20px;
}

.multi_shop_zone {
    padding: 5px;
    margin-bottom: 15px;
    border: 5px solid #20486d;
    background-color: #f5fcff;
}

.multi_shop_zone1{
    margin-top: 56px;
}

.a-head .flyer_gift input:first-child {
    width: calc((100% - 15px) * 0.3);
}

.a-head .flyer_gift input:last-child {
    width: calc((100% - 15px) * 0.6);
}

textarea.flyer_remarks {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    height: 100px;
}

.icon_vol {
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
}

#iconNameVol,
#iconNameVol2,
#iconNameVol3,
#iconNameVol4,
#iconNameVol5,
#iconNameVol6,
#iconNameVol7,
#iconNameVol8,
#iconNameVol9,
#iconNameVol0,
#iconNameVol11,
#iconNameVol12,
#iconNameVol13 {
    font-weight: bold;
}

.redkome {
    color: #f54747;
}

.description img {
    width: 80%;
    display: block;
    margin: 0 auto;
}

.w70p {
    width: 70%;
}

.change_all_time{
    margin: 13px 0 0 0;
    width: 914px;
    text-align: right;
}

.change_all_time2{
    font-size:18px;
}


::-webkit-scrollbar{
  width: 14px;
}
::-webkit-scrollbar-track{
  background: #e6e6e6;
  border: none;
  border-radius: 10px;
/*  box-shadow: inset 0 0 2px #777; */
}
::-webkit-scrollbar-thumb{
  background: #bdbdbd;
  border-radius: 10px;
  box-shadow: none;
}


/*新バージョン
---------------------------------------------------------------------------*/
.radioclub4 input {
    display: none;
}

.radioclub4 label {
    display: block;
    float: left;
    cursor: pointer;
    width: 20%;
    margin: 0;
    padding: 10px;
    background: #ececec;
    color: #a2a2a2;
    font-size: 13px;
    text-align: center;
    line-height: 1;
    transition: .2s;
    border-right: 3px solid #f9f9f9;
    border-bottom: 3px solid #f9f9f9;
}

.radioclub4 input[type="radio"]:checked + .switch4 {
    background-color: #eab782;
    color: #fff;
}

.checkClub7 input {
    display: none;
}

.checkClub7 label{
    display: block;
    float: left;
    cursor: pointer;
    width: 20%;
    margin: 0;
    padding: 10px;
    background: #e8e8e8;
    color: #a2a2a2;
    font-size: 13px;
    text-align: center;
    line-height: 1;
    transition: .2s;
    border-right: 3px solid #f9f9f9;
    border-bottom: 3px solid #f9f9f9;
}

.checkClub7 input[type="checkbox"]:checked + .switch4 {
    background-color: #93BAF1;
    color: #fff;
}

.checkClub8 input {
    display: none;
}

.checkClub8 label{
    display: block;
    float: left;
    cursor: pointer;
    width: 25%;
    margin: 0;
    padding: 10px;
    background: #e8e8e8;
    color: #a2a2a2;
    font-size: 13px;
    text-align: center;
    line-height: 1;
    transition: .2s;
    border-right: 3px solid #f9f9f9;
    border-bottom: 3px solid #f9f9f9;
}

.checkClub8 input[type="checkbox"]:checked + .switch4 {
    background-color: #93BAF1;
    color: #fff;
}

textarea.reset_text1 {
    width: 95%;
    height: 100px;
}

.customer_zone .dsc_info, .form_contents .dsc_info {
    padding: 7px 10px;
    margin: 5px;
    color: #8c8c8c;
    background-color: #fffde1;
    font-size: 13px;
    line-height: 16px;
    border: none;
    border-radius: unset;
}

.red_dsc li, .form_contents .red_dsc {
    color: #d24545;
    font-weight: bold;
}

h6 {
    border-radius: 5px;
    padding: 3px;
    margin: 5px;
    padding-left: 10px;
    background-color: #c9eccc;
    color: #626262;
}

.p5 {
    padding: 5px;
}

.agree2 {
    padding: 5px;
    font-size: 13px;
}

.a-head.int_input input[type="text"] {
    width: 200px;
}

.checkClub9 {
    margin: 10px;
}

.checkClub9 input {
    display: none;
}

.checkClub9 label{
    display: block;
    float: left;
    cursor: pointer;
    margin: 2px 1px;
    padding: 10px;
    background: #fff;
    color: #869198;
    font-size: 10px;
    text-align: center;
    line-height: 1;
    transition: .2s;
    border: 1px solid;
}

.checkClub9 input[type="checkbox"]:checked + .switch5 {
    background-color: #93BAF1;
    color: #fff;
    border: 1px solid #2b4e96;
    padding: 10px;
}

.attribute_service p {
    font-size: 10px;
    background: #9fa6d4;
    color: #fff;
    font-weight: bold;
    width: 70px;
    text-align: center;
}

.eigyo_table th{
    color: #fff;
    background-color: #9fbbe4;
    border: solid 1px #869198;
    padding: 5px;
    text-align: center;
    font-weight: bold;
}

.eigyo_table td {
    color: #433E53;
    border: solid 1px #869198;
    padding: 5px;
    text-align: center;
}

.eigyo_table tr:nth-child(odd){
    background-color: #fff;
}

.eigyo_table tr:nth-child(even){
    background-color: #f0f0f0;
}

.eigyo_table table {
    border: solid 1px;
    border-collapse: collapse;
    margin: 15px auto;
    width: 600px;
}

.eigyo_table .radioclub200 label {
    width: 80px;
    font-size: 10px;
}

.eigyo_table .radioclub200 {
    width: 600px;
    margin: 10px auto 0;
}

.tub_input {
    display: none;
}

.eigyo_table .tub_topic {
    width: 100px;
}

#tub_shop1_1:checked ~ #eigyoTableArea1_1,
#tub_shop2_1:checked ~ #eigyoTableArea2_1,
#tub_shop3_1:checked ~ #eigyoTableArea3_1,
#tub_shop4_1:checked ~ #eigyoTableArea4_1,
#tub_shop5_1:checked ~ #eigyoTableArea5_1,

#tub_shop1_2:checked ~ #eigyoTableArea1_2,
#tub_shop2_2:checked ~ #eigyoTableArea2_2,
#tub_shop3_2:checked ~ #eigyoTableArea3_2,
#tub_shop4_2:checked ~ #eigyoTableArea4_2,
#tub_shop5_2:checked ~ #eigyoTableArea5_2,

#tub_shop1_3:checked ~ #eigyoTableArea1_3,
#tub_shop2_3:checked ~ #eigyoTableArea2_3,
#tub_shop3_3:checked ~ #eigyoTableArea3_3,
#tub_shop4_3:checked ~ #eigyoTableArea4_3,
#tub_shop5_3:checked ~ #eigyoTableArea5_3,

#tub_shop1_4:checked ~ #eigyoTableArea1_4,
#tub_shop2_4:checked ~ #eigyoTableArea2_4,
#tub_shop3_4:checked ~ #eigyoTableArea3_4,
#tub_shop4_4:checked ~ #eigyoTableArea4_4,
#tub_shop5_4:checked ~ #eigyoTableArea5_4,

#tub_shop1_5:checked ~ #eigyoTableArea1_5,
#tub_shop2_5:checked ~ #eigyoTableArea2_5,
#tub_shop3_5:checked ~ #eigyoTableArea3_5,
#tub_shop4_5:checked ~ #eigyoTableArea4_5,
#tub_shop5_5:checked ~ #eigyoTableArea5_5,

#tub_shop1_6:checked ~ #eigyoTableArea1_6,
#tub_shop2_6:checked ~ #eigyoTableArea2_6,
#tub_shop3_6:checked ~ #eigyoTableArea3_6,
#tub_shop4_6:checked ~ #eigyoTableArea4_6,
#tub_shop5_6:checked ~ #eigyoTableArea5_6,

#tub_shop1_7:checked ~ #eigyoTableArea1_7,
#tub_shop2_7:checked ~ #eigyoTableArea2_7,
#tub_shop3_7:checked ~ #eigyoTableArea3_7,
#tub_shop4_7:checked ~ #eigyoTableArea4_7,
#tub_shop5_7:checked ~ #eigyoTableArea5_7,

#tub_shop1_8:checked ~ #eigyoTableArea1_8,
#tub_shop2_8:checked ~ #eigyoTableArea2_8,
#tub_shop3_8:checked ~ #eigyoTableArea3_8,
#tub_shop4_8:checked ~ #eigyoTableArea4_8,
#tub_shop5_8:checked ~ #eigyoTableArea5_8,

#tub_shop1_9:checked ~ #eigyoTableArea1_9,
#tub_shop2_9:checked ~ #eigyoTableArea2_9,
#tub_shop3_9:checked ~ #eigyoTableArea3_9,
#tub_shop4_9:checked ~ #eigyoTableArea4_9,
#tub_shop5_9:checked ~ #eigyoTableArea5_9,

#tub_shop1_10:checked ~ #eigyoTableArea1_10,
#tub_shop2_10:checked ~ #eigyoTableArea2_10,
#tub_shop3_10:checked ~ #eigyoTableArea3_10,
#tub_shop4_10:checked ~ #eigyoTableArea4_10,
#tub_shop5_10:checked ~ #eigyoTableArea5_10
{
    display: block;
    position: relative;
    z-index: 0;
}

.container input:checked + .tub_topic {
    color: #20486d;
    background-color: #fefefe;
    border-left: 5px solid #20486d;
    border-top: 5px solid #20486d;
    border-right: 5px solid #20486d;
    position: relative;
    z-index: 1;
}

.key_image2 {
    width: 100%;
    height: 200px;
    background: url(/images/key_image2.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

h1 {
    text-align: center;
    padding-top: 70px;
    color: white;
}

.key_image2 p {
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

.key_ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 35px;
    margin-left: 5px;
    background-color: #f6f6f6;
    width: 98%;
}
.key_ul li {
    padding: 5px;
    border-bottom: 1px solid #626262;
    cursor: pointer;
}
key_ul li:hover:not(.header) {
  background-color: #c8e4ff; /* Add a hover effect to all links, except for headers */
}

.checkClub9 label.said {
    border: 2px solid;
    padding: 9px;
}

/*-- 営業時間の枠を増やす
---------------------------------------------------------------------------*/
.addTimeEigyoBox {
    margin: 40px auto;
    width: 400px;
    display: flex;
    padding: 10px;
    background-color: #fffde1;
}
.buttonEigyo {
    width: 50px;
    height: 30px;
}
.addTimeEigyoText {
    color: #d24545;
    font-weight: bold;
    width: 60%;
    line-height: 50px;
    text-align: center;
    font-size: 14px;
}
.buttonEigyo:first-child {
    background-color: #2d3dbd;
    margin: 10px;
}
.buttonEigyo:nth-child(2) {
    background-color: #bdc3c7;
    cursor: default;
    margin: 10px 0;
}
.addTimeEigyoWrap {
    width: 40%;
    display: flex;
    align-items: center;
}

/*-- SKでログインしても代理店の代わりに回答できるようにする
---------------------------------------------------------------------------*/
.selectAns {
    padding: 5px;
    font-size: 15px;
    margin: 5px;
}
.recording_area {
    background-color: #e0e0e0;
    padding: 15px 5px 5px;
}
.recording_area button {
    margin: 0;
    width: 100px;
    height: auto;
    font-size: 16px;
}



/* FB・Instagram　IDPASS入力欄追加
--------------------------------------------------------------------------*/
.blog_admin label {
    display: inline-block;
    width: 70px;
}
.blog_admin div label {
    position: relative;
    top: -3px;
    font-size: 0.83em;
    text-align: center;
    background-color: #e2dfe8;
    color: #858c96;
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 5px;
}
.form_contents .blog_admin input[type="text"] {
    width: 30%;
}
.link_btn {
    display: inline-block;
    position: relative;
    bottom: 2px;
    border: 1px solid;
    border-radius: 7px;
    padding: 4px 12px;
    background-color: #88b4de;
    color: #fff;
    font-size: 13px;
}
.link_btn:hover {
    background: #2d3dbd;
}


/* 営業担当社名サジェスト
--------------------------------------------------------------------------*/
.search .relative {
    display: inline-block;
}

.key_ul2 {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 35px;
    left: 90px;
    margin-left: 5px;
    background-color: #f6f6f6;
    width: 450px;
    overflow-y: scroll;
    max-height: 200px;
}

.key_ul2 li {
    padding: 5px 5px 5px 10px;
    border-bottom: 1px solid #626262;
    cursor: pointer;
    text-align: left;
}

.key_ul2 li:hover {
    background-color: #7ca1c4;
    color: #FFF;
}

.keyword_textarea {
    height: 6em;
    width: 97%;
}

