@charset "UTF-8";
@import "fonts.css";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;   
}
body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    cursor: auto;
    width: 100%;
    color: #121d3d;
    font-size: 1rem;
    line-height: 190%;
    word-break: break-word;
    font-weight: 500;
}
/*remove highlight color touch on mobile*/
input,textarea,button,select,div,a,span
{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a, input, div, select, textarea, img, button
{
    outline: none;
}
a:focus, a:visited, input:focus, select:focus, textarea:focus, button:focus
{
    outline: none !important;
    box-shadow: none;
}
ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
button
{
    font-family: inherit;
    cursor: pointer;
}
a {
    text-decoration: none;
    cursor: pointer;
}
img {
    max-width: 100%;
    width /***/: auto;
    height: auto;
}
.container {
    margin: 0 auto;
    max-width: 920px;
    position: relative;
    z-index: 5;
    padding-left: 20px;
    padding-right: 20px;
}
.container.lg
{
    max-width: 1340px;
}
.d-flex
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.d-flex-wrap
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
}
.d-flex-center
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.justify-content-end
{
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.d-flex-align-center
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.text-left{
    text-align: left !important;
}
.text-right{
    text-align: right !important;
}
.text-center{
    text-align: center;
}
/* This changes all the animations globally */
:root {
  --animate-duration: 1.4s;
  --animate-delay: 1.8s;
}
/* This only changes this particular animation duration */
/*.animate__animated.animate__fadeInUp {
  --animate-duration: 1s;
  --animate-delay: 1s;
}*/
/*
==============================================================
============================ Common ==========================
==============================================================
*/
h2.title
{
    font-size: 2.75rem;
    margin-bottom: 55px;
    text-align: center;
    letter-spacing: 4px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
}
h2.title:before
{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -27px;
    height: 22px;
    background: url('../img/arrow-down-title.png') no-repeat;
    background-position: center;
}
.btn-group
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.btn
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background: #ff9212;
    color: #fff;
    padding: 0 24px;
    width: 400px;
    height: 80px;
    border-radius: 40px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: .2s;
}
.btn.light
{
    background: #ffb912;
}
.btn:hover
{
    transition: .2s;
    background: #111b3d;
}
@media(max-width: 576px){
    h2.title
    {
        font-size: 2.6rem;
    }
    .btn
    {
        width: 100%;
        height: 64px;
    }
    .break-line
    {
        display: block;
    }
}
@media(max-width: 428px){
    h2.title
    {
        font-size: 2rem;
    }
}
@media(max-width: 375px){
    h2.title
    {
        font-size: 1.9rem;
    }
}
@media(max-width: 320px){
    h2.title
    {
        font-size: 1.5rem;
    }
}
/*
==============================================================
========================== End common ========================
==============================================================
*/
/*
==============================================================
============================ Header ==========================
==============================================================
*/
header
{
    /*position: sticky;*/
    top: 0;
    background: #fff;
    z-index: 10;
}
.fixed-nav header
{
    position: fixed;
    left: 0;
    right: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-animation: aniHeaderMenu .3s ease forwards;
            animation: aniHeaderMenu .3s ease forwards;
    -webkit-box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.1);
}
.fixed-nav header nav ul
{
    padding-top: 10px;
    padding-bottom: 10px;
}
header .head .concept.sp
{
    display: none;
}
header nav ul
{
    padding: 26px 0px 26px 190px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
header nav ul a
{
    color: #0c1839;
    display: inline-block;
    padding: 10px 25px;
    transition: .2s;
    font-weight: 700;
    line-height: 1.3;
}
header nav ul a:hover
{
    transition: .2s;
    color: #28a8d2;
}
header nav ul li.download a,
header nav ul li.inquiry a,
header nav ul li.login a{
    background: #ff9212;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    transition: .2s;
}
header nav ul li.login a
{
    background: #fff;
    color: #28a8d2;
    border: 1px solid #28a8d2;
    text-transform: uppercase;
    padding-left: 40px;
    padding-right: 40px;
}
header nav ul li.inquiry a{
    background: #ffb912;
}
header nav ul li.download,
header nav ul li.inquiry
{
    padding-right: 15px;
}
header nav ul li.download a:hover,
header nav ul li.inquiry a:hover,
header nav ul li.login a:hover
{
    transition: .2s;
    background: #111b3d;
}
header nav ul li.login a:hover{
    color: #fff;
    border: 1px solid #111b3d;
}
.main-logo
{
    position: fixed;
    top: 0;
    z-index: 11;
    left: 20px;
/*    right: 0;*/
    animation: aniFadeIn 0.3s linear;
}
@media(max-width: 1024px){
.main-logo
{
    position: absolute;
    top: 0;
    z-index: 11;
    left: 0;
    right: 0;
    animation: aniFadeIn 0.3s linear;
}
}
.main-logo .container
{
    height: 1px;
}
.main-logo .inner{
    position: absolute;
    left: 20px;
    top: 0;
    width: 164px;
}
/*.main-logo .inner h1{
    position: fixed;
    left: 20px;
    top: 0;
    width: 164px;
}
@media(max-width: 1024px){
.main-logo .inner h1{
    position: inherit;
    left: inherit;
    top: inherit;
    width: inherit;
}
}*/
.main-logo a img{
    width: 100%;
}
.concept
{
    background: #111b3d;
    color: #fff;
    width: 100%;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 5px;
    font-size: 0.87rem;
    margin-top: 5px;
    transition: .2s;
}
.concept span
{
    padding-left: 27px;
    background: url('../img/ic-concept.png') no-repeat;
 background-size: 19px auto;
}
.concept:hover
{
    transition: .2s;
    background: #28a8d2;
}
/*menu toggle =================================*/
header #menu-toggle {
    display: none;
}
header #menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -12px;
    background: none;
    border: none;
    cursor: pointer;
}
header #menu-toggle .menu-bar > span {
    border-bottom: 3px solid #111b3d;
    margin-bottom: 9px;
    width: 36px;
    transition: 0.2s;
    display: block;
}
header #menu-toggle .menu-bar > span:nth-child(2) {
    transition: 0s;
}
header #menu-toggle .menu-bar > span:nth-child(3) {
    margin-bottom: 0;
}
header #menu-toggle.active
{
    right: 20px;
}
header #menu-toggle.active .menu-bar > span {
    width: 42px;
    position: relative;
    left: 3px;
}
header #menu-toggle.active .menu-bar > span:nth-child(2) {
    opacity: 0;
}
header #menu-toggle.active .menu-bar > span:nth-child(1) {
    transform: translate3d(0px, 11px, 0) rotate(45deg);
}
header #menu-toggle.active .menu-bar > span:nth-child(3) {
    transform: translate3d(0px, -13px, 0) rotate(-45deg);
}
@-webkit-keyframes aniHeaderMenu {
    0% {
      -webkit-transform: translate3d(0, -80%, 0);
              transform: translate3d(0, -80%, 0);
    }
    100% {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}
@keyframes aniHeaderMenu {
    0% {
        -webkit-transform: translate3d(0, -80%, 0);
              transform: translate3d(0, -80%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}
@media(max-width: 1260px){
    header nav ul
    {
        padding-left: 160px;
    }
    header nav ul a
    {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media(max-width: 1100px){
    header nav ul a
    {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media(max-width: 1024px){
    header
    {
        position: sticky;
    }
    header .container
    {
        padding: 0;
    }
    header .head
    {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        height: 56px;
        background: #fff;
        z-index: 100;
    }
    header nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 56px;
        bottom: 0;
        margin-top: 0 !important;
        padding: 0;
        height: 48px;
        background: #fff;
        z-index: 100;
        height: calc(100% - 56px);
        overflow-y: auto;
        display: none;
    }
    header nav.active
    {
        display: block;
    }
    header nav ul{
        width: 100%;
        text-align: center;
        display: inline-block;
        padding: 25px 20px 0 20px;
    }
    header nav ul li{
        width: 100%;
        text-align: center;
    }
    header nav ul li a
    {
        padding: 15px 0px;
        display: block;
        border-bottom: 1px solid #0c1839;
    }
    header .head .concept.sp
    {
        display: flex;
        width: 164px;
        height: 56px;
        position: absolute;
        right: 76px;
        margin-top: 0;
        border-radius: 0 0 5px 5px;
    }
    header #menu-toggle
    {
        display: block;
    }
    .main-logo .concept
    {
        display: none;
    }
    .open-menu .main-logo
    {
        display: none;
        animation: aniFadeIn 0.3s linear;
    }
    header nav ul li.download
    {
        margin-top: 10px;
    }
    header nav ul li.download,
    header nav ul li.inquiry,
    header nav ul li.login
    {
        padding: 10px 0;
    }
    header nav ul li.download a,
    header nav ul li.inquiry a,
    header nav ul li.login a
    {
        width: 350px;
        display: inline-block;
        padding: 15px 0;
    }
    header nav ul li.download a,
    header nav ul li.inquiry a
    {
        border-bottom: none;
    }
    header nav ul li.download,
    header nav ul li.inquiry
    {
        padding-right: 0;
    }
}
@media(max-width: 480px){
    header nav ul li.download
    {
        margin-top: 8px;
    }
    header nav ul li.download,
    header nav ul li.inquiry,
    header nav ul li.login
    {
        padding: 10px 0;
    }
    header nav ul li.download a,
    header nav ul li.inquiry a,
    header nav ul li.login a
    {
        width: 100%;
    }
    header nav ul li a
    {
        padding: 15px 0 !important;
    }
}
@media(max-width: 428px){
    header .head .concept.sp
    {
        width: 140px;
    }
    .main-logo .inner
    {
        width: 140px;
    }
}
@media(max-width: 400px){
    header .head .concept.sp
    {
        width: 135px;
    }
    .main-logo .inner
    {
        width: 135px;
    }
}
@media(max-width: 375px){
    header .head .concept.sp
    {
        width: 130px;
    }
    .main-logo .inner
    {
        width: 130px;
    }
}
@media(max-width: 320px){
    header .head .concept.sp
    {
        width: 110px;
    }
    .main-logo .inner
    {
        width: 100px;
    }
}
@keyframes aniFadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
/*
==============================================================
========================= End header =========================
==============================================================
*/
/*
==============================================================
=========================== banner ===========================
==============================================================
*/
.banner
{
    padding-top: 40px;
}
.banner .container
{
    padding-left: 100px;
}
.banner .banner-slider img
{
    position: absolute;
    width: 100%;
}
.banner .banner-slider li
{
    overflow: hidden;
    position: relative;
}
.banner .banner-slider li:first-child img
{
    position: relative;
}
.banner .slick-slider li img
{
    position: unset !important;
}
.banner .slick-dots
{
    position: absolute;
    right: -15%;
    top: 50%;
    transform: translate(0, -50%);
}
.banner .slick-dots li
{
    line-height: 1;
    padding: 3px 0;
}
.banner .slick-dots li button{
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid #121d3d;
    border-radius: 100%;
    text-indent: -999999px;
    margin: 0;
    padding: 0;
    line-height: 1;
}
.banner .slick-dots .slick-active button
{
    background: #28a8d2;
    border-color: #28a8d2;
}
@media(max-width: 1366px){
    .banner .slick-dots
    {
        right: -12%;
    }
}
@media(max-width: 1260px){
    .banner .container
    {
        padding-left: 180px;
    }
    .banner .slick-dots
    {
        right: -8%;
    }
}
@media(max-width: 1160px){
    .banner .slick-dots
    {
        right: -5%;
    }
}
@media(max-width: 1100px){
    .banner .container
    {
        padding-left: 200px;
        padding-right: 40px;
    }
    .banner .slick-dots
    {
        right: -25px;
    }
}
@media(max-width: 1024px){
    .banner
    {
        padding-top: 110px;
    }
    .banner .container
    {
        padding-left: 210px;
        padding-right: 30px;
    }
    .banner .slick-dots
    {
        right: -15px;
    }
}
@media(max-width: 576px){
    .banner
    {
        padding-top: 250px;
    }
    .banner .container
    {
        padding-left: 45px;
        padding-right: 45px;
    }
    .banner .slick-dots
    {
        right: -15px;
    }
    .banner .slick-dots
    {
        position: unset;
        text-align: center;
        line-height: 1;
        margin-top: 30px;
    }
    .banner .slick-dots li
    {
        display: inline-block;
        padding: 5px 8px;
    }
}
@media(max-width: 480px){
    .banner .container
    {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media(max-width: 428px){
    .banner
    {
        padding-top: 210px;
    }
}
@media(max-width: 400px){
    .banner
    {
        padding-top: 205px;
    }
}
@media(max-width: 375px){
    .banner
    {
        padding-top: 195px;
    }
}
@media(max-width: 320px){
    .banner
    {
        padding-top: 155px;
    }
}
/*
==============================================================
========================== End banner ========================
==============================================================
*/
/*
==============================================================
============================ about ===========================
==============================================================
*/
.about
{
    background: #28a8d2;
    padding: 60px 0 70px;
    margin-top: 40px;
}
.corp-logo-slider
{
    display: inline-block;
    margin-bottom: 50px;
    width: 100%;
    overflow: hidden;
}
.corp-logo-slider ul
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-left: -6%;
    margin-right: -6%;
}
.corp-logo-slider li
{
    width: 20%;
    padding: 0 10px;
}
.corp-logo-slider a
{
    width: 100%;
    background: #ececec;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    padding: 5px 0;
}
.corp-logo-slider img{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    max-width: 100%;
    height: 75px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}
.about .desc
{
    max-width: 500px;
    margin: 0 auto;
}
.about .img
{
    margin-top: 30px;
}
.about .img img
{
    width: 100%;
}
.about .btn-group
{
    margin-top: 50px;
}
@media(max-width: 1200px){
    .corp-logo-slider ul
    {
        margin-left: -8%;
        margin-right: -8%;
    }
}
@media(max-width: 960px){
    .corp-logo-slider ul
    {
        margin-left: -11%;
        margin-right: -11%;
    }
}
@media(max-width: 768px){
    .corp-logo-slider ul
    {
        margin-left: -15%;
        margin-right: -15%;
    }
}
@media(max-width: 576px){
    .about
    {
        padding: 30px 0 45px;
        margin-top: 12px;
    }
    .corp-logo-slider ul
    {
        margin-left: -20%;
        margin-right: -20%;
    }
    .corp-logo-slider li
    {
        padding: 0 5px;
    }
    .corp-logo-slider img{
        height: 58px;
    }
    .about .img
    {
        margin-top: 20px;
    }
    .about .btn-group
    {
        margin-top: 20px;
    }
}
@media(max-width: 320px){
    .btn
    {
        font-size: 1rem;
    }
}
/*
==============================================================
========================= End about ==========================
==============================================================
*/
/*
==============================================================
====================== uchiwa-function =======================
==============================================================
*/
.uchiwa-function
{
    padding: 50px 0 40px;
}
.uchiwa-function .item
{
    width: 50%;
    margin-bottom: 40px;
}
.uchiwa-function .item.sp{
    display: none;
}
.uchiwa-function h3
{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.uchiwa-function .item img
{
    width: 100%;
}
.uchiwa-function .item.txt
{
    padding-top: 60px;
}
.uchiwa-function .item.left
{
    padding-right: 50px;
}
.uchiwa-function .item.right
{
    padding-left: 50px;
}
.uchiwa-function .desc
{
    display: inline-block;
    width: 100%;
    font-family: 'KozGoPr6N','Zen Kaku Gothic New', sans-serif;
    border: 2px solid #121d3d;
    border-radius: 6px;
    margin: 0 auto;
    padding: 25px 30px;
    margin-top: 30px;
}
.uchiwa-function .desc p
{
    position: relative;
    padding-left: 15px;
    position: relative;
    letter-spacing: 2px;
}
.uchiwa-function .desc p:before
{
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 50px;
    height: 50px;
    background: url('../img/ic-check.png') no-repeat;
    background-position: left top;
}
@media(max-width: 768px){
    .uchiwa-function
    {
        padding-bottom: 75px;
    }
    .uchiwa-function .items,
    .uchiwa-function .item
    {
        display: inline-block;
        width: 100%;
    }
    .uchiwa-function .items
    {
        margin-top: 10px;
    }
    .uchiwa-function .item
    {
        width: 100%;
    }
    .uchiwa-function .item.pc{
        display: none;
    }
    .uchiwa-function .item.sp{
        display: inline-block;
        text-align: center;
    }
    .uchiwa-function .item.last
    {
        margin-bottom: 0px;
    }
    .uchiwa-function h3
    {
        text-align: center;
    }
    .uchiwa-function .item img
    {
        width: auto;
        max-width: 100%;
    }
    .uchiwa-function .item.txt
    {
        padding-top: 0px;
    }
    .uchiwa-function .item.left,
    .uchiwa-function .item.right
    {
        text-align: center;
    }
    .uchiwa-function .item.left
    {
        padding-right: 0px;
    }
    .uchiwa-function .item.right
    {
        padding-left: 0px;
    }
}
@media(max-width: 576px){
    .uchiwa-function
    {
        padding: 30px 0 45px;
    }
    .uchiwa-function h3
    {
        display: none;
    }
    .uchiwa-function .desc p br
    {
        display: none;
    }
    .uchiwa-function .item
    {
        margin-bottom: 40px;
    }
    .uchiwa-function .item.left,
    .uchiwa-function .item.sp
    {
        padding-left: 25%;
        padding-right: 25%;
        margin-bottom: 10px;
    }
    .uchiwa-function .desc
    {
        margin-top: 20px;
    }
}
@media(max-width: 480px){
    .uchiwa-function .item.left,
    .uchiwa-function .item.sp
    {
        padding-left: 17%;
        padding-right: 17%;
    }
    .uchiwa-function .desc
    {
        padding: 15px;
    }
}
/*
==============================================================
===================== End uchiwa-function ====================
==============================================================
*/
/*
==============================================================
===================== organization-uchiwa ====================
==============================================================
*/
.organization-uchiwa
{
    background: #28a8d2;
    padding: 50px 0 70px;
    font-weight: 700;
}
.organization-uchiwa .item:first-child
{
    width: 42%;
}
.organization-uchiwa .item:last-child
{
    flex: 1;
    padding-left: 30px;
    padding-top: 40px;
}
.organization-uchiwa .item img
{
    width: 100%;
}
.organization-uchiwa .item h3
{
    font-size: 2.18rem;
    line-height: 1.4;
    margin-bottom: 20px;
}
.organization-uchiwa .item p
{
    margin-bottom: 15px;
    font-size: 1.8rem;
    line-height: 1.4;
}
.organization-uchiwa .item p span{
    display: inline-block;
    background: #fff;
    padding: 3px 10px;
}
.organization-uchiwa .txt
{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 40px;
}
.organization-uchiwa .txt p
{
    font-size: 2.18rem;
    line-height: 1.7;
}
.organization-uchiwa .txt p:last-child
{
    margin-bottom: 0;
}
.organization-uchiwa .line
{
    background: url('../img/arrow-down-white.png') no-repeat;
    background-position: center;
    height: 75px;
}
.organization-uchiwa .item .img
{
    margin-bottom: 0;
}
@media(max-width: 768px){
    .organization-uchiwa .items,
    .organization-uchiwa .item
    {
        display: inline-block;
        width: 100%;
    }
    .organization-uchiwa .items
    {
        margin-bottom: 30px;
    }
    .organization-uchiwa .item
    {
        width: 100% !important;
        text-align: center;
        flex: auto;
    }
    .organization-uchiwa .item:last-child
    {
        padding-left: 0;
    }
    .organization-uchiwa .item .img
    {
        padding-left: 30px;
        padding-right: 30px;
    }
    .organization-uchiwa .item img
    {
        width: auto;
        max-width: 100%;
    }
    .organization-uchiwa .txt
    {
        margin-top: 30px;
    }
    .organization-uchiwa .item h3
    {
        font-size: 2rem;
    }
    .organization-uchiwa .item p
    {
        font-size: 1.6rem;
    }
    .organization-uchiwa .txt p
    {
        font-size: 1.8rem;
    }
}
@media(max-width: 576px){
    .organization-uchiwa
    {
        padding: 30px 0 40px;
    }
    .organization-uchiwa .items
    {
        margin-bottom: 20px;
    }
    .organization-uchiwa .item:last-child
    {
        padding-top: 30px;
    }
    .organization-uchiwa .txt
    {
        margin-top: 20px;
    }
    .organization-uchiwa .line
    {
        background: url('../img/arrow-down-white.png') no-repeat;
        background-position: center;
        height: 64px;
        background-size: 36px 63px;
    }
}
@media(max-width: 480px){
    .organization-uchiwa
    {
        padding-bottom: 35px;
    }
    .organization-uchiwa .item h3
    {
        font-size: 1.8rem;
    }
    .organization-uchiwa .item p
    {
        font-size: 1.5rem;
    }
    .organization-uchiwa .txt p
    {
        font-size: 1.7rem;
    }
}
@media(max-width: 428px){
    .organization-uchiwa .item h3
    {
        font-size: 1.6rem;
    }
    .organization-uchiwa .item p
    {
        font-size: 1.3rem;
    }
    .organization-uchiwa .txt p
    {
        font-size: 1.5rem;
    }
}
@media(max-width: 375px){
    .organization-uchiwa .item h3
    {
        font-size: 1.45rem;
    }
    .organization-uchiwa .item p
    {
        font-size: 1.15rem;
    }
    .organization-uchiwa .txt p
    {
        font-size: 1.35rem;
    }
}
/*
==============================================================
=================== End organization-uchiwa ==================
==============================================================
*/
/*
==============================================================
=========================== recommend ========================
==============================================================
*/
.recommend
{
    padding: 50px 0 70px;
}
.recommend .container
{
    padding-left: 22px;
    padding-right: 22px;
}
.recommend h2.title
{
    margin-bottom: 40px;
}
.recommend .items
{
    margin-left: -22px;
    margin-right: -22px;
}
.recommend .item
{
    width: 33.33%;
    padding-left: 22px;
    padding-right: 22px;
    margin-top: 50px;
    font-size: 1.5rem;
    font-weight: 700;
}
.recommend .item .inner
{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    border: 5px solid #121d3d;
    border-radius: 6px;
    padding: 30px 15px;
}
.recommend .item .inner .img{
    position: relative;
    width: 100%;
    padding-top: 112%;
    overflow: hidden;
}
.recommend .item .inner img
{
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    vertical-align: middle;
}
.recommend .item p.tit
{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 10px;
}
@media(max-width: 960px){
    .recommend .item p.tit
    {
        font-size: 1.4rem;
    }
}
@media(max-width: 768px){
    .recommend .item
    {
        width: 50%;
    }
    .recommend .item p.tit
    {
        font-size: 1.5rem;
    }
}
@media(max-width: 640px){
    .recommend .item p.tit
    {
        font-size: 1.4rem;
    }
}
@media(max-width: 576px){
    .recommend
    {
        padding: 30px 0 45px;
    }
    .recommend .container
    {
        padding-left: 20px;
        padding-right: 20px;
    }
    .recommend .items
    {
        margin-left: 0;
        margin-right: 0;
    }
    .recommend .item
    {
        width: 100%;
        margin-top: 30px;
        padding-left: 0;
        padding-right: 0;
    }
    .recommend .item .inner
    {
        padding: 25px 15px;
        border: 4px solid #121d3d;
    }
    .recommend .item p.tit
    {
        font-size: 1.6rem;
    }
}
@media(max-width: 320px){
    .recommend .item p.tit
    {
        font-size: 1.4rem;
    }
}
/*
==============================================================
========================== End recommend =====================
==============================================================
*/
/*
==============================================================
=========================== case study =======================
==============================================================
*/
.case-study
{
    background: #28a8d2;
    padding: 50px 0 70px;
}
.case-study h2.title
{
    margin-bottom: 70px;
}
.case-study ul
{
    margin-left: -14px;
    margin-right: -14px;
    flex-wrap: wrap;
}
.case-study ul li
{
    width: 33.33%;
    padding-left: 14px;
    padding-right: 14px;
}
.case-study ul li .inner
{
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 2px solid #28a8d2;
}
.case-study ul li .img{
    position: relative;
    width: 100%;
    padding-top: 58%;
    overflow: hidden;
}
.case-study ul li img
{
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    vertical-align: middle;
}
.case-study ul li h3
{
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 15px 0 5px;
}
.case-study ul li .note
{
    display: inline-block;
    width: 100%;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 10px;
}
.case-study .slick-arrow
{
    position: absolute;
    top: 50%;
    margin-top: -25px;
    background: none;
    border: none;
    text-indent: -999999px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 100%;
}
.case-study .slick-prev
{
    background: #fff  url('../img/ic-prev.png') no-repeat;
    background-position: center;
    left: -70px;
}
.case-study .slick-next
{
    background: #fff  url('../img/ic-next.png') no-repeat;
    background-position: center;
    right: -70px;
}
@media(max-width: 1200px){
    .case-study .slick-prev
    {
        left: -55px;
    }
    .case-study .slick-next
    {
        right: -55px;
    }
}
@media(max-width: 1100px){
    .case-study .container
    {
        padding-left: 80px;
        padding-right: 80px;
    }
    .case-study .slick-prev
    {
        left: -46px;
    }
    .case-study .slick-next
    {
        right: -46px;
    }
}
@media(max-width: 640px){
    .case-study ul
    {
        margin-left: 0;
        margin-right: 0;
    }
    .case-study ul li
    {
        padding-left: 0;
        padding-right: 0;
    }
    .case-study .slick-arrow
    {
        opacity: 0.7;
    }
    .case-study .slick-prev
    {
        left: -59px;
    }
    .case-study .slick-next
    {
        right: -59px;
    }
}
@media(max-width: 576px){
    .case-study
    {
        padding: 30px 0 45px;
    }
    .case-study h2.title
    {
        margin-bottom: 60px;
    }
    
}
@media(max-width: 480px){
    .case-study .container
    {
        padding-left: 50px;
        padding-right: 50px;
    }
    .case-study ul li .inner
    {
        padding: 15px;
    }
    .case-study .slick-prev
    {
        left: -45px;
    }
    .case-study .slick-next
    {
        right: -45px;
    }
}
/*
==============================================================
======================== End case study ======================
==============================================================
*/
/*
==============================================================
============================ price ===========================
==============================================================
*/
.price
{
    padding: 60px 0 60px;
    font-weight: 700;
    text-align: center;
}
.price .info
{
    margin: 50px 0 55px;
    padding: 30px 0 40px;
}
.price .info,
.price .inquiry
{
    display: inline-block;
    width: 100%;
}
.price .info
{
    border-top: 8px solid #121d3d;
    border-bottom: 8px solid #121d3d;
}
.price .info h3,
.price .info .medium,
.price .info .small,
.price .inquiry h3,
.price .inquiry .desc
{
    line-height: 1.4;
}
.price .info h3
{
    font-size: 2.375rem;
}
.price .info .large
{
    font-size: 2.375rem;
    font-weight: bold;
    line-height: 1;
    margin: 15px 0 30px;
}
.price .info .large .m
{
    font-size: 4.375rem;
    color: #e73e14;
    padding-left: 15px;
}
.price .info .large .m .yen
{
    font-size: 2.375rem;
}
.price .info .large .l
{
    font-size: 1.875rem;
}
.price .info .medium
{
    font-size: 1.75rem;
    margin-bottom: 10px;
}
.price .info .small
{
    font-size: 1.375rem;
}
.price .inquiry h3
{
    font-size: 2.75rem;
    margin-bottom: 10px;
}
.price .inquiry .desc
{
    font-size: 1.5rem;
    margin-bottom: 45px;
}
.price .inquiry a:first-child
{
    margin-right: 20px;
}
.price .inquiry a:last-child
{
    margin-left: 20px;
}
@media(max-width: 960px){
    .price .inquiry .btn-group a
    {
        width: 50%;
    }
}
@media(max-width: 640px){
    .price .inquiry .btn-group
    {
        flex-wrap: wrap;
    }
    .price .inquiry .btn-group a
    {
        width: 80%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 30px;
    }
    .price .inquiry .btn-group a:last-child
    {
        margin-bottom: 0;
    }
}
@media(max-width: 576px){
    .price
    {
        padding: 40px 0 45px;
        font-weight: 700;
        text-align: center;
    }
    .price .info {
        margin: 30px 0 25px;
        padding: 15px 0 25px;
        border-top: 5px solid #121d3d;
        border-bottom: 5px solid #121d3d;
    }
    .price .inquiry .desc
    {
        margin-bottom: 25px;
    }
    .price .info h3,
    .price .info .large
    {
        font-size: 2rem;
    }
    .price .info .large .m
    {
        font-size: 4rem;
    }
    .price .info .large .m .yen
    {
        font-size: 2rem;
    }
    .price .info .large .l
    {
        font-size: 1.5rem;
    }
    .price .info .medium
    {
        font-size: 1.4rem;
    }
    .price .info .small
    {
        font-size: 1rem;
    }
    .price .inquiry h3
    {
        font-size: 2.4rem;;
    }
    .price .inquiry .desc
    {
        font-size: 1.2rem;
    }
    .price .inquiry .btn-group a
    {
        width: 100%;
        margin-bottom: 25px;
    }
}
@media(max-width: 428px){
    .price .info h3
    {
        font-size: 1.8rem;
    }
    .price .info .large
    {
        font-size: 1.6rem;
        margin: 10px 0 25px;
    }
    .price .info .large .m
    {
        font-size: 3.5rem;
    }
    .price .info .large .m .yen
    {
        font-size: 1.6rem;
    }
    .price .info .large .l
    {
        font-size: 1.2rem;
    }
    .price .info .medium
    {
        font-size: 1.3rem;
    }
    .price .inquiry h3
    {
        font-size: 2.1rem;;
    }
    .price .inquiry .desc
    {
        font-size: 1.2rem;
    }
}
@media(max-width: 320px){
    .price .info .large,
    .price .info .large .m .yen
    {
        font-size: 1.4rem;
    }
    .price .info .large .m
    {
        font-size: 3rem;
    }
    .price .info .large .l
    {
        font-size: 1rem;
    }
}
/*
==============================================================
========================= End price ==========================
==============================================================
*/
/*
==============================================================
=========================== footer ===========================
==============================================================
*/
footer{
    font-weight: 400;
    font-size: 0.93rem;
    line-height: 1.6;
}
footer .container
{
    max-width: 1200px;
    border-top: 1px solid #afafaf;
    padding: 25px 30px 32px 20px;
}
footer p
{
    margin-bottom: 5px;
}
footer .items .item:last-child p
{
    margin-bottom: 7px;
}
footer p:last-child,
footer .items .item:last-child p:last-child
{
    margin-bottom: 0;
}
footer a
{
    color: inherit;
}
footer a:hover
{
    color: #28a8d2;
}
footer .items .item
{
    width: 50%;
}
footer .items .item:last-child
{
    text-align: right;
    padding-right: 10px;
}
footer .large
{
    font-size: 1.375rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}
footer .company a
{
    text-decoration: underline;
    text-decoration-color: #e0e1e3;
    text-underline-offset: 3px;
}
footer .tel
{
    margin-top: 15px;
}
footer .tel a
{
    font-size: 2.25rem;
    font-weight: 900;
    color: #e73e14;
    line-height: 1;
    letter-spacing: 4px;
    padding-right: 12px;
}
footer .copy-right
{
    margin-top: 29px;
    margin-bottom: 0;
}
.scrollup {
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 70px;
    display: inline-block;
    bottom: 35px;
    right: 40px;
    position: fixed;
    z-index: 1000;
    cursor: pointer;
    display: none;
    background: #121d3d;
    border-radius: 100%;
}
.scrollup i {
    position: absolute;
    left: 16px;
    top: 20px;
    border-color: #fff;
    border-width: 0 1px 1px 0px;
    border-style: solid;
    display: inline-block;
    padding: 4px;
    width: 18px;
    height: 18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}
@media(max-width: 960px){
    footer .container
    {
        padding-left: 20px;
        padding-right: 20px;
    }
    footer .break-line,
    footer .tel a,
    footer .company a
    {
        display: block;
    }
}
@media(max-width: 576px){
    footer .items,
    footer .items .item
    {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    footer .items .item:last-child
    {
        text-align: center;
    }
    footer .items .item
    {
        margin-bottom: 27px;
    }
    footer .items .item:last-child
    {
        margin-bottom: 0;
    }
    footer .tel
    {
        margin-top: 18px;
    }
    footer .tel a
    {
        text-decoration: underline;
        text-decoration-color: #ea6148;
        text-decoration-thickness: 1px;
        text-underline-offset: 4px;
        margin-bottom: 23px;
    }
    footer .copy-right
    {
        margin-top: 25px;
    }
    .scrollup {
        right: 5px;
        bottom: 30px;
    }
}
@media(max-width: 320px){
    footer .container
    {
        padding-left: 5px;
        padding-right: 5px;
    }
}
/*
==============================================================
========================= End footer =========================
==============================================================
*/
/*
==============================================================
============================ dialog ==========================
==============================================================
*/
.dialog
{
    position: fixed;
    left: 70px;
    right: 70px;
    bottom: 70px;
    top: 70px;
    z-index: 1000;
    display: none;
    transition: .2s;
}
.dialog.show
{
    display: block;
}
.dialog-backdrop
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #28a8d2;
    opacity: .9;
    z-index: 1;
}
.dialog .dialog-content
{
    position: relative;
    display: block;
    max-width: 650px;
    margin: 0 auto;
    z-index: 2;
}
.dialog .close a
{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 39px;
    background: url('../img/close.png') no-repeat;
    display: inline-block;
}
.dialog .inner
{
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    font-size: 0.93rem;
    text-align: center;
    display: block;
    position: relative;
    padding-top: 80px;
}
.dialog .dialog-body
{
    display: block;
    width: 100%;
    max-height: calc(100vh - 230px);
    padding: 0px 55px 40px 55px;
    overflow-y: auto;
}
.dialog .dialog-body h2
{
    font-size: 2.3rem;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 700;
}
.dialog .dialog-body .img
{
    text-align: center;
    margin: 25px auto 0;
 width: 212px;
}
.dialog .dialog-body .img img
{
    max-width: 100%;
}
@media(max-width: 767px){
    .dialog
    {
        left: 20px;
        right: 20px;
        bottom: 20px;
        top: 20px;
    }
    .dialog .dialog-content
    {
        max-width: 100%;
    }
    .dialog .inner
    {
        text-align: left;
        padding-top: 35px;
    }
    .dialog .dialog-body
    {
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        padding: 0px 20px 25px 20px;
    }
    .dialog .dialog-body h2
    {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .dialog .dialog-body .img
    {
        margin-top: 15px;
    }
    .dialog .dialog-body p br
    {
        display: none;
    }
    .dialog .close
    {
        text-align: center;
        margin-top: 25px;
    }
    .dialog .close a
    {
        position: unset;
    }
}
@media(max-width: 576px){
    .dialog .dialog-body h2
    {
        font-size: 1.7rem;
    }
}
@media(max-width: 480px){
    .dialog .dialog-body h2
    {
        font-size: 1.4rem;
    }
}
@media(max-width: 414px){
    .dialog .dialog-body h2
    {
        font-size: 1.2rem;
    }
}
@media(max-width: 320px){
    .dialog .dialog-body h2
    {
        font-size: 1rem;
    }
    .dialog .inner
    {
        font-size: 0.8rem;
    }
}
/*
==============================================================
========================== End dialog ========================
==============================================================
*/