@charset "utf-8";
/* CSS Document */

:root{
    --award-blue: #0068B7;

    --color-aiiro: #12253E;
    --color-milkypurple: #c1a3e7;
    --color-lavender: #a3aade;
    --color-waterblue: #63afeb;
    --color-bggray: #d9dee8;
    --color-lightgray: #f2f2f2;

    --btn-color-active: #ea7391;
    --btn-color-normal: #008a60;
}

*{
}
html{
    font-size: 62.5%;
}
body {
    color: #121212;
    font-size: 1.4rem;
    font-family: "Noto Sans Japanese",san-serif;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    background-size: 100% auto;
}
.inner {
    padding-left: 20px;
    padding-right: 20px;
}
input[type="submit"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
a {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all ease .3s;
}
a[href^="tel:"] {
    color: inherit;
}
a:hover {
    opacity: 0.5;
}
a.disabled {
        pointer-events: none;
        opacity: 0.5;
        filter: grayscale(1);
}
#contents section p a,
#contents section ol.decimal a,
#contents section ul.disc a,
table a,
#contents section dl a{
    display: inline;
    text-decoration: underline;
}
.youtube{
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
.youtube iframe{
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
.spNone{
        display: none !important;
}
.btn-wrap{
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
}
.btn-wrap.center{
        justify-content: center;
}
.btn-wrap.right{
        justify-content: right;
}
.btn-wrap>a{
        min-width: 240px;
        font-size: 115%;
        font-weight: 600;
        line-height: 1.4;
        text-align: center;
        padding: 1em 1em;
        border-radius: calc(1px / 0);
}
.btn-wrap>a.blue{
        color: #ffffff;
        background: #0068B7;
}
.btn-wrap>a.white{
	color: var(--award-blue);
        background: #ffffff;
}
.btn-wrap>a.demo{
	color: #ffffff;
        background: var(--btn-color-normal);
        border: solid 3px;
        border-color: var(--btn-color-normal);
}
.btn-wrap>a.trial{
        color: #ffffff;
        background: var(--btn-color-active);
        border: solid 3px;
        border-color: var(--btn-color-active);
}
.btn-wrap>a.black{
        color: #ffffff;
        background: #121212;
        border: solid 3px #121212;
}
.btn-wrap.btn2>*{
        width: 100%;
}
.btn-wrap.btn3>*{
        width: calc((100% - 16px) / 2);
}
.btn-wrap.btn4>*{
        width: calc((100% - 16px) / 2);
}
b, strong{
    font-weight: 600;
}
figure.center{
        width: fit-content;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
}

/* ----- header ----- */

header #sub-menu{
        background: #ffffff;
        border-bottom: solid 1px #e5e5e5;
}
#sub-menu .inner{
        padding: 10px 28px;
}
#sub-menu ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: end;
        gap: 0.8em 1.5em;
        width: 100%;
}
#sub-menu ul>li{
        font-size: 95%;
        font-weight: 500;
}
#sub-menu ul>li:before{
	content: '\f138';
        color: var(--award-blue);
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-right: 0.5em;
        text-decoration: none;
}
#sub-menu ul>li>a{
        display: inline;
        text-decoration: underline;
}
#header{
        width: 100%;
        z-index: 500;
}
#header.home{
        position: fixed;
        top: 0;
        left: 0;
}
#header.headerColorScroll{
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 0 8px rgba(16, 16, 16, 0.2);
}
#header .main-header{
        max-width: 100% !important;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px 20px;
        position: relative;
        padding: 20px;
}
#header *.sitelogo{
        width: 128px;
}
#header .btn-wrap{
        gap: 8px;
        position: absolute;
        right: 28px;
        bottom: 20px;
}
#header .btn-wrap>*{
	min-width: inherit;
        width: 160px;
        flex-grow: 1;
        font-size: 105%;
        font-weight: 600;
        text-align: center;
        padding: 0.8em 1.3em;
        border-radius: 40px;
}

#main-menu{
        width: 100%;
        padding-right: calc(288px + 28px);
}
#main-menu>ul{
	display: flex;
        flex-wrap: wrap;
        gap: 0.2em 1.5em;
}
#main-menu>ul>li{
        font-size: 108%;
        font-weight: 500;
        position: relative;
}
#main-menu>ul>li>a{
        padding: 0.3em 0;
}
#main-menu ul.sub-menu{
        display: none;
        gap: 1px;
        min-width: 240px;
        padding-top: 8px;

        position: absolute;
        left: 0;
        top: 100%;
        z-index: 500;
}
#main-menu>ul>li:hover ul.sub-menu{
        display: grid;
}
#main-menu ul.sub-menu>li{
        font-size: 95%;
        font-weight: 300;
        line-height: 1.4;
}
#main-menu ul.sub-menu>li>a{
        color: #ffffff;
        padding: 0.8em 1em;
        background: rgba(21, 21, 21, 0.95);
}
#main-menu ul.sub-menu>li>a:hover{
        opacity: 1;
        background: var(--color-aiiro);
}
/* ----- main navi ----- */

.menu {
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        align-items: start;
        width: 100%;
        height: 100%;
        background: rgba(51, 51, 51, 0.85);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: all 0.3s ease;
        transition-property: opacity, pointer-events, visibility;
        z-index: 500;
}
.menu.is-show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.menu__content {
        width: 100%;
        padding-top: 40px;
}
#main_nav{
        display: flex;
        flex-wrap: wrap;
        gap: 1.5em 20px;
        margin: 18px auto;
}
#main_nav>ul{
        display: grid;
        width: 100%;
        border-top: solid 1px #ffffff;
}
#main_nav>ul>li{
        font-size: 115%;
        line-height: 1.6;
        font-weight: 600;
        border-bottom: solid 1px #ffffff;
}
#main_nav>ul>li>a{
        color: #ffffff;
        padding: 0.8em 0;
}
#main_nav ul.sub-menu{
        margin-left: 1.5em;
        margin-bottom: 0.8em;
        display: grid;
        gap: 0.4em;
}
#main_nav ul.sub-menu>li{
        font-size: 90%;
        font-weight: normal;
}
#main_nav ul.sub-menu>li>a{
        color: #ffffff;
}
.header__menu {
        position: fixed;
        top: 18px;
        right: 20px;
        cursor: pointer;
        height: 24px;
        font-size: 85%;
        line-height: 24px;
        padding-left: 32px;
        background: url(../images/common/menu_bk.png) no-repeat center left;
        background-size: 20px auto;
        z-index: 100;
}
#header.is-show .header__menu{
        opacity: 0;
}
.button-close {
        cursor: pointer;
        position: absolute;
        top: 18px;
        right: 20px;
        color: #ffffff;
        font-size: 85%;
        line-height: 24px;
        padding-left: 32px;
        background: url(../images/common/close_wh.png) no-repeat center left;
        background-size: 18px auto;
        z-index: 501;
}

.menu__content .btn-wrap{
        margin-top: 28px;
        margin-bottom: 28px;
}
.menu__content .btn-wrap a{
        width: calc((100% - 8px) / 2);
        max-width: 280px;
        font-size: 90%;
}


/* ----- footer ----- */
#footer{
        padding-top: 80px;
        padding-bottom: 80px;
        background: #ffffff;
}
#footer .inner{
        display: grid;
        gap: 48px;
}
#footer .left-wrap{
        order: 1;
        display: grid;
        gap: 24px;
        justify-content: center;
}
#footer figure.award-logo{
        width: 160px;
}
#footer figure.p-mark{
        width: 80px;
        margin: 0 auto;
}
#footer .right-wrap{
        order: 2;
}
#foot_nav{
        display: flex;
        flex-wrap: wrap;
        gap: 28px 28px;
        align-content: start;
}
#foot_nav>*.category{
        display: grid;
        gap: 0.6em;
        align-content: start;
        width: calc((100% - 28px) / 2);
}
#foot_nav p.c-title{
        font-size: 107%;
        font-weight: 600;
        line-height: 1.6;
}
#foot_nav ul{
        display: grid;
        gap: 0.3em;
        align-content: start;
        margin-left: 1em;
}
#foot_nav ul>li{
        font-size: 100%;
        line-height: 1.6;
}
#foot_nav ul>li>a{
        display: inline;
        text-decoration: underline;
}
#footer .btn-wrap{
        order: 4;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
}
#footer .btn-wrap>a{
        width: calc((100% - 12px) / 2);
        max-width: 240px;
        font-size: 107%;
        font-weight: 600;
        text-align: center;
        padding: 1em 2em;
        border-radius: 40px;
}
#footer #sub-menu{
        order: 3;
        align-content: center;
}
#footer #sub-menu>ul{
        display: flex;
        flex-wrap: wrap;
        gap: 0.3em 0;
}
#footer #sub-menu>ul>li{
        font-size: 95%;
        font-weight: 500;
        padding: 0 1em;
}
#footer #sub-menu>ul>li:not(:first-child){
        border-left: solid 1px #cccccc;
}
#footer #sub-menu>ul>li>a{
        display: inline;
        text-decoration: underline;
}

#pagetop{
    position: fixed;
    right: 12px;
    bottom: 120px;
    background: #ffffff;
    border-radius: 50%;
    overflow: hidden;
    z-index: 500;
}
#pagetop a{
    width: 50px;
    height: 50px;
    background: url(../images/conference/pagetop.png) no-repeat center center;
    background-size: cover;
    text-indent: -9999px;
}

/* ----- commons ----- */

#page-header{
        position: relative;
        min-height: 200px;
        margin-bottom: 48px;
}
#page-header:before{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        z-index: 0;
        position: absolute;
        top: 0;
        left: 0;
        background: url(../images/award2/bg-header-ver1.png) no-repeat left bottom;
        background-size: auto 348px;
}
#page-header .inner{
        display: grid;
        gap: 16px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
}
#page-header *.pageTitle{
        display: flex;
        align-content: end;
        align-items: end;
        gap: 0.8em;
        color: #ffffff;
        font-size: 100%;
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        z-index: 10;
}
#page-header *.pageTitle span.en{
        font-size: 120%;
        text-transform: uppercase;
        order: 2;
}
#page-header *.pageTitle span.ja{
        font-size: 240%;
        font-weight: 600;
        order: 1;
}

#breadcrumb{
}
#breadcrumb ol{
}
#breadcrumb li{
	display: inline;
        color: #666666;
        font-size: 100%;
        line-height: 1.4;
}
#breadcrumb li:after{
        content: "/";
        margin: 0 8px;
        color: var(--color-waterblue);
}
#breadcrumb li:last-child::after{
    content: none;
}
#breadcrumb li a{
    display: inline-block;
}
#breadcrumb li a,
#breadcrumb li span,
#breadcrumb li strong{
    word-wrap: break-word;
    word-break: break-all;
}

#contents section,
#contents .inner>section{
        padding-bottom: 64px;
}
#contents section>*,
#contents .inner>section>*,
#contents section>.inner>*{
    margin-bottom: 1.8em;
}
#contents section *.page-title{
        font-size: 200%;
        line-height: 1.3;
        font-weight: 300;
        margin-bottom: 64px;
        position: relative;
}
#contents section *.page-title:before{
        content: "";
        width: 48px;
        height: 4px;
        display: block;
        position: absolute;
        left: 0;
        bottom: -0.8em;
        background: var(--award-blue);
}
#contents section h2{
        font-size: 200%;
        line-height: 1.45;
        font-weight: 600;
        margin-bottom: 80px;
        position: relative;
}
#contents section h2:after{
        content: "";
        width: 64px;
        height: 3px;
        display: block;
        position: absolute;
        left: 0;
        bottom: -0.8em;
        background: var(--color-lavender);
}
#contents section h3{
	color: var(--award-blue);
        font-size: 160%;
        line-height: 1.45;
        margin-bottom: 1em !important;
}
#contents section h3 small{
    font-size: 65%;
    font-weight: 500;
    margin-left: 0.8em;
}
#contents section h4{
	font-size: 125%;
        line-height: 1.6;
        margin-bottom: 0.8em !important;
        padding-bottom: 0.3em;
        border-bottom: solid 3px;
        border-color: var(--color-lavender);
}
#contents section h5{
}
#contents section h6{
}
#contents section p,
#contents section li{
        font-size: 108%;
        line-height: 1.8;
        text-align: justify;
}
#contents section p,
#contents section ol,
#contents section ul{
    font-size: 100%;
}
#contents section ol.decimal,
#contents section ul.disc{
        display: grid;
        gap: 0.3em;
        margin-left: 1.25em;
        list-style-position: outside;
}
#contents section ul.disc li{
    list-style-type: disc;
}
#contents section ol.decimal li{
        list-style-type: decimal;
        padding-left: 0.3em;
}
#contents section table{
        width: fit-content;
        border-collapse: separate;
        border-spacing: 3px;
}
#contents section table tr>*{
        font-size: 108%;
        line-height: 1.6;
        text-align: justify;
        padding: 0.8em 1em;
}
#contents section table thead th{
        text-align: center;
        background: var(--color-bggray);
}
#contents section table tbody th{
        width: 30%;
        background: var(--color-bggray);
}
#contents section table tbody td{
        width: 70%;
        background: #f2f2f2;
}
#contents section dl.tableDl{
        display: flex;
        flex-wrap: wrap;
        gap: 3px;
        width: 100%;
        margin-bottom: 48px;
}
#contents section dl.tableDl dt,
#contents section dl.tableDl dd{
        width: 100%;
        font-size: 108%;
        line-height: 1.6;
        text-align: justify;
        padding: 0.8em 1em;
        background: #f2f2f2;
}
#contents section dl.tableDl dt:nth-child(4n+3),
#contents section dl.tableDl dd:nth-child(4n+4){
        background: var(--color-bggray);
}
#contents section dl.tableDl dt{
        font-weight: 600;
}
#contents section dl.tableDl dd{
}
#contents section *.alternating-list{
	display: grid;
        gap: 3px;
        margin-bottom: 48px;
}
#contents section *.alternating-list>li{
        font-size: 108%;
        font-weight: 600;
        line-height: 1.6;
        text-align: justify;
        padding: 0.8em 1em;
        background: #f2f2f2;
}
#contents section *.alternating-list>li:nth-child(even){
        background: var(--color-bggray);
}

#contents section .img2,
#contents section .img3,
#contents section .img4{
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
}
#contents section .img2>*,
#contents section .img3>*,
#contents section .img4>*{
        flex: 1;
}
#contents section .img2 figure{
        width: calc((100% - 28px) / 2);
}
#contents section .img3 figure{
        width: calc((100% - 56px) / 3);
}
#contents section .img4 figure{
        width: calc((100% - 84px) / 4);
}
#contents section figure{
        margin-bottom: 28px;
}
#contents section figcaption{
        font-size: 108%;
        line-height: 1.6;
        text-align: justify;
        padding-top: 0.6em;
}
#contents section .flex-wrap{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
}
#contents section .flex-wrap>div.text-wrap{
}
#contents section .flex-wrap>div.text-wrap>*{
	margin-bottom: 1.8rem;
}
#contents section .flex-wrap>div.text-wrap>*:last-child{
	margin-bottom: 0;
}
#contents section .flex-wrap>figure{
        margin-bottom: 0;
}
#contents section .flex-wrap>*.left{
        order: 1;
}
#contents section .flex-wrap>*.right{
        order: 2;
}
#contents section .inner-link{
        margin: 48px 0;
}
#contents section .inner-link>ul{
	display: grid;
        flex-wrap: nowrap;
        gap: 0.8em;
}
#contents section .inner-link>ul>li{
        font-size: 115%;
        font-weight: 500;
        line-height: 1.4;
/*
        padding: 0 0.8em;
        border-left: solid 1px;
        border-color: var(--color-bggray);
*/
}
/*
#contents section .inner-link>ul>li:last-child{
        border-right: solid 1px;
        border-color: var(--color-bggray);
}
*/
#contents section .inner-link>ul>li:before{
        content: '\f138';
        color: var(--award-blue);
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        margin-right: 0.5em;
        text-decoration: none;
}
#contents section .inner-link>ul>li>a{
        display: inline;
        text-decoration: underline;
}


#contents .title-icon{
	text-align: center;
        margin-bottom: 20px !important;
}
#contents .title-icon i{
	font-size: 48px;
}
#contents p.text{
        font-size: 108%;
        line-height: 1.8;
}
#contents p.cc-text{
        font-size: 135%;
        font-weight: 600;
        line-height: 1.45;
        margin-bottom: 0.6em;
}
/*
#contents *.keep-all{
        word-break: keep-all;
}
*/
#contents *.box-wrap{
        display: grid;
        align-content: start;
        gap: 0.5em;
        padding: 1.8em 20px;
        margin-bottom: 28px;
        background: var(--color-bggray);
        border-radius: 2px;
        position: relative;
}
#contents *.box-wrap p.title-text{
        font-size: 135%;
        font-weight: 600;
        line-height: 1.45;
}
#contents *.box-wrap p.text{
}
#contents *.flex-wrap{
        display: flex;
        flex-wrap: wrap;
        gap: 1.8em 20px;
        margin-bottom: 48px;
}
#contents *.flex-wrap.box2>*,
#contents *.flex-wrap.box3>*{
        width: 100%;
}
#contents *.flex-wrap.box4>*{
        width: calc((100% - 20px) / 2);
}
#contents *.flex-wrap>*.left{
        order: 1;
}
#contents *.flex-wrap>*.right{
        order: 2;
}
#contents *.flex-wrap>figure,
#contents *.flex-wrap>.img-wrap{
	width: 100%;
}
#contents *.flex-wrap>*.text-wrap{
        width: 100%;
}
#contents *.flex-wrap>*.text-wrap>*:last-child{
        margin-bottom: 0 !important;
}
#contents *.flex-wrap>.img-wrap{
        display: grid;
        gap: 16px;
        align-content: start;
        align-items: start;
}
.divider {
        z-index: 10;
}
.fill-white .shape-fill{
    fill: #FFFFFF;
}
.fill-blue .shape-fill{
    fill: var(--award-blue);
}
.fill-gray .shape-fill{
    fill: var(--color-bggray);
}
.fill-aiiro .shape-fill{
    fill: var(--color-aiiro);
}
.bg-white{
    background: #ffffff !important;
}
.bg-blue{
    background: var(--award-blue) !important;
}
.bg-gray{
    background: var(--color-bggray) !important;
}
.bg-lightgray{
    background: var(--color-lightgray) !important;
}
.bg-aiiro{
    background: var(--color-aiiro) !important;
}
.border{
        border: solid 1px;
        border-color: var(--color-bggray);

}
.custom-shape-divider-top-1748333297 { /* wave */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
}
.custom-shape-divider-top-1748333297 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 48px;
}
.custom-shape-divider-top-1748335241 { /* wave2 */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1748335241 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 64px;
}
.custom-shape-divider-top-1748332607 { /* triangle */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
}
.custom-shape-divider-top-1748332607 svg {
        position: relative;
        display: block;
        width: calc(134% + 1.3px);
        height: 64px;
}
.custom-shape-divider-top-1748338452 { /* tilt left */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-top-1748338452 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 64px;
}
.custom-shape-divider-top-1748338790 { /* tilt right */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-top-1748338790 svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 64px;
        transform: rotateY(180deg);
}

/* ----- infolist ----- */

ul.infoList{
    margin-bottom: 28px;
    border-bottom: solid 1px #cccccc;
}
ul.infoList li{
    border-top: solid 1px #cccccc;
}
ul.infoList li a{
        display: flex;
        flex-wrap: wrap;
        gap: 0.5em;
        text-decoration: none;
        padding: 1em 0;
}
ul.infoList li p.date{
        width: 8em;
        color: #919191;
        font-size: 95%;
        line-height: 1.6;
}
ul.infoList li p.category{
        color: #ffffff;
        width: 120px;
        height: fit-content;
        font-size: 80%;
        font-weight: 500;
        line-height: 1;
        text-align: center;
        padding: 0.4em 0.8em;
        background: var(--award-blue);
        border-radius: 2px;
}
ul.infoList li p.category-id-news{
        color: var(--award-blue);
        background: #ffffff;
        border: solid 1px;
        border-color: var(--award-blue);
}
ul.infoList li p.category-id-fault{
        background: #ff3300;
}
ul.infoList li p.title{
        width: calc(100% - 8em - 1em);
        font-size: 100%;
        font-weight: 500;
        line-height: 1.6;
}
ul.infoList li p.category+p.title{
	width: 100%;
}

/* ----- info Detail ----- */

article#infoDetail{
}
article#infoDetail #infoHeader{
        display: grid;
        gap: 12px;
        padding: 20px 0 28px;
        border-top: solid 8px #0068B7;
        border-bottom: solid 1px #cccccc;
}
article#infoDetail #infoHeader h3{
        font-size: 160%;
        line-height: 1.6;
}
article#infoDetail #infoHeader p.date{
        color: #919191;
        font-size: 90%;
}
article#infoDetail .letterbody{
       font-size: 95%;
        line-height: 1.8;
        text-align: justify;
        padding: 2em 0;
}
article{
}
article .post-header{
        display: grid;
        gap: 12px;
        padding-bottom: 20px;
        margin-bottom: 28px;
        border-bottom: solid 1px;
        border-color: var(--color-bggray);
}
article .post-header *.post-title{
        font-size: 240%;
        font-weight: 500;
        line-height: 1.45;
}
article .post-header p.date{
        color: var(--color-lavender);
        font-size: 108%;
        font-weight: 500;
}
article#infoDetail .letterbody{
}
#same-category-post{
        margin-top: 48px;
}
h3.article-title{
	font-size: 160%;
        line-height: 1.6;
        margin-bottom: 0.8em;
}

/*
    Default style for WP-PageNavi plugin
    http://wordpress.org/extend/plugins/wp-pagenavi/
*/

.wp-pagenavi {
    margin: 40px 0 0;
    text-align: center;
    clear: both;
}
.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    text-decoration: none;
    padding: 3px 5px;
    margin: 2px;
    border: 1px solid #BFBFBF;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: #000;
}
.wp-pagenavi span.current {
    font-weight: bold;
}

/* ----- information parts ----- */

#information-parts{
        background: var(--color-lightgray);
}
#information-parts h3.secTitle{
        font-size: 240% !important;
        text-align: center;
        margin-bottom: 1em !important;
}
#information-parts .info-category-header{
        display: flex;
        justify-content: space-between;
        margin-bottom: 0 !important;
}
#information-parts .info-category-header a.more-view{
        color: #ffffff;
        font-size: 115%;
        font-weight: 600;
        text-align: center;
        padding: 0.8em 2.5em;
        background: #0068B7;
        border-radius: 40px;
}
#information-parts ul.tab{
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        margin-bottom: 2px;
}
#information-parts ul.tab>li{
        width: calc((100% - 2px) / 2);
        min-width: max-content;
        font-size: 100%;
        font-weight: 600;
        text-align: center;
        padding: 1em 1.8em;
        position: relative;
        cursor: pointer;
        background: #e5e5e5;
        color: #999999;
}
#information-parts ul.tab>li.active{
        background: var(--award-blue);
        color: #ffffff;
}
#information-parts ul.tab_content{
}
#information-parts ul.tab_content>li{
        padding: 24px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
        background: #ffffff;
}
#information-parts ul.tab_content>li:not(.active){
    display: none;
}
#information-parts ul.tab_content>li .infolist{
    max-height: 240px;
    overflow-y: scroll;
}

/* ----- home - award2 ----- */

*.blue-text{
        color: var(--award-blue) !important;
}
*.white-text{
        color: #ffffff !important;
}
/*
*.center-text{
        text-align: center !important;
}
*/
/*
*.keep-all{
        word-break: keep-all;
}
*/
*.int-first{
        display: inline-block;
        text-indent: -0.5em;
}

#top-award2{
        position: relative;
}
#top-award2 #mv:before{
	content: "";
        display: block;
        width: 100%;
        height: 100%;
        z-index: 0;
        position: absolute;
        top: 0;
        left: 0;
        background: url(../images/header-bg-0.png) no-repeat center top;
        background-size: 100% auto;
}
#top-award2 .inner{
        max-width: 1280px;
        position: relative;
        z-index: 50;
}
#top-award2 .section .inner>*{
	margin-bottom: 1.8em;
}
#top-award2 .section .inner>*:last-child{
	margin-bottom: 0;
}
#top-award2 div.section{
        padding-top: 48px;
        padding-bottom: 64px;
        position: relative;
}
#top-award2 h2.sec-title{
	font-size: 200%;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 48px !important;
}
#top-award2 h2.sec-title small{
        font-size: 75%;
        font-weight: 600;
}

/* mv */
#top-award2 #mv{
	display: grid;
        justify-content: center;
	gap: 28px;
        align-content: end;
        position: relative;
        padding: 96px 20px 0;
}
#top-award2 #mv .text-wrap{
        order: 2;
        display: grid;
        align-content: center;
        gap: 28px;
        z-index: 10;
}
#top-award2 #mv h2.cc{
        font-size: 160%;
        line-height: 1.6;
        text-align: center;
}
#top-award2 #mv .btn-wrap{
        gap: 12px;
}
#top-award2 #mv .btn-wrap>*{
        width: calc((100% - 12px) / 2);
        min-width: inherit;
}
#top-award2 #mv *.graph{
	display: block;
        width: calc(100%);
        max-width: 750px;
        z-index: 0;
}

/* first */
#top-award2 #first{
        padding-bottom: 48px;
}
#top-award2 #first p.main-text{
        font-size: 125%;
}
#top-award2 #first p.text b{
        font-weight: 600;
}
#top-award2 #first .linkbnr_evo{
        margin-bottom: 48px;
}
#top-award2 #first .linkbnr_evo a{
	width: 100%;
        max-width: 580px;
        font-size: 135%;
        font-weight: 600;
        text-align: center;
        margin: 0 auto;
        padding: 1.25em 1em;
        border-radius: calc(1px / 0);
        background: rgb(173, 153, 229);
        background: linear-gradient(90deg, rgba(173, 153, 229, 1) 0%, rgba(0, 112, 154, 1) 100%);
}

/* outline */
#top-award2 #outline{
        padding-top: calc(64px + 48px);
        background: var(--award-blue);
}
#top-award2 #outline p.text{
}
#top-award2 #outline p.cc-text{
	font-size: 200%;
        font-weight: 600;
        line-height: 1.6;
        margin-bottom: 28px;
}
#top-award2 #outline h3{
	font-size: 160%;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 0.4em;
}
#top-award2 #outline .box-wrap{
        background: #ffffff;
        border-radius: 12px;
        position: relative;
        padding: 1.8em 20px 240px;
}
#top-award2 #outline .box-wrap .text-wrap{
}
#top-award2 #outline .box-wrap p.cc-text{
        font-size: 115%;
        line-height: 1.6;
        margin-bottom: 0.5em;
}
#top-award2 #outline .box-wrap .btn-wrap{
    margin-top: 12px;
}
#top-award2 #outline .box-wrap:before{
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 320px;
        height: 100%;
        background: url(../images/award2/home/aisome-run-up.png) no-repeat right bottom;
        background-size: contain;
        z-index: 0;
}
#caselogo{
        margin-top: 28px;
        margin-bottom: 28px;
        background: #ffffff;
        border-radius: 1px;
}
#caselogo .logolist{
        display: flex;
        flex-wrap: wrap;
        gap: 20px 12px;
        padding: 20px;
        position: relative;
}
#caselogo .logolist figure{
        width: calc((100% - 24px) / 3);
        text-align: center;
        position: relative;
}

/* issue */
#top-award2 #issue{
        background: var(--color-aiiro);
        padding-top: calc(64px + 48px);
}
#top-award2 #issue h2.sec-title{
        margin-bottom: 28px;
}
#top-award2 #issue figure{
        margin-bottom: 28px;
}
#top-award2 #issue figure img{
}
#top-award2 #issue ol.issue-list{
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        counter-reset: issue-counter;
}
#top-award2 #issue ol.issue-list>li{
        display: grid;
        align-content: start;
        gap: 0.5em;
        padding: 1.8em 20px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
@media (min-width: 1000px){
	#top-award2 #issue ol.issue-list>li{
	        width: calc((100% - 40px) / 3);
	}
	#top-award2 #issue ol.issue-list>li:nth-child(-n+4){
	        width: calc((100% - 20px) / 2);
	}
	#top-award2 #issue ol.issue-list>li p.title-text{
	        text-align: center;
	}
}
@media (max-width: 999px){
	#top-award2 #issue ol.issue-list>li{
	        width: 100%;
	}
}
#top-award2 #issue ol.issue-list>li p.title-text{
        font-size: 115%;
        font-weight: 600;
        line-height: 1.5;
/*
        text-indent: -1.3em;
        margin-left: 1.3em;
*/
}
/*
#top-award2 #issue ol.issue-list>li p.title-text:before{
        content: counter(issue-counter) ".";
        counter-increment: issue-counter;
        margin-right: 0.3em;
}
*/
#top-award2 #issue ol.issue-list>li p.text{
        font-size: 108%;
}

/* solution */
#top-award2 #solution{
        padding-top: calc(48px + 64px);
        background: var(--color-milkypurple);
	background: #C1A3E7;
	background: linear-gradient(rgba(193, 163, 231, 1) 0%, rgba(201, 141, 239, 1) 50%, rgba(163, 170, 222, 1) 100%);
}
#top-award2 #solution h2.sec-title{
        margin-bottom: 28px;
}
#top-award2 #solution figure{
        margin-bottom: 28px;
}
#top-award2 #solution figure img{
}
#top-award2 #solution .divider .shape-fill{
	fill: rgba(163, 170, 222, 1);
}
#top-award2 #solution ol.solution-list{
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        counter-reset: issue-counter;
}
#top-award2 #solution ol.solution-list>li{
        display: grid;
        align-content: start;
        gap: 0.5em;
        padding: 1.8em 20px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
@media (max-width: 999px){
	#top-award2 #solution ol.solution-list>li{
	        width: 100%;
	}
}
#top-award2 #solution ol.solution-list>li p.title-text{
        font-size: 115%;
        font-weight: 600;
        line-height: 1.5;
/*
        text-indent: -1.3em;
        margin-left: 1.3em;
*/
}
/*
#top-award2 #solution ol.solution-list>li p.title-text:before{
        content: counter(issue-counter) ".";
        counter-increment: issue-counter;
        margin-right: 0.3em;
}
*/
#top-award2 #solution ol.solution-list>li p.text{
        font-size: 108%;
}

/* reason */
#top-award2 #reason{
        padding-top: calc(64px + 48px);
        background: var(--award-blue);
}
#top-award2 #reason ul.reason-list{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        counter-reset: issue-counter;
	margin-bottom: 48px;
}
#top-award2 #reason ul.reason-list>li{
        width: 100%;
        display: grid;
        align-content: start;
        gap: 0.5em;
        padding: 1.8em 28px 1.8em 72px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
        position: relative;
}
#top-award2 #reason ul.reason-list>li:before{
        content: counter(issue-counter);
        counter-increment: issue-counter;
        margin-right: 0.3em;
        font-size: 48px;
        font-weight: 200;
        font-style: italic;
        color: var(--color-lavender);
        position: absolute;
        top: 23px;
        left: 24px;
}
#top-award2 #reason ul.reason-list>li p.title-text{
	font-size: 160%;
        font-weight: 600;
        line-height: 1.5;
        /* text-indent: -1.3em; */
        /* margin-left: 1.3em; */
}
/*
#top-award2 #reason ul.reason-list>li p.title-text:before{
        content: counter(issue-counter) ".";
        counter-increment: issue-counter;
        margin-right: 0.3em;
}
*/
#top-award2 #reason ul.reason-list>li p.text{
        font-size: 108%;
}
#top-award2 #reason *.flex-wrap.box2{
        gap: 28px;
}
#top-award2 #reason *.flex-wrap.box2>*{
        flex: 1;
        width: fit-content;
        border-radius: 0;

        display: flex;
        justify-content: space-between;
        flex-direction: column;
        padding-left: calc(28px + 8px);
        margin-bottom: 0;
        background: #ffffff;
}
*.triangle-tag{
        position: relative;
}
*.triangle-tag>*:before{
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-color: transparent;
        border-top-color: var(--color-waterblue);
        border-width: 48px 48px 0px 0px;
        position: absolute;
        top: -4px;
        left: -4px;
}
#top-award2 #reason *.box-wrap p.title-text{
	font-size: 160%;
        margin-bottom: 0.3em;
}
#top-award2 #reason *.box-wrap p.text{
        margin-bottom: 0.8em;
}
#top-award2 #reason *.box-wrap .btn-wrap{
        margin-top: auto;
        justify-content: center;
}

/* function1 */
#top-award2 #function1{
        padding-top: calc(48px + 64px);
}
#top-award2 #function1 .text-wrap p.text{
        font-size: 160%;
        font-weight: 300;
        margin-bottom: 0.3em;
}
#top-award2 #function1 .text-wrap ul.disc{
        display: grid;
        gap: 0.3em;
        margin-left: 1.5em;
        margin-bottom: 1.8em;
}
#top-award2 #function1 .text-wrap ul.disc>li{
        font-size: 108%;
        line-height: 1.6;
        list-style-type: disc;
        list-style-position: outside;
}

/* function2 */
#top-award2 #function2{
        padding-top: calc(48px + 64px);
        background: var(--color-bggray);
}
#top-award2 #function2 h3{
        font-size: 160%;
        line-height: 1.4;
        margin-bottom: 0.4em;
}
#top-award2 #function2 ol.decimal{
        display: grid;
        gap: 0.3em;
        margin-left: 1.5em;
}
#top-award2 #function2 ol.decimal>li{
        font-size: 115%;
        line-height: 1.6;
        list-style-type: decimal;
        list-style-position: outside;
}
#top-award2 #function2 ol.decimal>li b{
}

/* function3 */
#top-award2 #function3{
        padding-top: calc(64px + 48px);
        background: var(--color-aiiro);
}
#top-award2 #function3 h3{
        font-size: 160%;
        line-height: 1.4;
        margin-bottom: 0.4em;
}
#top-award2 #function3 p.text{
        margin-bottom: 48px;
}

/* function4 */
#top-award2 #function4{
        padding-top: calc(64px + 48px);
}
#top-award2 #function4 h3{
	font-size: 160%;
        line-height: 1.4;
        margin-bottom: 0.4em;
}
#top-award2 #function4 ol.decimal{
        display: grid;
        gap: 0.3em;
        margin-left: 1.5em;
}
#top-award2 #function4 ol.decimal>li{
        font-size: 108%;
        font-weight: 600;
        line-height: 1.6;
        list-style-type: decimal;
        padding-left: 0.3em;
}

/* function5 */
#top-award2 #function5{
        padding-top: calc(64px + 48px);
        background: var(--color-bggray);
}
#top-award2 #function5 h3{
        font-size: 160%;
        line-height: 1.4;
        margin-bottom: 0.4em;
}
#top-award2 #function5 .box-wrap{
        background: #ffffff;
}
#top-award2 #function5 .box-wrap p.title-text{
}
#top-award2 #function5 ol.decimal{
        display: grid;
        gap: 0.3em;
        margin-left: 1.5em;
}
#top-award2 #function5 ol.decimal>li{
        font-size: 108%;
        font-weight: 600;
        line-height: 1.6;
        list-style-type: decimal;
        padding-left: 0.3em;
}
#top-award2 #function5 .box-wrap *.btn-wrap{
        justify-content: center;
        margin-top: 16px;
}

/* support */
#top-award2 #support{
        padding-top: calc(64px + 48px);
}
#top-award2 #support .flex-wrap.box3{
	gap: 2px;
}
#top-award2 #support .flex-wrap.box3>*{
        width: calc(100%);
        margin-bottom: 0;
        border-radius: 0;
}
#top-award2 #support .flex-wrap.box3>* h3{
	font-size: 135%;
        line-height: 1.6;
        margin-bottom: 0.3em;
}
#top-award2 #support .flex-wrap.box3>* h3 i{
        color: var(--color-aiiro);
        font-size: 28px;
        vertical-align: text-bottom;
        margin-right: 0.3em;
}
.lp-action-parts{
        color: #ffffff;
        padding: 28px 0;
        border-radius: 12px;
        background: var(--award-blue);
        margin-top: 48px !important;
        margin-bottom: 48px !important;
}
.lp-action-parts .flex-wrap{
        margin: 0 auto;
        position: relative;
}
.lp-action-parts .flex-wrap figure.face-img{
        width: 96px !important;
        height: fit-content;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        overflow: hidden;
        position: absolute;
        top: 0;
        right: 0;
}
.lp-action-parts .flex-wrap .text-wrap{
        display: grid;
        align-content: center;
        order: 1;
}
.lp-action-parts h2{
        width: calc(100% - 96px - 12px);
        font-size: 150%;
        line-height: 1.4;
        margin-bottom: 0.5em;
}
.lp-action-parts .flex-wrap .text-wrap p{
        width: calc(100% - 96px - 12px);
        font-size: 107%;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 1.8em;
}
.lp-action-parts .btn-wrap{
        gap: 12px;
        justify-content: center;
}
.lp-action-parts .btn-wrap>a{
        width: calc((100% - 12px) / 2);
        max-width: 240px;
        min-width: fit-content;
}

/* results */
#top-award2 #results{
        padding-top: calc(48px + 64px);
        background: var(--color-bggray);
}
#top-award2 #results .results-text-wrap{
        margin-bottom: 64px;
}
#top-award2 #results .results-text-wrap p{
        font-size: 115%;
        font-weight: 500;
        line-height: 1.4;
}
#top-award2 #results .results-text-wrap p b{
        color: var(--award-blue);
        font-size: 160%;
        font-weight: 800;
}
#top-award2 #results .m-chart-container{
}

/* faq */
#top-award2 #faq{
	background: var(--color-aiiro);
        padding-top: calc(48px + 64px);
}
#faq ul.faq-list{
        display: grid;
        gap: 20px;
        margin-bottom: 48px;
}
#faq ul.faq-list>li{
        display: grid;
        align-content: start;
        gap: 0.5em;
        font-size: 100%;
        padding: 1.8em 20px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
#faq ul.faq-list>li p.q-text{
        color: var(--color-aiiro);
        font-size: 108%;
        font-weight: 600;
        text-indent: -1.5em;
        margin-left: 1.5em;
}
#faq ul.faq-list>li p.a-text{
        text-indent: -1.5em;
        margin-left: 1.5em;
}
#faq ul.faq-list>li p.q-text:before{
	content: "Q.";
        margin-right: 0.4em;
}
#faq ul.faq-list>li p.a-text:before{
	content: "A.";
        margin-right: 0.4em;
}

/* trial */
#top-award2 #trial{
        padding-top: calc(64px + 48px);
}
#top-award2 #trial h3{
        font-size: 160%;
        line-height: 1.4;
        margin-bottom: 0.6em;
}

/* column */
#top-award2 #column{
        padding-top: calc(80px);
        background: var(--color-aiiro);
}
#top-award2 #column .post-list>* *.text-wrap p.title-text {
        color: #ffffff;
}

/* document */
#top-award2 #document{
        padding-top: calc(80px + 64px);
        background: var(--color-bggray);
}

/* ----- post-list ----- */

.post-list{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 48px;
}
.post-list>*{
}
.post-list>* figure.thumb{
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 5px;
        position: relative;
        overflow: hidden;
}
.post-list>* figure.thumb>img{
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
}
.post-list>* *.text-wrap{
}
.post-list>* *.text-wrap p.date{
        color: #999999;
        font-size: 90%;
        font-weight: 500;
        line-height: 1.4;
        margin-bottom: 0.3em;
}
.post-list>* *.text-wrap p.title-text{
        font-size: 108%;
        font-weight: 600;
        line-height: 1.8;
}
@media (max-width: 999px){
	.post-list>*{
	        display: flex;
	        flex-wrap: wrap;
	        gap: 20px;
		width: 100%;
	}
	.post-list>* figure.thumb{
            width: 160px;
	}
	.post-list>* *.text-wrap{
            flex: 1;
            align-content: center;
	}
}

/* ----- about ----- */

#system #contents section{
        padding-top: 64px;
        padding-bottom: 64px;
}
#system #contents section figure{
        margin-bottom: 40px;
}

/* threeZero */
#system section:not(:first-child){
        padding-top: 64px;
}
#system #threeZero{
        background: var(--award-blue);
}
#system section.bg-gray{
        background: var(--color-bggray);
}
#system #threeZero p.enTitle{
        font-size: 135%;
        font-weight: 500;
        margin-bottom: 0em;
}
#system #threeZero h3.secTitle{
        font-size: 200%;
        line-height: 1.5;
}
#system #threeZero h4{
	    color: #1A0557;
	    font-size: 24px;
	    font-size: 165%;
	    font-weight: 600;
	    margin-bottom: 1em;
}
#system #threeZero .shadow{
        background: #ffffff;
        border-radius: 12px;
}
#system #threeZero .shadow .flex-wrap{
        display: grid;
        gap: 0;
        justify-content: center;
        align-items: center;
        margin: 0;
}
#system #threeZero .shadow .flex-wrap>div{
        width: 100%;
}
#system #threeZero .shadow .flex-wrap>div.plus{
        text-align: center;
        padding: 16px 0;
}
#system #threeZero .shadow .flex-wrap p{
	width: fit-content;
        margin-top: 1em;
        margin-left: auto;
        margin-right: auto;
}
#system #threeZero .shadow .flex-wrap figure{
        margin-bottom: 0;
}
#system #threeZero .shadow .flex-wrap figure>img{
	height: 128px;
}

/* function */
#function section {
        padding-bottom: 64px;
}
#function section p.text{
        margin-bottom: 28px;
}
#function section dl.tableDl {
        gap: 0;
}
#function section dl.tableDl dt{
        margin-top: 3px !important;
}
#function section dl.tableDl dd{
        padding-top: 0;
}
#function section .function-list {
        margin-top: 48px;
        margin-bottom: 80px;
        justify-content: center !important;
}
#function section .function-list>* {
        width: calc((100% - 40px) / 3);
        text-align: center;
}
#function section .function-list>* figcaption{
        color: #919191;
        font-weight: 500;
        text-align: center;
}
#function section .function-detail{
        justify-content: start;
}
#function section .function-detail .text-wrap h3{
        margin-bottom: 0.3em !important;
}

/* evolution */
#evolution section {
        padding-bottom: 64px;
}
#evolution section .add-function{
        border-radius: 12px;
}
#evolution section .add-function p{
        font-size: 180%;
        font-weight: 600;
        line-height: 1.3;
        text-align: center;
}
#evolution section .add-function p small{
        font-size: 65%;
        margin-bottom: 0.3em;
}
#evolution section .add-function .flex-wrap{
        flex: 1;
        gap: 0.8em;
        justify-content: center;
        margin-top: 12px;
        margin-bottom: 0;
}
#evolution section .add-function .flex-wrap>*{
        display: grid;
        gap: 0.8em;
        align-content: start;
}
#evolution section .add-function ul.disc{
}

/* solution */
#system #solution{
	background: var(--color-lightgray);
}

/* issue */
#system #issue{
	background: var(--color-aiiro);
}
#system #issue p.cc-text{
        font-size: 160%;
        text-align: center;
        margin-bottom: 1.8em;
}
#system #issue .box-wrap{
        background: #ffffff;
        border-radius: 12px;
}
#system #issue ol{
        counter-reset: issue-counter;
	gap: 1.5em;
}
#system #issue ol>li{
        font-size: 108%;
        position: relative;
        list-style-type: none;
        padding-left: 24px;
}
#system #issue ol>li:before{
	content: counter(issue-counter) '.';
        counter-increment: issue-counter;
        margin-right: 0.3em;
        font-size: 28px;
        font-weight: 200;
        font-style: italic;
        line-height: 1;
        color: var(--color-lavender);
        position: absolute;
        top: 6px;
        left: -12px;
}
#system #issue ol>li b{
        font-size: 125%;
}

/* about - award */

#about{
}
#about p.cc-text.center-text{
        font-size: 180%;
        margin-bottom: 1em;
}
#about .read-contents{
        color: #ffffff;
        background: var(--award-blue);
}
#about .read-contents:nth-child(2){
        padding-top: 64px;
}
#about .read-contents h3{
        width: fit-content;
        color: inherit;
        font-size: 200%;
        font-weight: 400;
        padding-bottom: 0.2em;
        margin-bottom: 0.3em !important;
        position: relative;
        border-bottom: solid 1px;
        border-color: var(--award-blue);
        transform: skewX(-7deg);
}
#about .read-contents p.text{
        font-size: 115%;
        font-weight: 200;
        line-height: 2;
        letter-spacing: 1px;
}

/* support - application */

#contents .flow-flex{
}
#contents .flow-flex>*{
}
#contents .flow-flex.step2>*{
	width: calc((100% - 40px) / 2);
        position: relative;
}
#contents .flow-flex>*:after{
        display: block;
        content: '\f101';
        color: var(--award-blue);
        font-size: 20px;
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        text-decoration: none;
        position: absolute;
        top: calc(50% + -1em);
        left: calc(100% + 10px);
}
#contents .flow-flex>*:last-child::after{
	content: none;
}

/* ------ cost ------ */
#contents #cost .flex-wrap{
    margin-bottom: 64px;

}
#contents #cost p.text b{
        font-size: 160%;
}
#contents #cost figure{
    max-width: 280px;
    margin: 0 auto;
}


/* case */
article#case{
}
article#case .case-header{
        display: flex;
        flex-wrap: wrap;
        gap: 28px 16px;
        justify-content: center;
        padding: 28px 20px;
        margin-bottom: 48px;
        background: #ffffff;
        box-shadow: 0 3px 26px rgba(0, 0, 0, 0.16);
        border-radius: 10px;
}
article#case .case-header figure.thumb{
        width: 96px;
        height: fit-content;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
}
article#case .case-header figure.thumb>img{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
}
article#case .case-header .text-wrap{
        width: fit-content;
        max-width: calc(100% - 16px - 96px);
        display: grid;
        align-content: center;
}
article#case .case-header .text-wrap p{
        line-height: 1.6;
        letter-spacing: 0.05em;
}
article#case .case-header .text-wrap p.dept-name{
        font-size: 100%;
        font-weight: 500;
}
article#case .case-header .text-wrap p.name{
        font-size: 130%;
        font-weight: 600;
}
article#case .case-header .text-wrap p.name small{
        margin-left: 0.3em;
}
article#case .case-header .text-wrap p.position{
        color: #919191;
        font-size: 90%;
        margin-top: 0.5em;
}
article#case .event-wrap{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0.3em 1em;
        align-content: center;
        margin-left: auto;
}
article#case .event-wrap>*{
        font-size: 105%;
        line-height: 1.6;
        letter-spacing: 0.05em;
}
article#case .event-wrap>dt{
        color: #0068B7;
        width: 96px;
        font-weight: 600;
}
article#case .event-wrap>dd{
        width: calc((100% - 96px - 1em));
}
article#case h3{
        color: #0068B7;
        font-size: 135%;
        line-height: 1.6;
        text-align: justify;
        margin-bottom: 0.6em;
}
article#case .function{
        margin-bottom: 48px;
}
article#case .function ul.check-list{
        display: flex;
        flex-wrap: wrap;
        gap: 0.3em;
}
article#case .function ul.check-list>li{
        width: 100%;
        font-size: 105%;
        line-height: 1.6;
        filter: grayscale(1);
        opacity: 0.6;
}
article#case .function ul.check-list>li.check{
        filter: grayscale(0);
        opacity: 1;
}
article#case .function ul.check-list>li i{
        color: #c42644;
        transform: scale(1.25);
        margin-right: 0.8em;
}
article#case .text-contents{
        margin-bottom: 48px;
}
article#case .text-contents p{
        font-size: 105%;
        line-height: 1.8;
        text-align: justify;
}

/* interview */
#customer-interview{
        padding-top: calc(120px + 100px);
        padding-bottom: 80px;
        background: #ffffff;
}
#customer-interview h3{
	font-size: 280% !important;
        text-align: center;
        margin-bottom: 1em;
}
.int-list-wrap{
	display: flex;
        flex-wrap: wrap;
        justify-content: left;
        gap: 24px;
        margin-bottom: 48px;
}
.int-list-wrap>*{
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
}
.int-list-wrap>* figure{
        width: 108px;
        aspect-ratio: 1 / 1;
        height: fit-content;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto !important;
}
.int-list-wrap>* .text-wrap{
        flex: 1;
        display: grid;
        align-content: center;
}
.int-list-wrap>* .text-wrap p{
        line-height: 1.6;
}
.int-list-wrap>* .text-wrap p.title{
        width: fit-content;
        font-size: 115%;
        font-weight: 500;
        line-height: 1.45;
        text-align: justify;
        margin-bottom: 0.3em;
}
.int-list-wrap>* .text-wrap p.date{
        color: #666666;
        font-size: 100%;
}


/* ----- 投稿者欄 ----- */

body #padSection{
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 16px;
        font-size: 100%;
        margin: 28px 0;
        padding: 28px;
        border: solid 1px #f2f2f2;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
        border-radius: 12px;
}
body #padSection>*{
        margin: 0 !important;
        float: none !important;
}
body #padSection h4{
        width: 100%;
        font-size: 108%;
        font-weight: 600;
}
body #padSection #avatar{
        width: 100px;
}
body #padSection #profileTxtSet{
        display: flex;
        flex-direction: column;
        gap: 0.8em;
        align-content: center;
        width: calc(100% - 100px - 16px);
}
body #padSection #profileTxtSet>*{
        text-align: justify;
}
body #padSection #profileTxtSet>dt{
        margin: 0;
}
body #padSection #profileTxtSet>dt .authorName{
        color: #0068B7;
        font-size: 115%;
        font-weight: 600;
}
body #padSection #profileTxtSet>dd{
        font-size: 95%;
        line-height: 1.8;
}
body #padSection #latestEntries{
        display: none;
        width: 100%;
}
body #padSection #latestEntries h5{
        font-size: 100%;
}

/* ------ comment ------ */

#comments{
}
#comments h3.cat_title{
        font-size: 115%;
        line-height: 1.6;
        padding-bottom: 0.4em;
        margin-bottom: 20px;
        border-bottom: solid 1px #cccccc;
}
#comments .comment-respond{
}
#comments .comment-respond>p{
}
#comments .comment-respond *>a{
        display: inline;
        text-decoration: underline;
}
#comments .comment-respond *.required{
        color: #ff3300;
        font-size: 80%;
        font-weight: 600;
        vertical-align: text-top;
}
#comments .comment-respond h3#reply-title{
    color: #0068B7;
    font-size: 105%;
    margin-bottom: 1em;
}
#comments .comment-respond h3#reply-title small a{
    color: #121212;
    margin-left: 0.8em;
}
#comments .comment-respond form.comment-form{
}
#comments .comment-respond form.comment-form p.comment-notes,
#comments .comment-respond form.comment-form p.logged-in-as{
        font-size: 95%;
        line-height: 1.8;
        margin-bottom: 1em;
}

#comments .comment-respond form.comment-form #email-notes,
#comments .comment-respond form.comment-form .required-field-message{
        display: block;
}
#comments .comment-respond form.comment-form .gglcptch{
    display: none;
}
#comments .comment-respond .comment-form-comment,
#comments .comment-form-author,
#comments .comment-form-email,
#comments .comment-form-url{
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 12px;
}
#comments .comment-respond .comment-form-comment label,
#comments .comment-form-author label,
#comments .comment-form-email label,
#comments .comment-form-url label{
        width: 120px;
}
#comments .comment-respond .comment-form-comment textarea,
#comments .comment-form-author input,
#comments .comment-form-email input,
#comments .comment-form-url input{
        max-width: calc(100% - 16px - 120px);
        font-size: 95%;
        line-height: 1.6;
        padding: 2px;
        border-radius: 2px;
        background: #e5e5e5;
        border: none;
}
#comments .comment-respond form.comment-form input{
        min-width: 50%;
}
#comments .comment-respond form.comment-form textarea{
        width: 100%;
}
#comments .comment-respond form.comment-form .form-submit{
        display: flex;
        justify-content: center;
}
#comments .comment-respond form.comment-form .form-submit input[type="submit"]{
        width: 100%;
        min-width: auto;
        max-width: 240px;
        color: #ffffff;
        font-size: 115%;
        font-family: inherit;
        font-weight: 600;
        padding: 0.8em;
        border: none;
        background: #121212;
        border-radius: 40px;
        cursor: pointer;
}
#comments .comment-respond form.comment-form p.comment-form-cookies-consent{
        font-size: 95%;
        line-height: 1.8;
        margin-bottom: 1em;
}
#comments .comment-respond form.comment-form p.comment-form-cookies-consent input#wp-comment-cookies-consent{
        min-width: auto;
}
.comment-lists-wrap {
}
.comment-lists-wrap ol#comments-list {
        list-style-position: inside;
        border-top: 2px solid #0068B7;
        margin-top: 40px;
}
.comment-lists-wrap ol#comments-list li{
        overflow: hidden;
}
.comment-lists-wrap ol#comments-list>li{
}
.comment-lists-wrap ol#comments-list>.comment {
        border-bottom: 2px solid #0068B7;
}
.comment-lists-wrap ol#comments-list .children>li {
        margin-left: 5%;
}
span.says{
     display: none;
}
.comment-body{
        display: flex;
        flex-wrap: wrap;
        align-items: start;
        justify-content: end;
        overflow: hidden;
        padding: 16px 0 12px;
        border-bottom: solid 1px #cccccc;
}
.comment-author{
        order: 1;
        width: 96px;
        float: left;
        margin-right: 12px;
        overflow: hidden;
}
.comment-author img{
     display: block;
}
.fn {
        clear: both;
        display: block;
        font-size: 85%;
        font-style: normal;
        line-height: 1.4;
        text-align: left;
        margin-top: 0.8em;
}
.comment-meta{
        order: 3;
        width: calc(100% - 50px - 12px);
        text-align: right;
        padding-right: 16px;
}
.comment-meta a{
        color: #919191;
        font-size: 85%;
        display: inline;
        text-decoration: underline;
}
.comment-body p{
        order: 2;
        width: calc(100% - 96px - 12px);
        height: fit-content;
        font-size: 95%;
        line-height: 1.6;
        padding: 16px;
        margin-bottom: 8px;
        overflow: hidden;
        border: solid 2px #cccccc;
}
.reply{
        order: 4;
        display: flex;
        justify-content: end;
}
.reply a {
        color: #626262;
        display: block;
        width: 50px;
        font-size: 10px;
        line-height: 20px;
        text-align: center;
        background-color: #E5E5E5;
        border: 1px solid #626262;
}
