@charset "UTF-8";
/*
Theme Name: デザイン03
Theme https://www.trevo-web.com/
Author: 株式会社TREVO
Author URI: https://www.trevo-web.com/
Text Domain: TREVO Theme
*/

/*===== BASE =====*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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,
sub,
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-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
a
  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */

body {
    font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
    -webkit-text-size-adjust: none;
    line-height: 1;
    font-weight: 400;
}

* {
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

iframe {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    *zoom: 1;
}

a {
    color: #000;
}

a:hover {
    opacity: 0.8;
    transition: all .3s ease;
}

a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}

@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        pointer-events: all;
        cursor: pointer;
    }
}


/*-----------------------------------
-------------   共通  --------------
------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    width: 100%;
    font-size: 1.6rem;
    color: #000;
}

a,
a:hover {
    text-decoration: none;
}

img {
    vertical-align: bottom;
}

p {
    line-height: 3.0rem;
}

.wrapper-outter {
    max-width: 1920px;
    width: 87%;
    margin: 0 auto;
}

.wrapper {
    max-width: 1200px;
    width: 97%;
    margin: 0 auto;
}

.sub-wrapper {
    max-width: 1200px;
    width: 87%;
    margin: 0 auto;
}

h4 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

h5 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

h5::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #000;
    margin-right: 7px;
}

h6 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 2em;
    margin-bottom: 1em;
}

.t-mincho {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.t-bold {
    font-weight: bold;
}

.font12 {
    font-size: 12px;
}

.fl {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
}

.fl-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.fl-end {
    -webkit-justify-content: flex-end;
    -ms-justify-content: flex-end;
    justify-content: flex-end;
}

.fl-bt {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.fl-wr {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.fl-al-ce {
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.fl-jc-ce {
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

.arrow {
    position: relative;
}

.arrow-right::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.arrow-up::before {
    content: "";
    position: absolute;
    top: 19px;
    bottom: 0;
    width: 18px;
    height: 18px;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.btn250 {
    width: 250px;
    height: 40px;
    line-height: 4.0rem;
}

.btn450 {
    width: 450px;
    height: 60px;
    line-height: 6.0rem;
}

.d-btn {
    background-color: #000;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.d-btn a {
    color: #fff;
    display: inline-block;
    text-align: center;
    padding: 22px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.d-btn:hover {
    background-color: #018ed0;
}

.pdf-btn {
    background-image: url(img/pdf-icon.png);
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size: 39px 39px;
    padding-left: 50px;
}

.box-shadow {
    box-shadow: 2px 0 6px 1px #666666;
}

.line-blue {
    position: relative;
}

.line-blue::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 8px;
    height: 87px;
    top: 130px;
    left: -40px;
    background: -webkit-linear-gradient(#009EE7, #0069E7);
    background: -moz-linear-gradient(#009EE7, #0069E7);
    background: -ms-linear-gradient(#009EE7, #0069E7);
    background: linear-gradient(#009EE7, #0069E7);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.center {
    text-align: center;
}

.pc-none {
    display: none;
}

.sp-none {
    display: block;
}

.float-l {
    float: left;
}

.float-r {
    float: right;
}

.b-gray {
    background-color: #B8C1C7
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb100 {
    margin-bottom: 100px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.is-fixed {
    position: fixed;
    z-index: 150;
    top: 0;
    width: 100%;
}

.fade-in {
    opacity: 0;
    animation-name: fadein;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

.dl05 {
    animation-delay: 0.5s;
}

.dl1 {
    animation-delay: 1s;
}

.dl2 {
    animation-delay: 2s;
}

.dl3 {
    animation-delay: 3s;
}

.text-box-line {
    width: 70%;
    border: 2px solid #009FE8;
    padding: 2%;
    margin-left: auto;
    margin-right: auto;
}


@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    p {
        line-height: 2.4rem;
    }

    body {
        min-width: 300px;
        font-size: 1.4rem;
    }

    .wrapper {
        width: 96%;
    }

    .fl-md {
        display: flex;
        display: -ms-flexbox;
        display: -webkit-box;
        display: -webkit-flex;
    }

    .fl-st-md {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .fl-wr-md {
        flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
    }

    .fl-column-md {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .fl-bt-md {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .pc-none {
        display: block;
    }

    .sp-none {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .pdf-btn {
        background-size: 29px 29px;
        background-position: left 14px center;
        padding-left: 40px;
    }

    iframe {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .sec-title {
        font-size: 2.1rem;
    }

    .sec-title2 {
        font-size: 2.1rem;
    }

    .sec-title span {
        font-size: 1.2rem;
        padding-top: 10px;
    }

    .sec-title2 span {
        font-size: 1.2rem;
        padding-top: 10px;
    }


    .sec-title::after {
        top: 50px;
        height: 30px;
    }

    h2.u-bar {
        font-size: 1.8rem;
        line-height: 2.6rem;
        margin-bottom: 40px;
        background-size: 60% 5px;
    }

    h2.con-title {
        font-size: 1.8rem;
        padding: 8px 0;
    }

    h3.l-bar {
        font-size: 1.7rem;
        padding-left: 5px;
        border-left: 3px solid #000;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    h4 {
        font-size: 1.7rem;
    }

    h5 {
        font-size: 1.4rem;
    }

    h6 {
        font-size: 1.4rem;
    }

    .fl-column-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

/*----------------------------------
---------------- Top ---------------
------------------------------------*/

/* ------------ header --------------*/

header {
    width: 100%;
    background-color: #fff;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    border-bottom: 1px solid #E8E8E8;
    position: fixed;
    z-index: 1000;
}

.header-menu .wrapper-outter {
    width: 96%;
    margin: 10px auto;
}

.header-top .h-logo img {
    width: 100%;
}

.header-top h1 {
    font-weight: bold;
    font-size: 1.3rem;
    color: #0F4D92;
    line-height: 110%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.header-menu.top .header-top h1 {
    font-size: 1.6rem;
    line-height: 140%;
    margin-top: 25px;
}

.header-tel-sp {
    display: none;
}

.header-right .main-nav-item {
    margin-top: 10px;
    font-weight: bold;
    background-color: #0F4D92;
}

.header-right .main-nav-item:last-child {
    background-image: url(none);
}

.nav ul li:hover>a {
    opacity: 0.8;
}

.nav ul li a {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    font-size: 16px;
    color: #000;
    transition: 0.3s;
    position: relative;
    border-left: 1px solid #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    color: #fff;
    padding: 15px 40px;
}

.nav ul li a:hover {
    background-color: #1E6EC8;
}

.nav ul li:hover .sub-menu {
    max-height: 500px;
    transition: max-height ease 0.6s 1ms;
    -webkit-transition: max-height ease 0.6s 1ms;
    -moz-transition: max-height ease 0.6s 1ms;
    -ms-transition: max-height ease 0.6s 1ms;
}

.main-nav {
    position: relative;
}

.nav ul li:hover .sub-menu {
    max-height: 1000px;
    transition: all ease 0.3s;
}

.nav ul .sub-menu {
    position: absolute;
    top: 54px;
    transform: translateX(-50%);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: all ease 0.3s;
    text-align: center;
    margin-left: 2.7%;
    width: 99.5%;
}

.nav ul .has-sub::after {
    transition-delay: 0.3s;
}

.nav ul .has-sub:hover::before,
.nav ul .has-sub:hover::after {
    height: 10px;
}

.nav ul .sub-menu li {
    margin: 0;
}

.nav ul .sub-menu li a {
    color: #fff;
    padding: 15px 20px;
    width: 100%;
    display: block;
    font-size: 1.4rem;
    background-color: #0F4D92;
    border-left: none;
}

.nav ul .sub-menu li a:hover {
    background-color: #1E6EC8;
}

.header-right .header-tel {
    padding: 0px 15px 5px 26px;
    font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
    font-weight: bold;
    color: #00344E;
    background-image: url(img/tel.png);
    background-repeat: no-repeat;
    background-position: center left;
}

.header-right .header-tel a {
    font-size: 26px;
    color: #666666;
    pointer-events: none;
    color: #00344E;
}

.header-right .h-contact-btn {
    width: 100px;
    height: 100px;
    font-size: 1.4rem;
    position: relative;
    margin-left: 1px;
}

.header-right .h-contact-btn a {
    color: #fff;
    font-weight: bold;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
}

.header-right .h-contact-btn a span {
    position: absolute;
    display: block;
    width: 100%;
    top: 75%;
    text-align: center;
}

.header-right .h-contact-btn:nth-child(3) {
    background: #000;
}

.header-right .h-contact-btn:nth-child(2) a {
    background: url(img/top-icon2.png) no-repeat center top 30px;
}

.header-right .h-contact-btn:nth-child(3) a {
    background: url(img/top-icon1.png) no-repeat center top 30px;
}

.header-t-nav {
    margin-top: 2.5em;
    margin-right: 3em;
    font-size: 1.4rem;
}

.header-t-nav li {
    margin-right: 1.5em;
}

.header-t-nav li:before {
    content: '●';
    font-size: 60%;
    margin-right: 0.5em;
    color: #12848a;
}

.header-t-nav li a {
    color: #12848a;
    line-height: 100%;
    margin-top: -0.8em;
    display: block;
    margin-left: 1em;
}


@media screen and (max-width: 1345px) {
    header h1 {
        font-size: 2.2rem;
    }

    .header-left .main-nav-item {
        margin-top: 0px;
    }

    .header-right .header-tel {
        margin-top: 10px;
        background-size: 14%;
        padding-left: 20px;
    }

    .header-right .header-tel a {
        font-size: 20px;
    }

    .nav ul li a {
        font-size: 14px;
    }

    .header-right .h-contact-btn {
        width: 70px;
        height: 70px;
    }

    .header-right .h-contact-btn a span {
        font-size: 1.0rem;
    }

    .header-right .h-contact-btn:nth-child(2) a {
        background-position: center top 10px;
    }

    .header-right .h-contact-btn:nth-child(3) a {
        background-position: center top 20px;
    }
}


@media screen and (max-width: 1120px) {
    .nav-sp {
        display: none;
    }
}

@media screen and (max-width: 1060px) {
    .header-left .h-logo {
        width: 300px;
        margin: 10px 45px 10px 0;
    }

    .h-left.fl {
        display: block;
    }

    .header-t-nav {
        margin-bottom: 1em;
        margin-top: 0;
        margin-right: 0;
    }
    
    .nav ul .sub-menu {
        top: 32px;
    }

    .header-right .header-tel {
        display: none;
    }

    .nav ul li a {
        font-size: 13px;
    }

    .header-left .main-nav-item {
        padding-left: 5px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 768px) {
    header {
        order: 0;
        z-index: 150;
        position: fixed;
        box-shadow: 2px 0 6px 1px #666666;
        padding: 2% 0 2% 0;
    }

    .header-top .h-logo {
        width: 300px;
        margin: 0px 45px 0 0;
    }

    .header-menu.top .header-top .h-logo {
        width: 180px;
    }

    .header-top h1 {
        font-size: 1.1rem;
        color: #0F4D92;
        line-height: 110%;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .header-menu.top .header-top h1 {
        font-size: 1rem;
        line-height: 140%;
        margin-top: 10px;
    }

    .header-menu.top .header-top .h-left {
        margin-right: 0%;
    }

    .h-contact-btn {
        display: none;
    }

    .header-tel-sp {
        display: block;
        margin-right: 80px;
        margin-top: 5px;
        padding-left: 20px;
        font-size: 2rem;
        font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
        font-weight: bold;
        background-image: url(img/tel.png);
        background-repeat: no-repeat;
        background-position: center left;
        background-size: 14%;
    }

    .header-tel-sp a {
        color: #00344E;
    }

    .nav-sp {
        display: block;
    }

    .h-left {
        margin-right: 10%;
        width: 270px;
    }

    .h-left li {
        width: 48%;
    }

    .h-left li img {
        width: 100%;
    }

    .header-t-nav {
        display: none;
    }
}


@media screen and (max-width: 560px) {
    .header-menu .wrapper-outter {
        margin: 0;
        margin-left: 15px;
    }

    .header-top .h-logo {
        width: 140px;
        margin: 0;
    }

    .header-menu.top .header-top .h-logo {
        width: 140px;
    }

    .h-left {
        display: none;
    }

    .h-left.fl {
        display: none;
    }

    .header-menu.top .header-top .h-left {
        display: block;
        width: auto;
        margin-left: 2%;
        margin-right: 2%;
    }

    .header-menu.top .header-top h1 {
        margin-top: 5px;
    }
}


@media screen and (max-width: 480px) {
    header {
        padding: 2% 0;
    }

    header h1 {
        font-size: 2rem;
    }

    .header-tel-sp {
        font-size: 1.4rem;
        padding-top: 10px;
        padding-bottom: 10px;
        background-position: center left;
    }
}

@media screen and (max-width: 320px) {
    .header-tel-sp {
        font-size: 1.2rem;
        padding-left: 12px;
    }
}

/* ---------------- main-visual -------------------*/

.main-visual {
    width: 100%;
    margin-bottom: 120px;
    margin-top: 80px;
}

.main-visual img {
    width: 100%;
}

.main-text {
    max-width: 730px;
    margin: 0 auto;
    margin: 380px 0;
    margin-left: 20%;
}

.main-text p {
    font-size: 38px;
    line-height: 1.6;
    font-weight: bold;
    text-shadow: 1px 1px 3px #fff;
}

.main-search {
    width: 300px;
    padding: 10px;
    background-color: #E6E6E6;
    height: 460px;
    margin-right: 20%;
    margin-top: 260px;
}

.main-search-title {
    text-align: center;
    color: #00344E;
    font-size: 20px;
    font-weight: bold;
    background: url(img/main-search.png) no-repeat 40px center;
    padding: 10px 0;
    margin-bottom: 10px;
}

.main-search-con {
    padding: 30px;
    background-color: #fff;
}

.main-search form .feas-select select {
    margin-left: 0px;
    padding: 11px 1% 15px 1%;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
}

.main-search form .feas-select {
    border-bottom: none;
}

.main-search label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.main-search .feas-submit-button {
    width: 100%;
    display: block;
    padding: 8px 0 8px 0;
    color: #fff;
    font-size: 16px;
    border-style: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.main-search .keyword {
    margin-left: 0px;
    padding: 11px 1% 15px 1%;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
    border: 1px solid #A9A9A9;
}

@keyframes bar-animation {
    0% {
        height: 0px;
    }

    100% {
        height: 365px;
    }
}

@media screen and (max-width: 1750px) {
    .main-text {
        margin-left: 5%;
    }

    .main-search {
        margin-right: 5%;
    }
}

@media screen and (max-width: 1200px) {
    .member-img img {
        width: 100%;
    }
}

@media screen and (max-width: 1130px) {
    .main-text {
        max-width: 730px;
        margin: 280px 0;
        margin-left: 3%;
    }

    .main-text p {
        font-size: 24px;
    }

    .main-search {
        margin-right: 3%;
        margin-top: 160px;
    }
}

@media screen and (max-width: 1060px) {
    .main-visual {
        margin-top: 60px;
    }
}

@media screen and (max-width: 800px) {
    .main-text {
        max-width: 300px;
        margin: 220px 0;
        margin-left: 2%;
    }

    .main-text p {
        font-size: 20px;
    }

    .main-search {
        margin-right: 2%;
        margin-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .main-visual {
        margin-top: 8%;
        order: 1;
    }

    .main-visual {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 710px) {
    .main-text {
        width: 100%;
        max-width: 100%;
        margin: 100px 0;
        margin-left: 40%;
    }

    .main-visual {
        background-size: 100%;
    }

    .main-search {
        width: 96%;
        padding: 10px;
        background-color: #E6E6E6;
        height: auto;
        margin-left: 2%;
        margin-right: 2%;
        margin-top: 2%;
    }

    .main-search-title {
        background: url(img/main-search.png) no-repeat 36% center;
    }
}

@media screen and (max-width: 480px) {
    .main-visual {
        margin-top: 4.5em;
    }

    .main-text {
        margin-top: 4em;
        margin-left: 32%;
    }

    .main-text p {
        font-size: 13px;
    }

    .main-search {
        margin-top: 0px;
    }

    .main-search-title {
        background: url(img/main-search.png) no-repeat 32% center;
        background-size: 6%;
    }

    .main-search-title {
        font-size: 16px;
    }

    .main-search .feas-submit-button {
        font-size: 14px;
    }
}

/* ---------------- main -------------------*/

main {
    order: 3;
}

.top .btn {
    margin: 3em 0 5em 0;
    padding: 20px;
    background-color: #F8F8F8;
}

.top .btn h2 {
    text-align: center;
    font-size: 3rem;
    color: #35798F;
    line-height: 140%;
    margin-bottom: 1em;
}

.top .btn-list li {
    width: 32%;
    border: 1px solid #f8f8f8;
    background-color: #e0e8ee;
    display: flex;
    position: relative;
    text-align: center;
}

.top .btn-list li a {
    display: block;
    box-sizing: border-box;
    padding: 20px;
    background-color: #e0e8ee;
    height: 100%;
}

.top .btn-list li a.no {
    pointer-events: none
}

.top .btn-list li a:hover {
    background-color: #bad4e7;
}


.top .btn-list li h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1em;
    line-height: 140%;
    height: 3em;
    width: 100%;
    display: table;
}

.top .btn-list li h2 span {
    vertical-align: middle;
    display: table-cell;
}

.top .btn-list li p {
    flex-grow: 2;
    text-align: left;
    margin-top: 1em;
}

.top .btn-list li:after {
    position: absolute;
    right: 2%;
    bottom: 5px;
    content: "";
    border: 19px solid transparent;
    border-right-color: #3fa3c5;
    border-bottom-color: #3fa3c5;
    -webkit-transition: border 0.5s ease;
    transition: border 0.5s ease;
}

.info-sec {
    padding: 60px 0 60px 0;
}

.info-sec h3 {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    line-height: 140%;
}

.info-sec h3 span {
    font-size: 12px;
    margin-left: 1em;
}

.info-sec .info-posts .fl {
    border-bottom: 1px solid #CCCCCC;
    padding: 25px 0;
    line-height: 30px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.info-sec .info-posts .fl .date {
    padding: 0 30px 0 20px;
}

.info-sec .info-posts a:hover {
    background: #f1f1f1;
}

.info-sec .btn-box {
    margin-top: 60px;
}

.info-sec .btn-box a {
    margin-top: 55px;
    width: 300px;
    display: block;
    background: url(img/worl-btn.png) no-repeat 96% center;
    padding: 20px 0;
    border: 1px solid #000;
    color: #000;
    font-weight: bold;
    text-align: center;
    margin: 0 auto 0 auto;
}

.banner-sec {
    border-top: 1px solid #ccc;
    padding-top: 5em;
}

.banner-sec li {
    width: 280px;
    margin: 0 15px 15px;
}

.banner-sec li img {
    width: 100%;
}

.banner-sec02 {
    border-top: 1px solid #ccc;
    padding-top: 5em;
    margin-top: 5em;
    ;
}

.banner-sec02 li {
    width: 440px;
    margin: 0 15px 15px;
}

.banner-sec02 li img {
    width: 100%;
}


.top-company-pr-con a:hover {
    background-color: #f1f1f1;
}

.top-company-info {
    margin: 20px 0;
    font-size: 1.4rem;
}

.top-company-info .address-box img {
    margin-bottom: 15px;
}

.f-content ul {
    margin-top: 80px;
}

.f-content ul li {
    margin-bottom: 15px;
}

.f-left {
    margin-left: 115px;
}

.f-right .title {
    margin-bottom: 15px;
    font-weight: bold;
}

.f-right ul li {
    width: 33%;
}

.f-right-top {
    margin-bottom: 10px;
}

.contact-banner-btn {
    display: none;
}

footer {
    margin-top: 5em;
    order: 4;
    background-color: #F3F3F3;
}

footer p {
    line-height: 1.5;
}

footer p.f-name {
    font-size: 24px;
    margin-bottom: 20px;
}

footer .wrapper {
    text-align: center;
    padding: 20px;
}

footer .copy-right {
    font-size: 1.2rem;
    margin-top: 20px;
}

.page-top {
    opacity: 0;
    position: fixed;
    right: 10px;
    bottom: 60px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'PT Sans', sans-serif;
    letter-spacing: 2px;
}

.page-top::before {
    content: "";
    position: absolute;
    left: -50px;
    left: -50px;
    top: 6px;
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #000;
}

.page-top-active {
    opacity: 1;
}

footer .f-pt {
    letter-spacing: 2px;
}

@media screen and (max-width: 1800px) {
    .banner-sec li {
        width: 24%;
    }
}

@media screen and (max-width: 1800px) {
    .top-company-pr-con {
        padding-top: 0px;
        padding-bottom: 0px;
        margin-left: 3%;
    }

    .top-company-pr {
        background-position: right top;
        background-size: 55%;
    }
}

@media screen and (max-width: 1200px) {
    .f-left {
        margin-left: 10%;
        font-size: 13px;
    }
}

@media screen and (max-width: 930px) {
    .top-con-sec ul li a {
        font-size: 14px;
    }

    .top-con-sec ul li h3 {
        width: 76%;
    }

    .top-con-sec ul li h3 .con01 {
        background-size: 30%;
    }

    .top-con-sec ul li h3 .con02 {
        background-size: 30%;
    }

    .top-con-sec ul li h3 .con03 {
        background-size: 30%;
    }

    .top-con-sec ul li h3 .con04 {
        background-size: 30%;
    }

    .top-con-sec ul li h3 .con05 {
        background-size: 20%;
    }

    .top-con-sec ul li h3 .con06 {
        background-size: 30%;
    }

    footer .wrapper {
        padding: 20px;
    }

    .top-company-info .address-box {
        margin-right: 20px;
    }

    .top-company-info .address-box p {
        font-size: 1.2rem;
    }

    .top-company-info .address-box p.f-name {
        font-size: 1.6rem;
        margin-bottom: 20px;
        text-align: center;
    }

    footer .copy-right {
        font-size: 1rem;
    }

    .f-content ul {
        margin-top: 60px;
    }
}

@media screen and (max-width: 810px) {
    .f-left {
        margin-left: 5%;
        font-size: 12px;
    }
}

@media screen and (max-width: 768px) {

    .top-con .btn {
        margin: 40px 5px 0 5px;
        width: 46%;
        height: 60px;
    }

    .top-con .btn a {
        font-size: 14px;
        padding-top: 22px;
    }

    .top .btn h2 {
        font-size: 2rem;
    }

    .top-company-info {
        margin: 20px;
    }

    .top-company-info .fl {
        display: none;
    }

    .top-company-info .address-box {
        margin-bottom: 40px;
        margin-right: 0px;
    }

    .contact-banner-btn {
        display: block;
        position: fixed;
        bottom: 0;
        z-index: 1000;
        width: 100%;
    }

    .tel-banner>div {
        width: 50%;
        color: #fff;
    }

    .tel-box .inner {
        background: url(img/top-icon1.png) no-repeat left center;
        padding-left: 58px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .tel-banner .tel-box {
        background: #00344E;
    }

    .tel-banner .mail-box {
        background: #000;
    }

    .mail-box .inner {
        padding-left: 58px;
        background: url(img/top-icon2.png) no-repeat left center;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .tel-banner .tel-box .tel,
    .tel-banner .mail-box .mail {
        font-size: 1.4rem;
    }

    .tel-banner a {
        color: #fff;
        padding: 17px 0px;
        padding-left: 36%;
    }

    .tel-box a {
        color: #fff;
        padding-left: 40%;
    }

    .tel-box .inner,
    .mail-box .inner {
        background-size: 22px 22px;
        padding-left: 24px;
    }

    footer {
        width: 100%;
        margin: 60px auto 0 auto;
    }

    footer .wrapper {
        width: 100%;
        padding: 20px;
    }

    .top-company-info .address-box {
        margin-bottom: 0px;
        text-align: center;
        float: none;
        font-size: 12px;
    }

    .top-company-info .address-box p.f-name {
        font-size: 1.6rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .top-company-info .address-box img {
        margin-bottom: 5px;
    }

    .page-top {
        bottom: 90px;
    }

    .top-con {
        margin-top: 80px;
    }

    .top-con h2 {
        font-size: 28px;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .top-con p {
        font-size: 16px;
    }

    .top-work-title h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .top-work-title span {
        font-size: 14px;
    }

    .top-work-list .kinmu {
        margin-bottom: 10px;
    }

    .top-company-pr {
        background-position: center top;
        background-size: 100%;
    }

    .top-company-pr-con {
        margin: 0% 2%;
        width: 96%;
        text-align: center;
    }

    .top-company-pr-con a {
        margin: 2em auto 0 auto;
    }

    .top-company-pr .fl {
        display: block;
    }

    .top-company-pr .box-l {
        width: 100%;
        margin-bottom: 3em;
    }

    .top-company-pr .box-r {
        width: 100%;
    }

    .info-sec {
        padding-bottom: 60px;
    }

    .banner-sec li {
        width: 32%;
    }

    .banner-sec ul::after {
        width: 32%;
    }

    .banner-sec ul::before {
        width: 32%;
    }

    .top .btn-list li h2 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 710px) {
    .top-con-sec ul li {
        width: 49.8%;
    }

    .top-con-sec ul li a {
        font-size: 14px;
    }

    .top-con-sec ul li h3 .con01 {
        background-size: 20%;
        padding-top: 30%;
    }

    .top-con-sec ul li h3 .con02 {
        background-size: 20%;
        padding-top: 30%;
    }

    .top-con-sec ul li h3 .con03 {
        background-size: 20%;
        padding-top: 30%;
    }

    .top-con-sec ul li h3 .con04 {
        background-size: 20%;
        padding-top: 30%;
    }

    .top-con-sec ul li h3 .con05 {
        background-size: 10%;
        padding-top: 19%;
    }

    .top-con-sec ul li h3 .con06 {
        background-size: 20%;
        padding-top: 30%;
    }
}

@media screen and (max-width: 710px) {
    footer .address-box img {
        width: 100%;
    }
}

@media screen and (max-width: 560px) {
    .top .btn {
        padding: 10px;
    }

    .top .btn h2 {
        font-size: 1.8rem;
    }

    .top .btn-list.fl {
        display: block;
    }

    .top .btn-list li {
        width: 100%;
    }

    .banner-sec {
        padding-top: 2em;
    }

    .banner-sec02 {
        padding-top: 2em;
        margin-top: 2em;
    }
}

@media screen and (max-width: 480px) {

    .top-con {
        margin-top: 80px;
    }

    .top-con h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .top-con p {
        line-height: 2;
    }

    .top-con-sec {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .top-con-sec h2 {
        font-size: 20px;
        margin: 20px 0 20px 0;
    }

    .top-con-sec ul {
        margin-top: 20px;
    }

    .top-con-sec ul li {
        width: 99.8%;
    }

    .top-con-sec ul li h3 .con05 {
        padding-top: 22%;
    }

    .top-con-thi {
        margin-top: 80px;
    }

    .top-con-thi h2 {
        font-size: 20px;
    }

    .top-con-thi ul li {
        width: 100%;
    }

    .top-con-thi ul li:nth-child(1) {
        background-size: 10%;
    }

    .top-con-thi ul li:nth-child(2) {
        background-size: 10%;
    }

    .top-con-thi ul li:nth-child(3) {
        background-size: 10%;
    }

    .top-con-thi ul li:nth-child(4) {
        background-size: 10%;
    }

    .top-con-thi ul li:nth-child(5) {
        background-size: 10%;
    }

    .top-con-thi ul li:nth-child(6) {
        background-size: 10%;
    }

    .top-con-thi ul li:nth-child(7) {
        background-size: 10%;
    }

    .top-con-thi ul li:nth-child(8) {
        background-size: 10%;
    }

    .top-con-thi ul li h3 .con01 {
        background-size: 14%;
    }

    .top-con-thi ul li h3 .con02 {
        background-size: 12%;
    }

    .top-con-thi ul li h3 .con03 {
        background-size: 12%;
    }

    .top-con-thi ul li h3 .con04 {
        background-size: 12%;
    }

    .top-con-thi ul li h3 .con05 {
        background-size: 12%;
    }

    .top-con-thi ul li h3 .con06 {
        background-size: 12%;
    }

    .top-con-thi ul li h3 .con07 {
        background-size: 12%;
    }

    .top-con-thi ul li h3 .con08 {
        background-size: 12%;
    }

    .top-con-thi ul li a {
        padding: 20px 0 20px 40px;
    }

    .top-work {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .top-work-title {
        width: 220px;
        padding: 15px;
        color: #fff;
        margin-bottom: 60px;
    }

    .top-work-title h2 {
        font-size: 18px;
    }

    .top-work-title span {
        font-size: 12px;
    }

    .top-work-list {
        width: 100%;
        margin-bottom: 30px;
    }

    .top-company-pr-con h2 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .top-company-pr-con p {
        line-height: 2.2;
    }

    .banner-sec li {
        width: 48%;
    }

    .banner-sec ul::after {
        width: 48%;
    }

    .banner-sec ul::before {
        width: 48%;
    }

    .info-sec {
        padding: 0 0 40px 0;
    }

    .info-sec h3 {
        font-size: 1.5rem;
        line-height: 140%;
    }

    .info-sec .fl {
        display: block;
    }

    .info-sec .info-posts a .date {
        padding: 0 0 0 0;
    }

    footer {
        margin: 0 auto 0 auto;
    }

    footer p {
        font-size: 1.3rem;
        line-height: 1.5;
        text-align: left;
    }

    .tel-banner a {
        color: #fff;
        padding: 17px 35px;
    }

    .tel-box a {
        color: #fff;
        padding-left: 50px;
    }

    .info-sec .info-posts .fl .date {
        padding: 0 30px 0 0;
    }
}





/* ---------------- sub -------------------*/

.sub-header {
    order: 2;
}

.sec-box {
    padding: 60px 0 60px 0;
    line-height: 2;
}

.sec-box a {
    text-decoration: underline;
}

.sec-box-title {
    text-align: center;
}

.sec-box-title h2 {
    font-size: 32px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    margin-bottom: 1em;
    color: #00344E;
    line-height: 1.4;
}

.sec-box-title h3 {
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    margin-bottom: 2em;
}

.sec-box-title h3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 3px solid #4F8CD1;
    width: 30px;
}

.sec-box-title h3::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 3px solid #000;
}

.sec-box-title h3::after {
    border-bottom: 3px solid #4F8CD1;
}

.recruitment-con-l h4 {
    border-bottom: 2px solid #4F8CD1;
}

.mabox::before {
    border: solid 3px #4F8CD1;
}

.sec-box h3::before,
.sec-box h3::after {
    bottom: -10px;
}

.sub-visual {
    background: url(img/sub_title_bg.png) no-repeat center center / cover;
    height: 360px;
    margin-top: 160px;
}

.sub-visual-title {
    font-size: 3.2rem;
    font-weight: 500;
    text-align: center;
    color: #0F4D92;
    line-height: 150%;
}

.sub-visual-title .mb01 {
    margin-bottom: 20px;
}

.sub-visual-title .mb02 {
    margin-top: 20px;
}

.breadcrumb {
    padding: 8px 0;
}

.breadcrumb ul {
    max-width: 1200px;
    width: 87%;
    margin: 0 auto;
    background: url(img/breadcrumb.png) no-repeat center left;
}

.breadcrumb li {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
    color: #000;
    padding: 2px 0 2px 0;
}

.breadcrumb a {
    color: #000;
}

.breadcrumb ul li::after {
    content: ">";
    padding: 0 10px;
    color: #000;
}

.breadcrumb ul li:last-child::after {
    content: none;
}

.c-b-left,
.c-b-right {
    width: 50%;
    height: 80px;
    position: relative;
    margin-top: 60px;
}

.c-b-left {
    border-right: 1px solid #fff;
}

.c-b-left .c-b-item {
    position: absolute;
    right: 80px;
    background: url(img/phone-icon01.png) no-repeat 20px 5px / 22px 22px;
    font-size: 28px;
    color: #fff;
    letter-spacing: 0.16em;
    font-weight: 500;
}

.c-b-right .c-b-item {
    position: absolute;
    left: 140px;
    background: url(img/mail-icon01.png) no-repeat left center / 26px 26px;
}

.contact-banner-sec {
    background-image: url(img/f_contact_bg.png);
    background-position: center center;
    text-align: center;
    color: #fff;
    padding: 80px 0 80px 0;
    margin-top: 5em;
}

.contact-banner-sec p {
    font-size: 28px;
    color: #fff;
    letter-spacing: 0.1em;
}

.c-b-right a {
    background: #fff;
    width: 260px;
    margin-left: 80px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.c-banner-box a {
    display: block;
    height: 60px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    margin-top: 10px;
}

.c-b-right a:hover {
    background-color: #F2F2F2;
}

.c-b-item {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    padding-left: 45px;
}

.c-b-item .item-text p {
    font-size: 1.8rem;
}

.mabox {
    width: 80%;
    margin: 0 auto 0 auto;
    position: relative;
    text-align: center;
    color: #fff;
    padding: 2%;
    font-weight: bold;
    margin-bottom: 4em;
}

.mabox::before {
    content: '';
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    border: solid 3px #00344E;
    position: absolute;
    top: 10px;
    left: 10px;
}

.sec-box .img-box {
    margin: 5em 0;
}

.sec-box .img-box img {
    width: 100%;
}

.ethics .sub-visual {
    background: url(img/sub_title_bg02.png) no-repeat center center / cover;
    height: 360px;
    margin-top: 160px;
}

.ethics .header-right .main-nav-item {
    background-color: #45ACB2;
}

.ethics .nav ul li a:hover {
    background-color: #6bc7cc;
}

.ethics .sub-visual-title {
    color: #12848a;
}

.ethics .nav ul .sub-menu li a {
    background-color: #45ACB2;
}



@media screen and (max-width: 768px) {
    .sub-wrapper {
        width: 95%;
    }

    .sec-box {
        padding: 40px 0 40px 0;
    }

    .breadcrumb {
        padding-left: 20px;
    }

    .breadcrumb ul {
        max-width: 100%;
        width: 100%;
    }

    .breadcrumb li {
        font-size: 1rem;
    }

    .sub-visual {
        margin-top: 20vw;
        height: 200px;
    }

    .ethics .sub-visual {
        margin-top: 20vw;
        height: 200px;
    }

    .sub-visual-title {
        font-size: 2.4rem;
        text-align: center;
    }

    .sec-box .img-box-ce img {
        width: 100%;
    }

    .sub-visual-title span {
        font-size: 1.4rem;
    }

    .contact-banner-sec {
        display: none;
    }

    .sec-box-title h2 {
        font-size: 22px;
    }

    .sec-box-title h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 560px) {
    .sub-visual {
        margin-top: 12vw;
        height: 200px;
    }

    .ethics .sub-visual {
        margin-top: 12vw;
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .sub-visual-title {
        font-size: 1.8rem;
    }

    .sec-box-title h3 {
        font-size: 18px;
    }

    .breadcrumb li {
        font-size: 10px;
    }
}

/*-----------------------------------
会社概要
------------------------------------*/

.company01 img {
    margin-left: 32%;
    z-index: -10;
    position: relative;
}

.company01 p {
    width: 44%;
    margin-left: 10%;
    margin-top: -29%;
    background: rgba(252, 252, 252, .95);
    padding: 30px 35px;
    display: block;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 2.6;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .3);
}

.company table {
    width: 100%;
}

.company th {
    font-weight: bold;
    padding: 3%;
    width: 30%;
}

.company td {
    padding: 3%;
}

.company tr {
    line-height: 200%;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

@media screen and (max-width: 1300px) {
    .company01 img {
        width: 68%;
    }

    .company01 p {
        width: 56%;
        margin-left: 0%;
        margin-top: -32%;
        font-size: 20px;
        line-height: 2.2;
    }
}

@media screen and (max-width: 900px) {
    .company01 p {
        width: 60%;
        margin-left: 0%;
        margin-top: -34%;
        font-size: 16px;
    }

    .company table {
        width: 100%;
    }

    .company table:first-child {
        float: none;
    }

    .company table:last-child {
        float: none;
    }
}

@media screen and (max-width: 480px) {
    .company01 p {
        width: 90%;
        margin-left: 0%;
        margin-top: -14%;
        padding: 10px 10px;
        font-size: 14px;
        line-height: 2;
    }

    .company th {
        display: block;
        width: 100%;
        padding-bottom: 1%;
    }

    .company td {
        display: block;
        width: 100%;
        padding-top: 1%;
    }
}


/*-----------------------------------
嘉富について
------------------------------------*/

.company-info ul {
    margin: 2em 0 3em 0;
}

.company-info li {
    -webkit-transform: skewX(160deg);
    -moz-transform: skewX(160deg);
    transform: skewX(160deg);
    border-left: 8px solid #00344E;
    text-align: left;
    float: left;
    width: 48%;
    margin-top: 1.5em;
    margin-left: 2%;
}

.company-info li p {
    display: block;
    transform: skewX(-160deg);
    padding: 0 10px;
    font-weight: bold;
}

.company-info-con ul {
    widows: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4em;
}

.company-info-con li {
    width: 46%;
    margin-top: 4em;
}

.company-info-con li:nth-child(odd) {
    margin-right: 8%;
}

.company-info-con li img {
    position: relative;
    z-index: 1;
    width: 100%;
}

.company-info-con li h4 {
    position: relative;
    z-index: 2;
    margin: -30px auto 10px auto;
    text-align: center;
    background-color: rgb(0 28 66 / 80%);
    color: #fff;
    font-size: 18px;
    padding: 4%;
    width: 80%;
}

@media screen and (max-width: 768px) {
    .company-info-con li h4 {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 480px) {
    .company-info {
        width: 100%;
    }

    .company-info li {
        float: none;
        width: 90%;
        margin-left: 6%;
        font-size: 13px;
    }

    .company-info-con li {
        width: 100%;
    }

    .company-info-con li:nth-child(odd) {
        margin-right: 0%;
    }

    .company-info-con li h4 {
        font-size: 16px;
        line-height: 1.4;
    }
}


/*-----------------------------------
人材をお求めの企業様へ
------------------------------------*/

.recruitment ul {
    margin-top: 1em;
}

.recruitment li {
    margin-left: 1.2em;
    text-indent: -1.2em;
    margin-bottom: 1em;
}

.recruitment li:before {
    content: "◆ ";
}

.row {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 5em;
}

.recruitment-con-l {
    -webkit-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
    margin-top: 1em;
}

.recruitment-con-l h4 {
    border-bottom: 2px solid #00344E;
    display: inline-block;
    margin-bottom: 1em;
    margin-top: 0px;
    font-size: 20px;
    line-height: 1.6;
}

.recruitment-con-r {
    -webkit-flex-basis: 30%;
    -ms-flex-preferred-size: 30%;
    flex-basis: 35%;
    max-width: 35%;
    margin-left: 5%;
}

.recruitment-con-l ol {
    list-style-type: decimal;
    margin: 1em 0 1em 1em;
}


.recruitment-con-r img {
    width: 100%;
}

.member .row {
    border-bottom: 1px solid #ccc;
    margin-top: 2em;
    padding-bottom: 2em;
}

.member .recruitment-con-l {
    -webkit-flex-basis: 70%;
    -ms-flex-preferred-size: 70%;
    flex-basis: 75%;
    max-width: 75%;
    margin-top: 1em;
}

.member .recruitment-con-r {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    margin-left: 5%;
}

@media screen and (max-width: 768px) {
    .row {
        margin-top: 3em;
    }

    .recruitment-con-l h4 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .row {
        display: block;
    }

    .recruitment-con-l {
        max-width: 100%;
    }

    .recruitment-con-l h4 {
        font-size: 14px;
    }

    .recruitment-con-r {
        max-width: 100%;
        margin-left: 0%;
    }

    .member .recruitment-con-l {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .member .recruitment-con-r {
        -webkit-flex-basis: 40%;
        -ms-flex-preferred-size: 40%;
        flex-basis: 30%;
        max-width: 30%;
        margin: 2em auto 0 auto;
    }
}



/*-----------------------------------
流れ
------------------------------------*/

.flow {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 5em;
}

.flow-con-l {
    -webkit-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
    margin-top: 1em;
}

.flow-con-l h4 {
    color: #00344E;
    margin-bottom: 0em;
    margin-top: 0px;
    font-size: 42px;
    line-height: 1.6;
    padding-top: 1em;
    position: relative;
    float: left;
}

.flow-con-l h4::before {
    content: "";
    width: 5px;
    height: 50px;
    position: absolute;
    margin-left: 60px;
    top: 0;
    background-color: #00344E;
    position: absolute;
}

.flow-con-l p {
    float: left;
    margin: 60px 0 0 60px;
}

.flow-con-r {
    -webkit-flex-basis: 30%;
    -ms-flex-preferred-size: 30%;
    flex-basis: 35%;
    max-width: 35%;
    margin-left: 5%;
}

.flow-con-l ol {
    list-style-type: decimal;
    margin: 1em 0 1em 1em;
}


.flow-con-r img {
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .flow-con-l h4 {
        float: none;
    }

    .flow-con-l p {
        float: none;
        margin: 0 0 0 0;
    }
}

@media screen and (max-width: 1200px) {
    .flow-con-l h4 {
        font-size: 32px;
    }

    .flow-con-l h4::before {
        height: 40px;
        margin-left: 42px;
    }
}

@media screen and (max-width: 480px) {
    .flow {
        margin-top: 1em;
    }


    .flow-con-l h4 {
        font-size: 20px;
    }

    .flow-con-l h4::before {
        height: 20px;
        margin-left: 28px;
    }
}

/*-----------------------------------
よくある質問
------------------------------------*/

.faq dl {
    border-top: 1px solid #dbdbdb;
}

.faq dd {
    padding-top: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dbdbdb;
    background-image: url(img/a.png);
    background-repeat: no-repeat;
    background-position: left 23px;
    padding-left: 35px;
    font-size: 16px;
}

.faq dd:last-child {
    background-position: left 18px;
}

.faq dt {
    padding-top: 30px;
    font-weight: bold;
    color: #00344E;
    width: 100%;
    background-image: url(img/q.png);
    background-repeat: no-repeat;
    background-position: left 33px;
    padding-left: 35px;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .faq dl {
        margin-bottom: 2em;
    }

    .faq dt {
        width: 90%;
    }
}

/*-----------------------------------
検索
------------------------------------*/

.search {
    padding: 0 0 120px 0;
}

.search h4 {
    border-bottom: 3px solid #00344E;
    color: #00344E;
    font-size: 20px;
    padding-bottom: 6px;
}

.search h5 {
    font-size: 20px;
    font-weight: normal;
    padding-bottom: 6px;
    color: #00344E;
    margin-left: 10px;
    margin-bottom: 0px;
    margin-top: 1em;
}

h5::before {
    display: none;
}

form .feas-select {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

form .feas-select:first-child {
    border-bottom: none;
    padding-bottom: 0px;
}

form .feas-select:nth-child(2) {
    border-bottom: none;
    padding-bottom: 0px;
}

form .feas-select select {
    margin-left: 10px;
    padding: 1% 1% 1.2% 1%;
    border-radius: 5px;
}

.search label {
    display: inline-block;
    margin-left: 10px;
    width: 32%;
}

form .feas-select .keyword input {
    margin-left: 0px;
    padding: 11px 1% 15px 1%;
    border-radius: 5px;
    margin-top: 10px;
    width: 60%;
    border: 1px solid #A9A9A9;
}

.search .feas-submit-button {
    width: 300px;
    display: block;
    padding: 20px 0 20px 0;
    margin: 80px auto 0 auto;
    color: #fff;
    font-size: 16px;
    border-style: none;
    background-color: #00344E;
    font-weight: bold;
    cursor: pointer;
}

.search-result {
    text-align: center;
    margin-bottom: 80px;
}

.search-result div {
    color: #00344E;
    font-size: 32px;
    font-weight: bold;
    display: inline;
}

.search-result h3 {
    color: #00344E;
    font-size: 26px;
    font-weight: bold;
    border: 2px solid #00344E;
    padding: 1%;
    line-height: 100%;
    margin-bottom: 26px;
}

.search-list {
    background-color: #F3F4F5;
    padding: 30px;
    margin-bottom: 40px;
}

.search-list h3 {
    color: #00344E;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 140%;
    text-align: left;
}

.search-list .kinmu {
    display: inline-block;
    margin-right: 20px;
}

.search-list .kyuyo {
    display: inline-block;
    margin-right: 20px;
}

.search-list .con {
    margin-top: 25px;
}

.search-list .con span {
    display: block;
}

.search-list ul {
    text-align: center;
    margin-top: 30px;
}

.search-list li {
    display: inline-block;
    margin: 0 15px 0 15px;
}

.search-list li a {
    background-color: #00344E;
    text-decoration: none;
    color: #fff;
    width: 300px;
    display: block;
    font-weight: bold;
    padding: 20px 0 20px 0;
}

.search-text {
    background-color: #FFF5F5;
    padding: 30px;
    margin-bottom: 80px;
}

.search-text span {
    font-weight: bold;
    font-size: 20px;
    display: block;
    margin-bottom: 30px;
}


.search-job h4 {
    background-color: #000;
    color: #fff;
    text-align: center;
    width: 260px;
    padding: 10px 0 10px 0;
    display: block;
    border-bottom: none;
}

.search-job table {
    width: 100%;
    margin-bottom: 80px;
}

.search-job th {
    width: 16%;
    text-align: left;
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding: 2%;
}

.search-job td {
    width: 76%;
    border-bottom: 1px solid #B1B1B1;
    padding: 2%;
}

.search-job p {
    margin-bottom: 1em;
}

.search-job p:last-child {
    margin-bottom: 0em;
}

.search-job .search-job-btn a {
    background-color: #00344E;
    text-align: center;
    text-decoration: none;
    color: #fff;
    width: 300px;
    display: block;
    font-weight: bold;
    padding: 20px 0 20px 0;
    margin: 0 auto 0 auto;
}

@media screen and (max-width: 1090px) {
    .search label {
        width: 46%;
    }
}

@media screen and (max-width: 768px) {
    .search-result div {
        font-size: 22px;
    }

    .search-list li {
        width: 38%;
    }

    .search-list li a {
        width: 100%;
    }

    .search-job table {
        margin-bottom: 40px;
    }

}

@media screen and (max-width: 480px) {
    .search-result div {
        font-size: 18px;
    }

    .search {
        padding: 0 0 40px 0;
        margin-top: -3em;
    }

    .search label {
        line-height: 120%;
    }

    .search .feas-submit-button {
        margin: 40px auto 0 auto;
    }

    .search-list {
        padding: 5%;
        margin-bottom: 2em;
    }

    .search-list .kinmu {
        margin-bottom: 20px;
    }

    .search-result {
        margin-bottom: 2em;
    }

    .search-result h3 {
        font-size: 18px;
        line-height: 120%;
        text-align: left;
    }

    .search-text {
        padding: 5%;
    }

    .search-job th {
        width: 26%;
    }

    .search-list li a {
        padding: 6px 0 6px 0;
    }
}

/*-----------------------------------
--------privacy -------
------------------------------------*/

.privacy {
    width: 100%;
    line-height: 2.6rem;
}

.privacy dl {
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #CCC;
    margin-top: 30px;
    padding-top: 60px;
}

.privacy dt {
    width: 100%;
    color: #00344E;
    font-weight: bold;
    font-size: 110%;
    margin-bottom: 1em;
}

.privacy dd {
    width: 100%;
    padding-bottom: 40px;
}

.privacy dd li {
    margin-top: 5px;
    padding-bottom: 5px;
    padding-left: 2em;
}

.privacy dd li::before {
    content: '●';
    font-size: 90%;
    margin-right: 1em;
    margin-left: -2em;
}


/*-----------------------------------
お知らせ
------------------------------------*/

.info_title h2 {
    background-image: url(none);
    background: none;
    border-bottom: 3px solid #000;
    padding-left: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 1em;
    height: auto;
    font-size: 26px;
    font-weight: bold;
}

.info_con h2 {
    font-size: 22px;
    background-image: url(none);
    background: none;
    padding-left: 5px;
    border-left: 10px solid #00344E;
    height: auto;
    padding-top: 0px;
    margin-top: 1em;
    margin-bottom: 1em;
    font-weight: bold;
}

.info_con h3 {
    font-size: 20px;
    margin-top: 1em;
    margin-bottom: 1em;
    font-weight: bold;
}

.info_con h4 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.info_con h5 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    padding-left: 5px;
    border-left: 5px solid #000;
}

.info_con h6 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.info_con ul {
    padding-top: 10px;
    padding-bottom: 10px;
}

.info_con ul li {
    margin-left: 1.2em;
    text-indent: -1.2em;
    margin-bottom: 1em;
}

.info_con ul li:before {
    content: "◆ ";
}

.info_con ol {
    padding-left: 1em;
}

.info_con ol li {
    list-style-position: outside;
    list-style-type: decimal;
    background-image: none;
    padding-left: 0px;
}

.info_con table {
    border-collapse: separate;
    border-spacing: 0;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    width: 100%;
    margin-top: 1em;
    margin-bottom: 1em;
}

.info_con th {
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    color: #fff;
}

.info_con td {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    line-height: 160%;
}

.btn_c {
    margin-top: 5em;
    margin-bottom: 60px;
    text-align: center;
}

.btn_c a {
    text-align: center;
    display: block;
    border: 1px solid #CCCCCC;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
}

.btn_c a:hover {
    background-color: #E7E7E7;
}

/*--------------------------------------
link
--------------------------------------*/

.link li {
    margin-bottom: 0.5em;
    padding-left: 2em;
}

.link li:before {
    content: '●';
    font-size: 90%;
    margin-right: 1em;
    margin-left: -2em;
}

/*--------------------------------------
education
--------------------------------------*/

.education table {
    margin: 3em 0 1em 0;
    width: 100%;
    border-top: 1px solid #ccc;
}

.education table tr {
    border-bottom: 1px solid #ccc;
}

.education table th {
    font-weight: bold;
    padding: 1em;
    background-color: #ecf8f7;
}

.education table td {
    padding: 1em;
}



/*--------------------------------------
contact-page
--------------------------------------*/

.contact-sec .sub-box {
    line-height: 2.5em;
}

.contact-sec .sub-box {
    padding-bottom: 30px;
}


.contact-sec .t-note {
    margin-top: 0px;
}

.contact {
    width: 100%;
}

.contact table {
    width: 100%;
    border-top: 1px solid #ccc;
    margin-bottom: 40px;
    border-collapse: collapse;
    margin-top: 3em;
}

.contact th {
    background-color: #eeeeee;
    color: #5c5c5c;
    vertical-align: middle;
    text-align: left;
    width: 30%;
    font-weight: bold;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.contact td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.contact input {
    padding: 10px;
    font-size: 16px;
    vertical-align: middle;
    border-radius: 5px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.contact textarea {
    padding: 10px;
    font-size: 16px;
    vertical-align: middle;
    border-radius: 5px;
    width: 90%;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.contact select {
    padding: 10px;
    font-size: 16px;
    vertical-align: middle;
    border-radius: 5px;
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}

.contact-btn {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 3em;
}

.contact-btn input {
    padding: 8px;
    background-color: #FAFAF3;
    color: #000;
    cursor: pointer;
    width: 30%;
}

.thanks .contents-block p {
    margin-bottom: 40px;
    line-height: 30px;
}

.wpcf7 .wpcf7-response-output {
    margin: 10px 0 0;
    padding: 8px 35px 8px 14px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight: bold;
}

.wpcf7 .wpcf7-validation-errors {
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7;
}

.wpcf7 .wpcf7-mail-sent-ok {
    color: #3A87AD;
    background-color: #D9EDF7;
    border: 1px solid #BCE8F1;
}

input[type="radio"],
input[type="checkbox"] {
    position: relative;
    top: 0px;
    margin-bottom: 5px;
}

@media screen and (max-width:768px) {
    .wpcf7-form-control {
        width: 90%;
    }

    input[type="radio"],
    input[type="checkbox"] {
        display: inline;
    }

    .contact select {
        width: 40%;
    }

    .contact textarea {
        width: 90%;
    }

    .contact th {
        padding: 2%;
        display: block;
        width: 96%;
        border-left: none;
    }

    .contact td {
        padding: 2%;
        display: block;
        width: 96%;
    }

    .contact-sec .t-note {
        margin-left: 0;
    }

    .contact-sec .sub-box p {
        font-size: 12px;
        line-height: 20px;
    }

    .contact th {
        font-size: 12px;
        width: 100%;
    }

    .contact input {
        padding: 5px;
        width: 60%;
        font-size: 12px;
        margin-top: 7px;
    }

    .contact td {
        width: 100%;
    }

    .contact td span {
        padding-top: 5px;
        font-size: 11px;
    }

    .contact textarea {
        font-size: 12px;
        width: 60%;
        height: 150px;
        margin-top: 7px;
    }
}


@media screen and (max-width:640px) {

    .contact th {
        font-size: 12px;
    }

    .contact input {
        width: 97%;
    }

    .contact textarea {
        width: 97%;
    }
}

.gaiyou .btn {
    text-align: center;
}

.gaiyou .btn a {
    display: inline-block;
    text-align: center;
    border: 1px solid #4f8cd1;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: bold;
    margin: 20px auto;
    background-color: #d8f5ff;
}

.assignment table {
    width: 100%;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    margin-top: 2em;
}

.assignment table th {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 10px;
    color: #fff;
    background-color: #0F4D92;
    font-weight: bold;
}

.assignment table td {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 10px;
    vertical-align: middle;
}

.assignment table tr:nth-child(even) {
    background-color: #F5F5F5;
}

.assignment .name {
    white-space: nowrap;
    width: 20%;
}

.assignment .university {
    width: 20%;
}

@media screen and (max-width:560px) {
    .assignment table th {
        padding: 5px;
    }

    .assignment table td {
        padding: 5px;
    }

    .assignment .university {
        width: 24%;
    }

    .assignment .name {
        width: 26%;
    }
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06 {
    margin-top: -200px;
    padding-top: 200px;
}


#wp_page_numbers,
#wp_page_numbers ul,
#wp_page_numbers li,
#wp_page_numbers a {
    font-size: 100%
}

#wp_page_numbers {
    margin: 0;
    width: 100%;
    text-align: center;
    clear: both;
    padding-top: 30px;
    padding-bottom: 30px;
}

#wp_page_numbers ul {
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
    display: inline;
}

#wp_page_numbers li {
    margin: 2px;
    padding: 0px;
    display: inline;
}

#wp_page_numbers a {
    padding: 3px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 5px;
    color: #333;
    display: inline;
    text-align: center;
    border: 1px solid #D8D8D8;
    background-color: #F3F3F3
}

#wp_page_numbers li a:hover {
    text-decoration: underline;
    background-color: #C0C0C0;
    border-color: #C1C1C1;
}

#wp_page_numbers li.active_page a {
    border-color: #686868;
}

#wp_page_numbers li.active_page a:hover {
    color: black;
    /* IE fix */
    text-decoration: underline;
    border-color: #7A7A7A;
}

#wp_page_numbers li.page_info {
    display: inline;
    padding: 3px;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 2px;
    color: #666;
    font-size: 11px;
    border: 2px solid #888888
}

@media screen and (max-width: 768px) {

    #a01,
    #a02,
    #a03,
    #a04,
    #a05,
    #a06 {
        margin-top: -100px;
        padding-top: 100px;
    }
}