﻿/* ===================================================================== */
/*  The following CSS was created using Theme Editor.                    */
/*  To modify this CSS, click "Open Theme Editor".                       */
/* ===================================================================== */

/* ===================================================================== */
/*  Root - CSS Variables                                                 */
/* ===================================================================== */

:root {
	
    /* Color - Brand */
    --color-primary: #009900;
    --color-secondary: #009900;

    --color-primary-hover: #197319;
    --color-primary-selected: rgba(0, 153, 0, .12);
	
    /* App Settings */
    --color-background-body: #f3f6f8;
    --color-background-login: #26a65b;
    --header-color: #ffffff;
	
    /* Dark Theme */
    --background-dark-theme: rgba(255, 255, 255, .1);
    --background-dark-theme-hover: rgba(255, 255, 255, .2);
}

/* Login and Splash Color */

.login-screen,
.layout-native .login-screen {
    background-color: var(--color-background-login);
}

.login-form,
.tablet .layout-native .login-form {
    background-color: var(--background-dark-theme);
}

.login-screen .animated-label-text {
    color: rgba(255, 255, 255, 0.7);
}

.splash-loading {
    background-color: rgba(255, 255, 255, 0.2);
}

.splash-loading-bar {
    background: var(--color-neutral-0);
}

.login-screen label {
    color: rgba(255, 255, 255, 0.7);
}

.login-form a {
    color: rgba(255, 255, 255, 0.7);
}

.login-screen [class*='text-neutral'] {
    color: var(--color-neutral-0);
}


body {
    font-family: 'Meiryo-UI', sans-serif;
    background-color: white;
}

.MainContents {
    width: 100%;
    font-size: 14px;
    text-align: center;
}

.MainContents_1 {
    width: 100%;
    font-size: 16px;
    text-align: center;
}

.MainContents_2 {
    width: 100%;
    font-size: 14px;
    text-align: center;
}

.desktop .HeaderControll {
    width: calc(100% / 12 * 8);
}

/* 画面幅が600px以下の場合の設定 */
@media (max-width: 600px) {
    .desktop .HeaderControll {
        width: 100%;
        padding: 0px 10px;
        }    
}


.desktop .HeaderContent {
    margin: auto;
    max-width: 1280px;
    padding: 0 40px;
    text-align: center;
    width: 100%;
}



.desktop .WidthControll {
    width: calc(100% / 12 * 8);
    margin: auto;
    padding: 40px;
}

@media (max-width: 600px) {
    .desktop .HeaderContent {
        width: 100%;
        padding: 0px 0px; /* 左右の余白を最小限に設定 */
    }

    .desktop .WidthControll {
        width: 100%;
        margin-top: 50px;
        padding: 10px;
       
    }

    .MainContents_1 {
        width: 100%;
        font-size: 14px;
        text-align: center;
    }
    
    .MainContents_2 {
        width: 100%;
        font-size: 12px;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .desktop .HeaderContent {
        width: 100%;
        padding: 0px 0px; /* 左右の余白を最小限に設定 */
    }

    .desktop .WidthControll {
        width: 100%;
        margin-top: 50px;
        padding: 10px;
       
    }

    .MainContents_1 {
        width: 100%;
        font-size: 13px;
        text-align: center;
    }
    
    .MainContents_2 {
        width: 100%;
        font-size: 11px;
        text-align: center;
    }
}





.GroupTitle {
    border-color: var(--color-primary);
    border-style: none none solid none;
    border-width: 0px 0px 3px 0px;
    margin-bottom: 10px;
    margin-top: 10px;
    padding: 0.5rem;
    text-align: left;
}

.GroupTitle span {
    font-size: 16px;
    font-weight: bold;
}

.hdgL3Ba {
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding: 7px 10px;
  border: 1px solid #D8D8D8;
  overflow: hidden;
  border-radius: 4px;
  /*box-shadow: inset 0 0 0 1px white, 0 0 3px 0 rgba(220, 220, 220, 0.8);
  -webkit-box-shadow: inset 0 0 0 1px white, 0 0 3px 0 rgba(220, 220, 220, 0.8);*/
}

.hdgL3Ba > span {
  display: flex;
  padding: 0px 0 0 10px;
  border-left: 6px solid var(--color-primary);
}

th {
    background-color: var(--color-primary) !important;
}

.itemContainer {
    margin: 10px 0px 10px 0px;
    text-align: left;
}

.itemContainer span {
    padding-left: 10px;
}

.itemLabel {
  height: auto;
  padding: 0.6rem;
  margin-bottom: 10px;
  background-color: #B3EEFF
}

.itemLabel label {
    margin-bottom: 0px;
}

.desktop .header-content > [data-block*=ApplicationTitle] .application-name{
  display:flex;
}

.tablet .form-control[data-input],
.phone .form-control[data-input]{
  font-size: var(--font-size-s);
}

.tablet .form-control[data-textare],
.phone .form-control[data-textare]{
  font-size: var(--font-size-s);
}

.phone .card {
    padding :0px;
    border :0px;
}

.form-control::placeholder{
    color: #D0CECE;
}

/* 利用者画面用 インデントと文字列折り返し */
/* コンテナ */
.output_container{
    padding-left: 20px;
}

/* expression */
.output_exp{
    overflow-wrap: break-word;
    /* margin-left: 20px; */
}

/* link */
a, a:hover, a:visited, a:focus {
    color: blue;
}

/* Navigationのマウスカーソル修正 */
.wizard-wrapper-item {
cursor: default !important;
}


