@charset "UTF-8";
body{
    background: #fff;
    color: #000;
}

/*--------------
共通
--------------*/
.flex {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}
.inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}
.inner_1000 {
    max-width:1000px;
    width: 90%;
    margin: 0 auto;
}
.inner_1100 {
    max-width:1100px;
    width: 90%;
    margin: 0 auto;
}
.inner_1400 {
    max-width:1400px;
    width: 90%;
    margin: 0 auto;
}
.inner_1600 {
    max-width:1600px;
    width: 90%;
    margin: 0 auto;
}

.pc { display: block;}
.sp { display: none;}

sup {
    font-size: 11px;
    vertical-align: top;
}

/*--------------
header
--------------*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
}
header img { width: 100%;}
/* ボタンエリア */
#head_Wrap {
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    z-index: 999;
    padding: 0 20px;
    background: #fff;
}
#site_Ttl_Area {
    align-items: center;
}
#site_Ttl_Area h1 a {
    display: block;
    width: 180px;
    max-width: 100%;
}
#head_Btn_Area {
    justify-content: flex-end;
    align-items: center;
    width: calc(95% - 180px);
    margin-left: 5%;
}
#head_Btn_Area ul {
    box-sizing: border-box;
}
#head_Btn_Area li {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 1.25em;
    cursor: pointer;
}
#head_Btn_Area li span {
    display: block;
    font-size: min(1.4vw,15px);
    padding: 50px 0;
}
#head_Btn_Area li::before,
#head_Btn_Area li::after {
    content: "";
    position: absolute;
    bottom: 30px;
    width: 0;
    height: 2px;
    transition: .3s;
    display: inline-block;
    text-align: center;
}
#head_Btn_Area li::before {
    left: 50%;
    background: #0032e6;
}
#head_Btn_Area li::after {
    right: 50%;
    background: #0032e6;
}
#head_Btn_Area li:hover::before,
#head_Btn_Area li:hover::after {
    width: 10px;
}

/*current*/
/*#indexP #head_Btn_Area li:nth-child(1)::before,
#indexP #head_Btn_Area li:nth-child(1)::after,
#businessP #head_Btn_Area li:nth-child(2)::before,
#businessP #head_Btn_Area li:nth-child(2)::after,
#companyP #head_Btn_Area li:nth-child(3)::before,
#companyP #head_Btn_Area li:nth-child(3)::after {
    width: 10px;
}*/
#head_Btn_Area .btn-form {
    margin-left: 3%;
}
#head_Btn_Area .btn-form a {
    display: block;
    border: 1px solid #0032e6;
    border-radius: 50vh;
    padding: 0.75em 1.25em;
    transition: .3s;
}
#head_Btn_Area .btn-form a span {
    font-size: min(1.4vw,15px);
    font-weight: 700;
    display: flex;
    align-items: center;
    color: #0032e6;
    transition: .3s;
}
#head_Btn_Area .btn-form a span::before {
    content: "";
    display: block;
    width: 1.2em;
    aspect-ratio: 12.1/8.8;
    background: url(../img/ico_mail-bl.svg) no-repeat center center;
    background-size: contain;
    margin-right: 0.35em;
    transition: .3s;
}
#head_Btn_Area .btn-form a:hover {
    background: #0032e6;
}
#head_Btn_Area .btn-form a:hover span {
    color: #fff;
}
#head_Btn_Area .btn-form a:hover span::before {
    background: url(../img/ico_mail-wh.svg) no-repeat center center;
    background-size: contain;
}
#head_Btn_Area .btn-search {
    width: 36px;
    margin-left: 1%;
}
#head_Btn_Area .btn-search a { transition: .3s;}
#head_Btn_Area .btn-search a:hover { opacity: .6; }
#head_Btn_Area .btn-en {
    margin-left: 1%;
    position: relative;
}
#head_Btn_Area .btn-en span {
    color: #0032e6;
    font-weight: 700;
}
#head_Btn_Area .btn-en::before,
#head_Btn_Area .btn-en::after {
    content: "";
    position: absolute;
    bottom: -7px;
    width: 0;
    height:1px;
    transition: .3s;
    display: inline-block;
    text-align: center;
}
#head_Btn_Area .btn-en::before {
    left: 50%;
    background: #0032e6;
}
#head_Btn_Area .btn-en::after {
    right: 50%;
    background: #0032e6;
}
#head_Btn_Area .btn-en:hover::before,
#head_Btn_Area .btn-en:hover::after {
    width: 50%;
}
#head_Btn_Area .logo_grp {
    width: 130px;
    margin: 0 1% 0 2%;
}
#head_Btn_Area .logo_grp a { transition: .3s;}
#head_Btn_Area .logo_grp a:hover { opacity: .6; }

.accArea {
    opacity: 0;
    transform: translateY(-100%);
    transition: .5s;
    z-index: 998;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%,-100%);
    background: rgba(255, 255, 255, 0.8);
    width: 90%;
    max-width: 1000px;
    border-radius: 0 0 15px 15px;
}
.accArea.active {
    opacity: 1;
    transform: translate(-50%,0);
    position: fixed;
    z-index: 998;
}
.accArea .accnav_area {
    gap: 10%;
    padding: 3% 5%;
}
.accnav_area .sub_nav > li {
    font-size: 14px;
    margin-bottom: 1.0em;
    line-height: 1.325;
}
.accnav_area .sub_nav > li:last-child {
    margin-bottom: 0;
}
.accnav_area .sub_nav > li a {
    display: inline-block;
    position: relative;
    padding-right: 2em;
}
.accnav_area .sub_nav > li a::after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: url(../img/arw_bl.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    right: 0;
/*    bottom: 0;*/
    bottom: 0.15em;
    transition: .3s;
}
.accnav_area .sub_nav .dbk_nav {
    margin-left: 1.5em;
}
.accnav_area .sub_nav .dbk_nav > li {
    font-size: 12px;
    margin-bottom: 1.2em;
    line-height: 1.59;
}
.accnav_area .sub_nav .dbk_nav > li a::after {
    bottom: 0.25em;
}
.accnav_area .sub_nav > li a:hover::after,
.accnav_area .sub_nav .dbk_nav > li a:hover::after {
    right: -5px;
}
.accnav_area .sub_nav > li.sub {
    display: flex;
    align-items: center;
    gap: 0.25em;
    margin-top: -0.5em;
    margin-bottom: 1.5em;
    font-size: 12px;
}
.accnav_area .sub_nav > li.sub::before {
    content: "";
    display: block;
    width: 0.8em;
    height: 0.8em;
    border-radius: 50vh;
    background: #000;
    margin-top: 0.1em;
}

#head_sp_Menu { display: none; }

/*@media screen and (max-width: 1380px){*/
@media screen and (max-width: 1426px){
    #head_Btn_Area {
        flex-wrap: wrap;
        padding: 15px 0 0;
    }
    #head_Btn_Area ul {
        order: 5;
    }
    #head_Btn_Area li span {
        padding: 15px 0 30px;
    }
    #head_Btn_Area li::before,
    #head_Btn_Area li::after {
        bottom: 10px;
    }
    #head_Btn_Area .btn-form {
        order: 1;
    }
    #head_Btn_Area .btn-search {
        order: 2;
    }
    #head_Btn_Area .btn-en {
        order: 3;
    }
    #head_Btn_Area .logo_grp {
        order: 4;
    }
}



/*サイト内検索*/
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 34px;
  font-weight: 900;
  cursor: pointer;
  color:#FFF;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0032e6;
  padding: 50px 50px 80px;
  border-radius: 8px;
  width: 90%;
  max-width: 700px;
}

/*------検索結果ぺーじ内再検索*/
.modal-content-again {
  background-color: #0032e6;
  padding: 50px 50px 50px;
  margin: 0 auto 6%;
  border-radius: 8px;
  width: 90%;
  max-width: 1100px;
  position: relative;
}

.modal-content p,
.modal-content-again p {
  color:#FFF;
  margin-bottom: 10px;
}


.modal-content .search_Box,
.modal-content-again .search_Box {
  position:relative;
}
/* 検索フィールドのスタイル */
.modal-content input[type="text"],
.modal-content-again input[type="text"] {
  width: 100%;
  padding: 16px 26px;
  font-size: 16px;
  border:none;
  border-radius: 50px;
}
.modal-content input[type="text"]:focus,
.modal-content-again input[type="text"]:focus {
  outline: 0;
}

.modal-content ::-webkit-input-placeholder,
.modal-content-again ::-webkit-input-placeholder {
  color: #bbb;
}
.modal-content input[type="submit"],
.modal-content-again input[type="submit"] {
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.3em;
  width:50px;
  height:50px;
  border: none;
  color: #FFF;
  background: #c9caca;
  border-radius: 50px;
  position: absolute;
  right: 0;
  top: 0;
  width: 2.4em;
  height: 2.4em;
  outline : none;
  z-index: 10;
}




/*--------------
footer
--------------*/
footer {
    background: #fff;
    position: relative;
}
footer img { width: 100%;}

#ftr_Partner {
    padding: 30px 0 0;
}
#ftr_Partner .ftr_ttl {
    text-align: center;
    color: #9fa0a0;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 14.5px;
    margin-bottom: 20px;
}
#ftr_Partner .partner_list {
    justify-content: space-between;
    align-items: center;
    padding: 0 3%;
}
#ftr_Partner .partner_list li {
/*    height: 131px;*/
    width: calc(90% / 5);
}
#ftr_Partner .partner_list .bdr {
    display: block;
    width: 1px;
    height: 90px;
    background: #9fa0a0;
}
#ftr_Partner .partner_list li a {
    display: block;
/*    height: 90px;*/
    transition: .3s;
}
#ftr_Partner .partner_list li a:hover {
    opacity: .6;
}
/*#ftr_Partner .partner_list li img {
    height: 100%;
    width: auto;
}*/
#corporate_Area {
    padding: 70px 0 40px;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300;
}
#corporate_Area .ftr_logo {
    width: 215px;
    margin: 0 auto;
}
#corporate_Area .foot01 ul {
    justify-content: center;
    margin: 30px 0;
}
#corporate_Area .foot01 li {
    position: relative;
    display: flex;
    align-items: center;
}
#corporate_Area .foot01 li a {
    display: block;
    position: relative;
    font-size: 12px;
    padding: 0 1.5em;
    transition: 0.3s;
}
#corporate_Area .foot01 li a:hover {
    opacity: .6;
}
#corporate_Area .foot02 {
    text-align: center;
}
#corporate_Area .foot02 .address {
    line-height: 1.66375;
    font-size: 13px;
    letter-spacing: 0.1em;
}
#corporate_Area .foot02 .copyright {
    font-size: 10px;
    margin-top: 10px;
}

#page_Top {
    background: #0033ef;
    width: min(7vw,56px);
    height: min(7vw,56px);
    position: fixed;
    bottom: 30px;
    right: 30px;
    border-radius: 5px;
    z-index: 150;
    opacity: .8;
    cursor: pointer;
}
#page_Top::after {
    content: "";
    width: min(2.43vw,20px);
    height: min(3.92vw,31px);
    background: url(../img/arw_wh.svg) no-repeat center center / contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-55%) rotate(-90deg);
}
#page_Top:hover {
    opacity: 1;
}

/*--------------
content_Wrap
--------------*/
#content_Wrap img { width: 100%; }

#content_Wrap a {
  color:#0066c0;
  transition: .3s;
}
#content_Wrap a:hover {
  transition: .3s;
  opacity: .5;
}



/*=========================================================================================================
tab
=========================================================================================================*/
@media screen and (max-width: 1024px) {

    /*--------------
    header
    --------------*/
    #head_Btn_Area li {
        margin: 0 0.75em;
    }
    .accArea .accnav_area {
        gap: 5%;
    }
    .accnav_area .sub_nav > li a {
        padding-right: 1.5em;
    }

    /*--------------
    footer
    --------------*/
    footer {
        padding: 6% 0 0;
    }

    /* フッターナビゲーション */
    #foot_Nav .ftr_logo {
        padding: 4%;
    }
    #foot_Nav .ftr_logo img {
        width: min(20vw,276px);
    }
    #foot_Nav .nav_area {
        margin-left: 20px;
    }
    #foot_Nav .nav_area ul {
        gap: 1.5em;
    }

    #corporate_Area .foot01 li a {
        font-size: min(1.4vw,16px);
    }
    #corporate_Area .foot_corpotate_Logo a {
        max-width: 162px;
    }

    .copyright {
        padding: 10px 0;
        font-size: 10px;
    }
}

/*=========================================================================================================
sp
=========================================================================================================*/
@media screen and (max-width: 767px) {
    .pc { display: none;}
    .sp { display: block;}

    /*--------------
    header
    --------------*/
    header {
        background: transparent;
    }
    #head_Wrap {
        padding: 0 0 0 3.6%;
        width: 100%;
    }
    #site_Ttl_Area h1 a {
        width: 128px;
    }
    /* ボタンエリア */
    #head_Btn_Area {
        padding: 0;
    }
    #head_Btn_Area ul,
    #head_Btn_Area .btn-form,
    #head_Btn_Area .btn-en { display: none; }
    #head_Btn_Area .btn-search {
        width: 30px;
        margin-left: 5%;
        order: 2;
    }
    #head_Btn_Area .logo_grp {
        width: 98px;
        order: 1;
    }
    .accArea {
        display: none;
    }

    /* ナビゲーション */
    #head_sp_Menu {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        align-items: center;
    }
    #head_sp_Menu li {
        width: 55px;
        top:0px;
        right:0px;
        box-sizing: border-box;
        position: relative;
        text-align: center;
    }
    #head_sp_Menu li a {
        display: block;
        width: 100%;
        height: 77px;
        box-sizing: border-box;
    }

    .menu_trigger,
    .menu_trigger span {
        display: inline-block;
        transition: all .4s;
        text-align: center;
        box-sizing: border-box;
    }
    .menu_trigger span {
        position: absolute;
        left: 50%;
        width: 25px;
        height: 4px;
        border-radius: 50vh;
        background-color: #0032e6;
        transform: translateX(-50%);
    }
    .menu_trigger span:nth-of-type(1) { top: 29px;}
    .menu_trigger span:nth-of-type(2) { top: 37px;}
    .menu_trigger span:nth-of-type(3) { top: 45px;}

    #sp_menuBtn.active .menu_trigger span:nth-of-type(1) {
        top: 37px;
        left: 16px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #sp_menuBtn.active .menu_trigger span:nth-of-type(2) {
        top: 37px;
        left: 16px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #sp_menuBtn.active span:nth-of-type(3) { opacity: 0;}


    /* ナビゲーション */
    #Gnav_wrap.active {
        overflow-y: scroll;
        height: calc(100vh - 77px);
    }
    #nav_Area {
        display: none;
        padding: 6% 7.7% 30%;
        background: url(../img/spnav_bg.png) no-repeat bottom center;
        background-size: cover;
    }
    #nav_Area ul,
    #nav_Area ul a {
        color: #fff;
    }
    .main_nav > li,
    .other_nav > li {
        font-size: 20px;
        margin-bottom: 1.0em;
        position: relative;
        display: block;
        padding: 0.4em 0;
    }
    .main_nav > li::after {
        content: "";
        display: block;
        width: 1.25em;
        height: 1.25em;
        background: url(../img/ac_arw_off.svg) no-repeat center center;
        background-size: contain;
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
    }
    .main_nav > li.on::after {
        background: url(../img/ac_arw_on.svg) no-repeat center center;
        background-size: contain;
    }
    .main_nav > li.accBtnSP::after {
        top: 1em;
    }
    .accAreaSP {
        display: none;
        height: 0;
        margin-top: 1em;
        transition: .5s;
    }
    .accAreaSP.active {
        display: flex;
        justify-content: space-between;
        height: 100%;
    }
    .accAreaSP .nowrap {
        white-space: nowrap;
    }
    .accAreaSP .sub_nav {
        width: 48%;
    }
    .accAreaSP .sub_nav > li {
        font-size: 15px;
        margin-bottom: 2.0em;
        line-height: 1.06;
    }
    .accAreaSP .sub_nav > li:last-child {
        margin-bottom: 0;
    }
    .accAreaSP .sub_nav > li a {
        display: inline-block;
        position: relative;
        padding-right: 2em;
    }
    .accAreaSP .sub_nav > li a::after {
        content: "";
        display: block;
        width: 1em;
        height: 1em;
        background: url(../img/arw_wh.svg) no-repeat center center;
        background-size: contain;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .accAreaSP .sub_nav .dbk_nav {
        margin-top: 1.5em;
    }
    .accAreaSP .sub_nav .dbk_nav > li {
        font-size: 12px;
        margin-bottom: 2.0em;
        line-height: 1.325;
    }
    .accAreaSP .sub_nav .dbk_nav > li a::after {
        bottom: 0.15em;
    }
    .accAreaSP .sub_nav > li.sub {
        font-size: 12px;
        margin-top: -0.5em;
        margin-bottom: 2.0em;
/*        padding-left: 1em;*/
/*        line-height: 1.325;*/
        display: flex;
        gap: 0.25em;
    }
    .accAreaSP .sub_nav > li.sub::before {
        content: "";
        display: block;
        width: 0.8em;
        height: 0.8em;
        border-radius: 50vh;
        background: #fff;
        margin-top: 0.15em;
    }
    .other_nav {
        margin-top: 20%;
    }
    .other_nav > li a {
        display: inline-block;
        position: relative;
        padding-right: 2em;
    }
    .other_nav > li a::after {
        content: "";
        display: block;
        width: 1em;
        height: 1em;
        background: url(../img/arw_wh.svg) no-repeat center center;
        background-size: contain;
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .other_nav > li a .mail {
        display: inline-block;
        width: 1.15em;
        margin-right: 0.25em;
    }


    /*サイト内検索*/
    .close {
      position: absolute;
      top: 6px;
      right: 10px;
      font-size: 34px;
      font-weight: 900;
      cursor: pointer;
      color:#FFF;
    }

    .modal-content {
      padding: 20px 20px 40px;
      width: 94%;
      max-width: 100%;
      box-sizing: border-box;
    }

    /*------検索結果ぺーじ内再検索*/
    .modal-content-again {
      padding: 20px 20px 20px;
      margin: 0 auto 6%;
      border-radius: 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    /* 検索フィールドのスタイル */
    .modal-content input[type="text"],
    .modal-content-again input[type="text"] {
      width: 100%;
      padding: 16px 20px 16px 13px;;
      font-size: 13px;
      border:none;
      border-radius: 50px;
    }
    .modal-content input[type="text"]:focus,
    .modal-content-again input[type="text"]:focus {
      outline: 0;
    }

    .modal-content input[type="submit"],
    .modal-content-again input[type="submit"] {
      font-size: 1.3em;
      border: none;
      width: 2.3em;
      height: 2.3em;
      padding:0 0.5em;
    }

    /*--------------
    footer
    --------------*/
    #ftr_Partner {
        padding: 30px 0;
    }
    #ftr_Partner .ftr_ttl {
        font-size: 12px;
    }
    #ftr_Partner .partner_list {
        flex-wrap: wrap;
        padding: 0 4%;
        gap: 20px 0;
    }
    #ftr_Partner .partner_list li {
        height: fit-content;
        width: 44%;
/*        margin-bottom: 30px;*/
    }
    #ftr_Partner .partner_list li:nth-child(n+3) {
        width: 31%;
    }
    #ftr_Partner .partner_list .bdr {
        height: 60px;
    }
    #ftr_Partner .partner_list .bdr:nth-of-type(2) {
        display: none;
    }
    #ftr_Partner .partner_list li img {
        height: auto;
        width: 100%;
    }

    #corporate_Area {
        padding: 0 0 15px;
    }
    #corporate_Area .ftr_logo {
        width: 150px;
    }
    #corporate_Area .foot01 ul {
        justify-content: space-between;
        gap: 10px;
    }
    #corporate_Area .foot01 li a {
        font-size: 11px;
        padding: 0;
    }
    #corporate_Area .foot02 .address {
        font-size: 12px;
    }
    #corporate_Area .foot02 .copyright {
        white-space: nowrap;
        transform: scale(0.9);
        transform-origin: center;
        text-align: center;
        width: 100vw;
        margin: 5px calc(50% - 50vw) 0;
        display: inline-block;
    }

    #page_Top {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    #page_Top::after {
        width: 17.3px;
        height: 28px;
    }

    /*--------------
    content_Wrap
    --------------*/



}
