@charset "utf-8";
/* CSS Document */
html {
    scroll-behavior: smooth;
}
/* !HTML5 elements
---------------------------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
body {
    /* font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka,
		"ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, Helvetica, sans-serif; */
    font-family:
        "ヒラギノ角ゴ Pro W3",
        Hiragino Kaku Gothic Pro,
        "メイリオ",
        Meiryo,
        Osaka,
        "ＭＳ Ｐゴシック",
        MS PGothic,
        sans-serif;
    font-size: 16px;
    font-weight: 500;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    line-height: 2;
    color: #222;
    text-underline-offset: 0.3em;
}

@media screen and (max-width: 1039px) {
    body {
        font-size: 15px;
    }
}

@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
figure,
figcaption {
    margin: 0;
    padding: 0;
}

input,
textarea {
    margin: 0;
    font-size: 100%;
}

label {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 100%;
}

fieldset,
img {
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}
caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:after,
q:before {
    content: "";
}

a {
    cursor: pointer;
}

a,
input {
    outline: none;
}

input,
textarea {
    border-radius: 0;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka,
        "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, Helvetica, sans-serif;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

abbr,
acronym {
    border: 0;
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* !Base Fonts -------------------------------------------------------------- */
a {
    color: #000;
    text-decoration: none;
}
a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: #eb6c0d;
}
a:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

a.txtLink {
    color: #036db7;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.columnArticle a,
.columnArticle a:hover,
.columnArticle a:active,
.columnArticle a:focus {
    text-decoration: underline;
}
a.txtLink:hover,
a.txtLink:active,
a.txtLink:focus {
    text-decoration: none;
}
a.txtLink:hover {
    opacity: 0.7;
}
a.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}
p {
    word-wrap: break-word;
}

.fwN {
    font-weight: normal;
}
.fwB {
    font-weight: bold;
}
.fzSS {
    font-size: 76%;
} /* base 16px -> 12px */
.fzS {
    font-size: 86%;
} /* base 16px -> 14px */
.fzM {
    font-size: 100%;
}
.fzL {
    font-size: 113%;
} /* base 16px -> 18px */
.fzLL {
    font-size: 125%;
} /* base 16px -> 20px */
.fzLLL {
    font-size: 138%;
} /* base 16px -> 22px */
.fz24 {
    font-size: 24px;
}
@media screen and (max-width: 1039px) {
    a.txtLink:hover {
        opacity: 1;
    }
}
@media screen and (max-width: 767px) {
    .fz24 {
        font-size: 16px;
    }
}
sup {
    font-size: 78%;
    vertical-align: top;
}
sub {
    font-size: 78%;
    vertical-align: baseline;
}

/* !Clearfix
---------------------------------------------------------- */
.clearfix,
#contents,
.section {
    display: block;
    min-height: 1%;
}
.clearfix:after,
#contents:after,
.section:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
}
* html .clearfix,
* html #contents,
* html .section {
    height: 1%;
    /*\*/ /*/
	height: auto;
	overflow: hidden;
	/**/
}
/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
}
body {
    text-align: left;
}
@media print {
    html,
    html body {
        *zoom: 0.65;
    }
}
/* !header
---------------------------------------------------------- */
#header {
    display: flex;
    justify-content: center;
    position: fixed;
    background: rgba(255, 255, 255, 1);
    width: 100%;
    min-height: 60px;
    z-index: 100;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    /* position: relative; */
    box-sizing: content-box;
    flex-direction: column;
}

#header .inner {
    display: flex;
    position: relative;
    /* max-width: 1440px; */
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
#header h1#headerLogo img,
#header p#headerLogo img {
    display: block;
    width: 280px;
    bottom: 26px;
    margin: 12px;
}
#header a#enBtn {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 60px;
    text-align: center;
    background: #ed6d0f;
    top: 0;
    right: 0;
    transition: 0.6s;
    /* letter-spacing: 0.08em; */
    z-index: 1;
}
#header a#enBtn span {
    position: relative;
    z-index: 2;
}
#header a#enBtn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 60px;
    background: #ec9a11;
    content: "";
    opacity: 1;
    -webkit-transition:
        width 0.3s,
        opacity 0.3s,
        -webkit-transform 0.3s;
    -moz-transition:
        width 0.3s,
        opacity 0.3s,
        -moz-transform 0.3s;
    transition:
        width 0.3s,
        opacity 0.3s,
        transform 0.3s;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    z-index: 0;
}
#header a#enBtn:hover::after {
    height: 60px;
    width: 100%;
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}
@media screen and (max-width: 1039px) {
    #header {
        background: rgba(255, 255, 255, 1);
        width: 100%;
        /* height: 60px; */
    }
    #header h1#headerLogo img,
    #header p#headerLogo img {
        display: block;
        width: 219px;
        bottom: 24px;
        margin-right: 0;
    }
}

@media screen and (max-width: 767px) {
    #header {
        justify-content: flex-start;
        width: 100%;
        height: 60px;
        border-top: 0;
    }
    #header h1#headerLogo img,
    #header p#headerLogo img {
        display: block;
        width: 260px;
        height: 24px;
    }
    #header a#enBtn {
        display: none;
    }
}

@media screen and (max-width: 360px) {
    #header h1#headerLogo img,
    #header p#headerLogo img {
        display: block;
        width: 220px;
        height: 20px;
    }
}

/* !sidebar
---------------------------------------------------------- */
#sidebar {
    display: none;
}

#sidebar-sub {
    height: 60px;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    z-index: 300;
    position: relative;
}

#global-nav ul {
    position: relative;
    width: auto;
    list-style: none;
    /* text-align: right; */
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
}
#global-nav ul li {
    display: block;
    float: left;
    /* padding: 0 30px 0 0; */
}
#global-nav ul li:last-child {
    padding-right: 0;
}
#global-nav ul li.home {
    display: none;
}
#global-nav ul li.norm a {
    display: block;
    height: 60px;
    line-height: 60px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #222;
    display: block;
    position: relative;
    transition: 0.6s;
    padding: 0 18px;
}
#global-nav ul li.norm a:hover {
    color: #ed6d0f;
}
#global-nav ul li.norm a.current {
    color: #ed6d0f;
}

#global-nav .search,
#global-nav-pc .search {
    display: block;
    position: relative;
    height: 60px;
    padding: 0;
    border-style: none;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: auto;
    padding: 0 20px 0 4px;
}
#global-nav-pc .search {
    height: 54px;
}
#global-nav .search span,
#global-nav-pc .search span {
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    overflow: hidden;
}
#global-nav .search img,
#global-nav-pc .search img {
    display: block;
    width: 20px;
    height: 60px;
    margin-top: 0;
}
#global-nav .search.open img,
#global-nav .search:active img,
#global-nav .search:hover img,
#global-nav-pc .search.open img,
#global-nav-pc .search:active img,
#global-nav-pc .search:hover img {
    margin-top: -20px;
}
#global-nav ul li.en a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 60px;
    text-align: center;
    background: #ed6d0f;
    transition: 0.6s;
    /* letter-spacing: 0.08em; */
    z-index: 1;
}
#global-nav ul li.en a.current {
    background: #ec9a11;
}
#global-nav ul li.en a span {
    position: relative;
    z-index: 2;
}
#global-nav ul li.en a::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 60px;
    background: #ec9a11;
    content: "";
    opacity: 1;
    -webkit-transition:
        width 0.3s,
        opacity 0.3s,
        -webkit-transform 0.3s;
    -moz-transition:
        width 0.3s,
        opacity 0.3s,
        -moz-transform 0.3s;
    transition:
        width 0.3s,
        opacity 0.3s,
        transform 0.3s;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    z-index: 0;
}
#global-nav ul li.sp_only {
    display: none;
}
#global-nav ul li.en a:hover::after {
    height: 60px;
    width: 100%;
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}

#overlay {
    display: none;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.search_box {
    width: 100%;
    padding: 10px 50px;
    background: linear-gradient(to top, #fff, 99%, #eee);
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

header .search_box {
    border-bottom: none;
}
table.gsc-search-box {
    width: auto !important;
}
form.gsc-search-box {
    margin: 4px 0 0 !important;
}
.search_box .gsc-control-cse,
.search_box table.gsc-search-box td.gsc-input {
    padding: 0;
}
.search_box form {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.search_box .gsc-search-box .gsc-input .gsc-input-box {
    width: 640px;
    height: 50px;
    padding: 0 8px;
    border-style: none;
    border-radius: 10px 0 0 10px;
    border: #ccc 1px solid;
    font-size: 1rem;
    line-height: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.search_box .gsc-search-box .gsib_a {
    padding: 0;
}
.search_box .gsc-search-button {
    margin: 0;
}

.search_box .gsc-search-button .gsc-search-button-v2 svg {
    display: none;
}
.search_box .gsc-search-button button {
    position: relative;
    width: 100px;
    height: 50px;
    padding: 0 0 0 25px;
    border-style: none;
    border-radius: 0 10px 10px 0;
    background-color: #6e6e6e;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    line-height: 1;
    color: #fff;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.search_box button:before {
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    top: 15px;
    width: 20px;
    height: 20px;
    background-image: url(img/icon_search.png);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 20px 60px;
}
.search_box .gsc-search-button　button:hover {
    background-color: #eb6c0d;
}
.search_box button:after {
    content: "検索";
}
.search_box .gsc-search-button　button .gsc-search-button {
    margin: 0;
}

.gsc-control-cse {
    padding: 0 !important;
}
.gsc-selected-option-container {
    max-width: max-content !important;
    min-width: auto !important;
}

a#panel-btn {
    display: none;
}

@media screen and (min-width: 1440px) {
    #header .inner {
        width: 1440px;
        margin: auto;
    }
}
@media screen and (max-width: 1039px) {
    #sidebar-sub {
        background: rgba(255, 255, 255, 1);
    }
    #global-nav ul li.norm a {
        font-size: 14px;
        padding: 0 14px;
    }
    #global-nav ul li.norm a.current:hover {
        color: #ed6d0f;
    }
    #global-nav ul li.en a {
        font-size: 13px;
    }
    #global-nav ul li.en a::after {
        display: none;
    }
}
@media screen and (max-width: 899px) {
    #global-nav ul li.norm a {
        padding: 0 5px;
    }
    #global-nav ul li a {
        padding: 0 4px;
    }
    #global-nav .search {
        padding: 0 5px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .sp_only .search_box .gsc-control-cse {
        background: none !important;
        border: none !important;
    }
    .search_box .gsc-search-box .gsc-input .gsc-input-box {
        width: auto;
    }
    .search_box .gsc-search-button button {
        padding: initial;
    }
    #sidebar {
        display: block;
        position: fixed;
        padding-top: 50px;
        right: -100%;
        top: 0;
        height: 100%;
        width: 100%;
        background: #a0a087;
        -webkit-transition: 0.6s ease 0.1s;
        transition: 0.6s ease 0.1s;
    }
    #sidebar-sub {
        display: block;
        position: fixed;
        padding-top: 50px;
        right: -100%;
        top: 0;
        height: 100%;
        width: 100%;
        background: #a0a087;
        -webkit-transition: 0.6s ease 0.1s;
        transition: 0.6s ease 0.1s;
    }
    #global-nav ul {
        justify-content: flex-start;
        flex-direction: column;
        position: relative;
        width: 300px;
        height: auto;
        margin: 0 auto 20px auto;
    }
    #global-nav ul li {
        position: relative;
        width: 100%;
        float: none;
        text-align: center;
        /* padding: 0; */
    }
    #global-nav ul li.home {
        display: block;
    }
    #global-nav ul li.norm a {
        display: block;
        padding: 0;
        height: 55px;
        line-height: 55px;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 0.08em;
    }
    #global-nav ul li.norm a:hover {
        color: #fff;
        opacity: 0.6;
    }
    #global-nav ul li.norm a.current {
        color: #fff;
        opacity: 0.6;
    }
    #global-nav ul li.norm a.current:hover {
        color: #fff;
    }
    #global-nav ul li.pc_only {
        display: none;
    }
    #global-nav ul li.sp_only {
        display: block;
    }
    #global-nav ul li.en a {
        display: block;
        padding: 0;
        width: 100px;
        height: 44px;
        font-family: "Lato", sans-serif;
        font-size: 13px;
        font-weight: 700;
        line-height: 44px;
        text-align: center;
        color: #fff;
        /* background: #ca0e25; */
        background: #ed6d0f;
        border-radius: 22px;
        letter-spacing: 0.08em;
        margin: 20px auto 0 auto;
    }
    #global-nav ul li.en span {
        display: block;
        padding: 0;
        width: 100px;
        height: 44px;
        font-family: "Lato", sans-serif;
        font-size: 13px;
        font-weight: 700;
        line-height: 44px;
        text-align: center;
        color: #fff;
        /* background: #ca0e25; */
        background: #ed6d0f;
        border-radius: 22px;
        letter-spacing: 0.08em;
        margin: 20px auto 0 auto;
    }
    #global-nav .search.open img,
    #global-nav .search:active img,
    #global-nav .search:hover img {
        margin-top: -40px;
    }
    .search_box {
        background: none;
        padding: 20px 0;
    }
    .search_box input.gsc-input {
        height: 40px;
        width: auto;
        min-width: 200px;
    }
    .search_box button {
        width: 6em;
        height: 40px;
        padding: 0;
    }
    .search_box button:before {
        display: none;
    }
    /* nav open */
    .open {
        overflow: hidden;
    }
    .open #overlay {
        display: block;
    }
    .open #sidebar {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    .open #sidebar-sub {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    a#panel-btn {
        width: 60px;
        height: 60px;
        display: block;
        float: right;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 400;
    }

    a#panel-btn {
        display: flex;
        justify-content: center;
        width: 60px;
        height: 60px;
        /* background: #ed6d0f; */
        background: #ca0e25;
    }
    a#panel-btn span#panel-btn-icon {
        display: block;
        font-family: "Lato", sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        line-height: 60px;
        text-align: center;
        letter-spacing: 0.04em;
    }

    /* z-index */
    #sidebar {
        z-index: 300;
    }
    #sidebar-sub {
        z-index: 300;
    }
    #panel-btn {
        z-index: 400;
    }
}

@media screen and (max-width: 360px) {
    #sidebar {
        padding-top: 70px;
    }
    #global-nav ul {
        width: 260px;
        margin: 0 auto 10px auto;
    }
    #global-nav ul li.norm a {
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}

/* !pageTop
---------------------------------------------------------- */
.pagetop {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99;
}
.pagetop a:link,
.pagetop a:visited {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #a0a087;
    text-align: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    line-height: 60px;
    transition: all 0.2s ease;
}

.pagetop a:hover {
    line-height: 54px;
}

@media screen and (max-width: 1039px) {
    .pagetop {
        bottom: 0;
        right: 0;
    }
    .pagetop a:link,
    .pagetop a:visited {
        display: block;
        width: 50px;
        height: 50px;
        background-color: #a0a087;
        text-align: center;
        color: #fff;
        font-size: 12px;
        text-decoration: none;
        line-height: 50px;
        transition: none;
    }
}
.fixcontact {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #d9d9d9;
    text-align: center;
    padding: 0 50px 0 0;
}
.fixcontact span,
.fixcontact a {
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.fixcontact span {
    padding-right: 8px;
}
.fixcontact span::after {
    content: "コンサルティングや調査などのご依頼・ご相談は、こちらから。";
}
.columnArticle .contactBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 2em;
    background: #ed6d0f;
    border-radius: 4px;
    margin: 4px auto;
    padding: 0 16px;
    width: auto;
    text-decoration: none;
}
.fixcontact .contactBtn:hover,
.columnArticle .contactBtn:hover {
    text-decoration: none;
}
.columnArticle .contactBtn p {
    line-height: 2;
    font-size: 16px;
    padding: 0 0 0 26px;
}
.columnArticle .contactBtn::before {
    left: 16px;
    background: url(img/icon_main.png) 0 0 no-repeat;
    top: 50%;
    margin-top: -8px;
    background-size: 20px 16px;
    z-index: 2;
}
.fixcontact .contactBtn {
    width: auto;
    height: 2em;
    padding: 0 10px;
    margin: 0.4em 0;
}

.fixcontact .contactBtn p {
    position: relative;
    height: 2em;
    line-height: 2em;
    z-index: 2;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 0 32px 0 0;
}
.fixcontact .contactBtn p::after {
    content: "お問い合わせ";
}
.fixcontact .contactBtn::before {
    position: absolute;
    display: block;
    content: "";
    width: 22px;
    height: 17px;
    right: 12px;
    background: url(img/icon_main.png) 0 0 no-repeat;
    top: 50%;
    margin-top: -8px;
    background-size: 22px 17px;
    z-index: 2;
}
@media screen and (max-width: 1039px) {
    .fixcontact span::after {
        content: "弊社KSIへのご相談はこちらから";
    }
    .fixcontact span {
        font-size: 16px;
    }
    .fixcontact .contactBtn p {
        font-size: 16px;
        padding: 0;
    }
    .fixcontact .contactBtn::before {
        background: none;
    }
}
@media screen and (max-width: 767px) {
    .fixcontact span::after {
        content: "";
    }
    .fixcontact span {
        font-size: 14px;
    }
    .fixcontact .contactBtn p {
        font-size: 14px;
        padding: 0 32px 0 0;
    }
    .fixcontact .contactBtn::before {
        position: absolute;
        display: block;
        content: "";
        width: 22px;
        height: 17px;
        top: 16px;
        right: 16px;
        background: url(img/icon_main.png) 0 0 no-repeat;
        top: 50%;
        margin-top: -8px;
        background-size: 22px 17px;
        z-index: 2;
    }
    .fixcontact .contactBtn p::after {
        content: "お問い合わせ";
    }
}
/* !footer
---------------------------------------------------------- */
#footer {
    overflow: hidden;
}
#footer div.inner a {
    text-decoration: none;
}
#footer div.inner .corp_dtl_wrap {
    background: #ecece7;
}
#footer div.inner .corp_dtl {
    max-width: 1440px;
    display: flex;
    justify-content: center;
    padding: 50px 0;
    margin: auto;
}
#footer div.inner .logo_wrap {
    display: flex;
    flex-direction: column;
    flex-basis: 40%;
    justify-content: space-between;
    margin-bottom: 10px;
}
#footer div.inner a.logo {
    /* margin: 0 auto;  */
    text-align: center;
}

#footer div.inner a.logo:hover {
    color: #000;
    text-decoration: none;
}
#footer div.inner a.logo img {
    padding-bottom: 10px;
    max-width: 250px;
    width: 84%;
    text-align: center;
    margin: 0 auto;
}
#footer div.inner p.add {
    line-height: 1.8;
    text-align: center;
    color: #000;
}
#footer div.inner a:hover p.add {
    color: #000;
    text-decoration: none;
}
.contactBtn {
    position: relative;
    display: block;
    width: 250px;
    height: 60px;
    background: #ed6d0f;
    border-radius: 4px;
    margin: 0 auto;
}
.contactBtn:hover {
    text-decoration: none;
}
.contactBtn p {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 60px;
    padding: 0 1em 0 0;
    text-align: center;
}
.contactBtn::before {
    position: absolute;
    display: block;
    content: "";
    width: 22px;
    height: 17px;
    top: 21px;
    right: 30px;
    background: url(img/icon_main.png) 0 0 no-repeat;
    background-size: 22px 17px;
    z-index: 2;
}
#footer div.inner .contactBtn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 60px;
    background: #ec9a11;
    content: "";
    opacity: 1;
    border-radius: 4px;
    -webkit-transition:
        width 0.42s,
        opacity 0.42s,
        -webkit-transform 0.42s;
    -moz-transition:
        width 0.42s,
        opacity 0.42s,
        -moz-transform 0.42s;
    transition:
        width 0.42s,
        opacity 0.42s,
        transform 0.42s;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    z-index: 1;
}
#footer div.inner .contactBtn:hover::after {
    height: 60px;
    width: 100%;
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}
#footer div.inner a.govBnr img {
    border: #fff 4px solid;
    border-radius: 4px;
    height: 60px;
}
#footer div.inner a.govBnr::after {
    content: "";
    display: block;
    clear: both;
}
#footer div.inner .privacyBtn {
    font-size: 14px;
    font-weight: bold;
    color: #ed6d0f;
    transition: 0.6s;
    margin-bottom: 15px;
}
#footer div.inner .privacyBtn:hover {
    color: #ec9a11;
}
#footer div.inner .ksipm_wrap {
    background: #ecece7;
}
#footer div.inner .ksipm {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 1440px;
    margin: auto;
}
#footer div.inner .ksipm-img {
    padding: 8px;
}
#footer div.inner .ksipm-text {
    line-height: 1.2em;
    margin-left: 0.5em;
    font-size: 14px;
}

#footer div.inner .sns_wrap {
    background: #f9f9f9;
}
#footer div.inner .sns_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 10px 0; */
}
#footer div.inner .sns_inner span {
    margin-right: 2em;
}
#footer div.inner .sns {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-basis: 50%; */
}
#footer div.inner .tw,
#footer div.inner .fb {
    display: inline;
    padding-right: 0.3em;
    /* position: absolute;
    width: 40px;
    height: 40px;
    right: 0; */
}
#footer div.inner .sns a {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}
#footer div.inner .sns a:hover {
    text-decoration: none;
}
#footer div.inner .sns .tw,
#footer div.inner .sns .yt {
    color: #000;
}
#footer div.inner .sns .fb {
    color: #3b5998;
}
#footer div.inner .sns .linkd {
    color: #0a66c2;
}
#footer div.inner .sns .yt {
    color: #ff0000;
}
#footer div.inner .sns .note img {
    width: 40px;
}
#footer div.inner .fa-brands {
    font-size: 30px;
    padding-right: 4px;
}
#footer div.inner .footerLinks {
    display: flex;
    flex-basis: 70%;
    justify-content: center;
}
#footer div.inner .footerLinks ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-width: 500px;
}
#footer div.inner .footerLinks li {
    padding: 0 4em;
}
#footer div.inner .footerLinks li a {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #ed6d0f;
    transition: 0.6s;
    padding: 0.3em 0;
}
#footer div.inner .footerLinks li ul li {
    padding: 0;
}
#footer div.inner .footerLinks li ul li a {
    padding: 0 0 0 1em;
}
#footer div.inner .footerLinks li .linkicon {
    width: 24px;
    vertical-align: middle;
    padding: 3px 4px 5px;
}
p.copyright {
    width: 100%;
    height: 120px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #fff;
    line-height: 60px;
    background: #a0a087;
    overflow: hidden;
}

@media screen and (max-width: 1400px) {
    #footer div.inner {
        width: auto;
    }
}
@media screen and (max-width: 1039px) {
    #footer div.inner .contactBtn {
        width: 250px;
        height: 56px;
        margin: 0 auto;
    }
    #footer div.inner .contactBtn p {
        font-size: 16px;
        line-height: 56px;
        padding: 0 30px;
    }
    #footer div.inner .contactBtn::before {
        width: 22px;
        height: 17px;
        top: 19px;
        right: 30px;
        background-size: 22px 17px;
    }
    #footer div.inner .contactBtn::after {
        display: none;
    }
    #footer div.inner .tw li a:hover {
        color: #3b5998;
    }
    #footer div.inner .fb li a:hover {
        color: #00acee;
    }
    #footer div.inner .footerLinks li {
        padding: 0 1.6em;
    }
    #footer div.inner .ksipm {
        width: auto;
        padding: 8px 70px 8px 20px;
    }
}
@media screen and (max-width: 767px) {
    #footer div.inner .corp_dtl {
        flex-direction: column;
        padding: 5em 0.4em 3em;
    }
    #footer div.inner a.logo {
        margin: 0 auto 15px auto;
    }
    #footer div.inner .add {
        text-align: center;
    }
    #footer div.inner .contactBtn {
        width: 250px;
        height: 52px;
        margin: 0 auto 15px auto;
    }
    #footer div.inner .contactBtn p {
        font-size: 15px;
        line-height: 52px;
    }
    #footer div.inner .contactBtn::before {
        width: 22px;
        height: 17px;
        top: 18px;
        background-size: 22px 17px;
    }
    #footer div.inner .footerLinks li {
        padding: 0.1em 0;
    }
    #footer div.inner .footerLinks li a {
        font-size: 12px;
    }
    #footer div.inner .footerLinks li ul li {
        padding: 0;
    }
    #footer div.inner .footerLinks li ul li a {
        padding: 0 0 0 0.6em;
    }
    #footer div.inner .footerLinks li .linkicon {
        width: 14px;
        padding: 0 2px 2px 0;
    }

    #footer div.inner .sns_inneer {
        flex-direction: column;
        padding: 10px 0 0;
    }
    #footer div.inner .sns_inner {
        flex-direction: column;
    }
    #footer div.inner .sns_inner span {
        margin: 0;
    }
    #footer div.inner .privacyBtn {
        display: block;
        width: 100%;
        height: 40px;
        line-height: 40px;
        text-align: center;
    }
    #footer div.inner .privacyBtn:hover {
        color: #ed6d0f;
    }
    /* #footer div.inner .tw {
        position: relative;
        width: 40px;
        height: 40px;
        right: auto;
        margin: 0 auto 30px auto;
    } */
    #footer div.inner .sns a {
        padding: 4px 10px;
    }
    #footer div.inner .tw li {
        width: 40px;
    }
    #footer div.inner .tw li a {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40xp;
        font-size: 30px;
        text-align: center;
        color: #3b5998;
        transition: 0.6s;
    }
    #footer div.inner .tw li a:hover {
        color: #3b5998;
    }
    #footer div.inner .fb li {
        width: 40px;
    }
    #footer div.inner .fb li a {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40xp;
        font-size: 30px;
        text-align: center;
        color: #00acee;
        transition: 0.6s;
    }
    #footer div.inner .fb li a:hover {
        color: #00acee;
    }

    #footer div.inner .footerLinks {
        margin: 2em 0 1em;
        justify-content: space-around;
    }
    p.copyright {
        height: 100px;
        line-height: 50px;
    }
    #footer div.inner .ksipm {
        padding: 8px 10px;
    }
    #footer div.inner .ksipm-img {
        padding: 0;
    }
    #footer div.inner .ksipm-text {
        font-size: 10px;
    }
}

/* !mainvisual
---------------------------------------------------------- */
.main {
    width: 100%;
    max-width: 1440px;
    position: relative;
    padding-top: 36.666667%;
    background:
        linear-gradient(6deg, #0c506a7a 4%, rgba(255, 255, 255, 0) 46%),
        url(img/kokkai.jpg) 50% 50%;
    background-size: cover;
    top: 60px;
    -webkit-animation: bg 2s 1 ease;
    -moz-animation: bg 2s 1 ease;
    animation: bg 2s 1 ease;
    margin: 0 auto 60px auto;
}
.main p#copy1 {
    background-image: linear-gradient(18deg, rgba(45, 71, 150, 0.35) 4%, rgba(255, 255, 255, 0) 46%);
}
.main p#copy1 img {
    position: absolute;
    display: block;
    /* width: 480px;
    bottom: 60px;
    left: 50px; */

    width: 53%;
    max-width: 560px;
    bottom: 8%;
    left: 3%;

    z-index: 2;
    /* -webkit-animation: copy1 2.4s 1 ease;
    -moz-animation: copy1 2.4s 1 ease;
    animation: copy1 2.4s 1 ease; */
}
.main h2#copy2 img {
    position: absolute;
    display: block;
    width: 446px;
    top: 175px;
    left: 50px;
    z-index: 3;
    -webkit-animation: copy2 2.8s 1 ease;
    -moz-animation: copy2 2.8s 1 ease;
    animation: copy2 2.8s 1 ease;
}
.main a#contactBtn {
    position: absolute;
    display: block;
    width: 320px;
    height: 80px;
    background: #ca0e25;
    border-radius: 4px;
    bottom: 60px;
    left: 50px;
    -webkit-animation: btn 3.4s 1 ease;
    -moz-animation: btn 3.4s 1 ease;
    animation: btn 3.4s 1 ease;
}
.main a#contactBtn p {
    position: relative;
    z-index: 2;
}
.main a#contactBtn p {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    padding: 15px 34px;
}
.main a#contactBtn p span {
    font-size: 18px;
    font-weight: bold;
}
.main a#contactBtn::before {
    position: absolute;
    display: block;
    content: "";
    width: 30px;
    height: 23px;
    top: 28px;
    right: 30px;
    background: url(img/icon_main.png) 0 0 no-repeat;
    background-size: 30px 23px;
    z-index: 2;
}
.main a#contactBtn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 80px;
    background: #ed6d0f;
    content: "";
    opacity: 1;
    border-radius: 4px;
    -webkit-transition:
        width 0.42s,
        opacity 0.42s,
        -webkit-transform 0.42s;
    -moz-transition:
        width 0.42s,
        opacity 0.42s,
        -moz-transform 0.42s;
    transition:
        width 0.42s,
        opacity 0.42s,
        transform 0.42s;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    z-index: 1;
}
.main a#contactBtn:hover::after {
    height: 80px;
    width: 100%;
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}

.sp_only {
    display: none;
}
@media screen and (max-width: 767px) {
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
}
.subMain {
    width: 100%;
    height: 250px;
    position: relative;
    top: 60px;
    margin-bottom: 80px;
}
.mainPrivacy {
    background: url(img/privacy_main.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.mainCompany {
    background: url(img/company_main.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.mainCompany.en {
    background: url(img/company_main_en.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.mainColumn {
    background: url(img/column_main.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.mainService {
    background: url(img/service_main.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.mainGreeting {
    background: url(img/greeting_main.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.mainRecruitment {
    background: url(img/recruitment_main.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.mainDeipolicy {
    background: url(img/deipolicy_main.jpg) 50% 50% no-repeat;
    background-size: cover;
}
.subMain h1 {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 0.1em;
    padding-top: 80px;
}
.subMain h1 span {
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
}
.subMain h1#copyEn {
    font-family: "Lato", sans-serif;
}
.youtube_box {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube_box iframe {
    width: 100%;
    height: 100%;
    max-width: 560px;
    max-height: 315px;
}
@keyframes bg {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes copy1 {
    0% {
        opacity: 0;
        left: 0;
    }
    50% {
        opacity: 0;
        left: 0;
    }
    100% {
        opacity: 1;
        left: 50px;
    }
}

@keyframes copy2 {
    0% {
        opacity: 0;
        left: 0;
    }
    60% {
        opacity: 0;
        left: 0;
    }
    100% {
        opacity: 1;
        left: 50px;
    }
}

@keyframes copy3 {
    0% {
        opacity: 0;
        bottom: -50px;
    }
    50% {
        opacity: 0;
        bottom: -50px;
    }
    100% {
        opacity: 1;
        bottom: 0;
    }
}

@keyframes btn {
    0% {
        opacity: 0;
        bottom: 10px;
    }
    70% {
        opacity: 0;
        bottom: 10px;
    }
    100% {
        opacity: 1;
        bottom: 60px;
    }
}

@media screen and (max-width: 1039px) {
    /* .main {
        height: 320px;
    }
    .main p#copy1 img {
        width: 440px;
        bottom: 40px;
        left: 30px;
    } */
    .main h2#copy2 img {
        width: 320px;
        top: 140px;
        left: 30px;
    }
    .main a#contactBtn {
        width: 280px;
        height: 70px;
        bottom: 50px;
        left: 30px;
    }
    .main a#contactBtn p {
        font-size: 13px;
        padding: 13px 24px;
    }
    .main a#contactBtn p span {
        font-size: 16px;
    }
    .main a#contactBtn::before {
        top: 23px;
        right: 20px;
        background: url(img/icon_main.png) 0 0 no-repeat;
        background-size: 30px 23px;
    }
    .main a#contactBtn::after {
        display: none;
    }

    .subMain {
        height: 180px;
    }
    .subMain h1 {
        font-size: 16px;
        padding-top: 55px;
    }
    .subMain h1 span {
        font-size: 40px;
    }

    @keyframes copy1 {
        0% {
            opacity: 0;
            left: 0;
        }
        50% {
            opacity: 0;
            left: 0;
        }
        100% {
            opacity: 1;
            left: 30px;
        }
    }

    @keyframes copy2 {
        0% {
            opacity: 0;
            left: 0;
        }
        60% {
            opacity: 0;
            left: 0;
        }
        100% {
            opacity: 1;
            left: 30px;
        }
    }

    @keyframes copy3 {
        0% {
            opacity: 0;
            bottom: -40px;
        }
        50% {
            opacity: 0;
            bottom: -40px;
        }
        100% {
            opacity: 1;
            bottom: 0;
        }
    }

    @keyframes btn {
        0% {
            opacity: 0;
            bottom: 10px;
        }
        70% {
            opacity: 0;
            bottom: 10px;
        }
        100% {
            opacity: 1;
            bottom: 50px;
        }
    }
}

@media screen and (max-width: 767px) {
    .main {
        padding-top: 50%;
    }
    .main p#copy1 img {
        width: 70%;
    }
    .main h2#copy2 img {
        position: absolute;
        display: block;
        width: 180px;
        top: 97px;
        left: 15px;
        z-index: 3;
        -webkit-animation: copy2 3s 1 ease;
        -moz-animation: copy2 3s 1 ease;
        animation: copy2 3s 1 ease;
    }
    .main a#contactBtn {
        display: none;
    }

    .subMain {
        height: 100px;
    }
    .subMain h1 {
        font-size: 14px;
        padding-top: 18px;
    }
    .subMain h1 span {
        font-size: 30px;
    }

    @keyframes copy1 {
        0% {
            opacity: 0;
            left: -10px;
        }
        50% {
            opacity: 0;
            left: -10px;
        }
        100% {
            opacity: 1;
            left: 15px;
        }
    }

    @keyframes copy2 {
        0% {
            opacity: 0;
            left: -10px;
        }
        60% {
            opacity: 0;
            left: -10px;
        }
        100% {
            opacity: 1;
            left: 15px;
        }
    }

    @keyframes copy3 {
        0% {
            opacity: 0;
            bottom: -30px;
        }
        50% {
            opacity: 0;
            bottom: -30px;
        }
        100% {
            opacity: 1;
            bottom: 0;
        }
    }
}

@media screen and (max-width: 360px) {
    .main p#copy1 img {
        width: 70%;
    }
    .main h2#copy2 img {
        position: absolute;
        display: block;
        width: 180px;
        top: 97px;
        left: 15px;
        z-index: 3;
        -webkit-animation: copy2 3s 1 ease;
        -moz-animation: copy2 3s 1 ease;
        animation: copy2 3s 1 ease;
    }
    .main a#contactBtn {
        display: none;
    }
}

/* !global-nav-pc
---------------------------------------------------------- */
#global-nav-pc {
    width: 100%;
    height: 60px;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}
#global-nav-pc ul {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
}
#global-nav-pc ul li {
    /* width: 16%;
    float: left; */
    text-align: center;
    margin: auto;
}
#global-nav-pc ul li.pc_only {
    margin: 0;
}
#global-nav-pc ul li a {
    display: block;
    width: 100%;
    height: 60px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: #222;
    line-height: 60px;
    letter-spacing: 0.08em;
    transition: 0.6s;
}
#global-nav-pc ul li a:hover {
    color: #ed6d0f;
}
#global-nav-pc ul li a.current {
    color: #ed6d0f;
}
#global-nav-pc .search {
    height: 60px;
}

@media screen and (max-width: 1039px) {
    #global-nav-pc {
        height: 54px;
    }
    #global-nav-pc ul li a {
        height: 54px;
        font-size: 14px;
        line-height: 54px;
    }
    #global-nav-pc ul li a:hover {
        color: #222;
    }
    #global-nav-pc .search {
        height: 54px;
    }
}

@media screen and (max-width: 767px) {
    #global-nav-pc {
        display: none;
    }
}

/* !contents
---------------------------------------------------------- */
#contents {
    width: 100%;
    max-width: 1440px;
    margin: auto;
}
#contents.topics_contents {
    padding: 0 40px;
}
#contents.news_contents {
    padding: 0 40px;
}
.w900 {
    width: 100%;
    padding: 0 50px;
}
.w900 div.inner {
    max-width: 900px;
    margin: 0 auto;
}

.w1000 {
    width: 100%;
    padding: 0 50px;
}
.w1000 div.inner {
    max-width: 1000px;
    margin: 0 auto;
}

.linkInPage {
    margin-top: -60px;
    padding-top: 60px;
}
@media screen and (max-width: 1039px) {
    .w900 {
        padding: 0 30px;
    }

    .w1000 {
        padding: 0 30px;
    }
}

@media screen and (max-width: 767px) {
    .w900 {
        padding: 0 25px;
    }

    .w1000 {
        padding: 0 25px;
    }
    #contents.topics_contents {
        padding: 0 20px;
    }
    #contents.news_contents {
        padding: 0 20px;
    }
}

/* !アニメーション
---------------------------------------------------------- */
.fadeIn_up {
    opacity: 0;
    transform: translate(0, 100px);
    transition: 1.6s 0.4s;
}
.fadeIn_up.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

.fadeIn_left {
    opacity: 0;
    transform: translate(-100px, 0);
    transition: 1.6s 0.1s;
}
.fadeIn_left.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

/* !top代表挨拶
---------------------------------------------------------- */
.topGreeting {
    width: 100%;
    position: relative;
    margin-bottom: 100px;
    display: flex;
}
.topGreeting div.bg {
    position: absolute;
    width: 100%;
    height: 400px;
    background: #f0f0ec;
    z-index: 1;
}
.topGreeting div.bg div {
    width: 100%;
    max-width: 640px;
    height: 400px;
    background: #f8f8f5;
    margin: 0 auto;
}
.topGreeting div.box {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: #fff;
    border: 1px solid #f0f0ec;
    padding: 60px;
    z-index: 2;
    margin: 0 auto 0 auto;
    top: 60px;
    margin-bottom: 60px;
}
.topGreeting div.box h2 {
    font-size: 38px;
    font-weight: bold;
    color: #ed6d0f;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
}
.topGreeting div.box p {
    margin-bottom: 50px;
    padding: 0 50px;
}
.topGreeting div.box a.btn {
    display: block;
    position: relative;
    width: 220px;
    height: 60px;
    background: #ed6d0f;
    border: 2px solid #ed6d0f;
    font-family: "Lato", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
    color: #fff;
    letter-spacing: 0.08em;
    transition: 0.6s;
    z-index: 1;
    margin: 0 auto;
}
.topGreeting div.box a.btn span {
    position: relative;
    z-index: 2;
    transition: 0.3s;
}
.topGreeting div.box a.btn:hover span {
    color: #ed6d0f;
}
.topGreeting div.box a.btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 56px;
    background: #fff;
    content: "";
    opacity: 1;
    -webkit-transition:
        width 0.35s,
        opacity 0.35s,
        -webkit-transform 0.35s;
    -moz-transition:
        width 0.35s,
        opacity 0.35s,
        -moz-transform 0.35s;
    transition:
        width 0.35s,
        opacity 0.35s,
        transform 0.35s;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    z-index: 0;
}
.topGreeting div.box a.btn:hover::after {
    height: 56px;
    width: 100%;
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}

@media screen and (max-width: 1039px) {
    .topGreeting {
        margin-bottom: 80px;
    }
    .topGreeting div.bg {
        height: 340px;
    }
    .topGreeting div.bg div {
        max-width: 500px;
        height: 340px;
    }
    .topGreeting div.box {
        max-width: 680px;
        padding: 50px;
        top: 50px;
        margin-bottom: 50px;
    }
    .topGreeting div.box h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }
    .topGreeting div.box p {
        margin-bottom: 40px;
        padding-left: 70px;
        padding-right: 70px;
    }
    .topGreeting div.box a.btn {
        width: 200px;
        height: 56px;
        font-size: 16px;
        line-height: 52px;
    }
    .topGreeting div.box a.btn:hover span {
        color: #fff;
    }
    .topGreeting div.box a.btn::after {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .topGreeting {
        margin-bottom: 60px;
    }
    .topGreeting div.bg {
        height: 350px;
    }
    .topGreeting div.bg div {
        max-width: 200px;
        height: 350px;
    }
    .topGreeting div.box {
        width: auto;
        max-width: 80%;
        background: #fff;
        padding: 35px 20px 40px 20px;
        margin: 0 auto;
        top: 50px;
        margin-bottom: 50px;
    }
    .topGreeting div.box h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .topGreeting div.box p {
        text-align: left;
        margin-bottom: 40px;
        padding: 0;
    }
    .topGreeting div.box a.btn {
        width: 180px;
        height: 50px;
        font-size: 16px;
        line-height: 46px;
    }
}

/* !topメンバー
---------------------------------------------------------- */
.topMember {
    width: 100%;
    position: relative;
    margin-bottom: 70px;
}
.topMember div.bg {
    position: absolute;
    width: 75%;
    height: 260px;
    background: url(img/top_member_bg.jpg) 50% 50% no-repeat;
    background-size: cover;
    z-index: 1;
}
.topMember div.bg h2 {
    position: absolute;
    font-family: "Lato", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    top: 50px;
    left: 6%;
}
.topMember div.bg a.btn {
    position: absolute;
    display: block;
    text-align: right;
    top: 62px;
    right: 6%;
}
.topMember div.bg a.btn span {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    transition: 0.6s;
}
.topMember div.bg a.btn span.line {
    position: relative;
    display: inline-block;
    padding: 0 0em 0.2em 0em;
}
.topMember div.bg a.btn span.line:before {
    position: absolute;
    content: "";
    width: 84px;
    height: 1px;
    background: #fff;
    bottom: 0;
    left: 0;
}
.topMember div.bg a.btn:hover span.line:before {
    -webkit-animation: btnAmt 0.6s 1 ease-in-out;
    -moz-animation: btnAmt 0.6s 1 ease-in-out;
    animation: btnAmt 0.6s 1 ease-in-out;
}
@keyframes btnAmt {
    0% {
        width: 84px;
    }
    50% {
        width: 0;
        left: 84px;
    }
    51% {
        width: 0;
        left: 0;
    }
    100% {
        width: 84px;
        right: 84px;
    }
}
.topMember div.inner {
    position: relative;
    width: 100%;
    padding: 0 50px;
    z-index: 2;
    top: 160px;
    margin-bottom: 160px;
}
.topMember div.inner ul.topMemberList {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.topMember div.inner ul.topMemberList li {
    width: 30%;
    float: left;
    margin-right: 5%;
    margin-bottom: 30px;
}
.topMember div.inner ul.topMemberList li:nth-child(3n) {
    margin-right: 0;
}
.topMember div.inner ul.topMemberList li a {
    display: block;
    width: 100%;
    position: relative;
}
.topMember div.inner ul.topMemberList li a img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
    transition: 0.6s;
}
.topMember div.inner ul.topMemberList li a:hover img {
    filter: brightness(0.8);
}
.topMember div.inner ul.topMemberList li a p.degree {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    padding: 0.6em 0.8em;
    background: #ee8a11;
    z-index: 2;
    top: -20px;
    left: -10px;
    transition: 0.6s;
}
.topMember div.inner ul.topMemberList li a:hover p.degree {
    background: #ed6d0f;
}
.topMember div.inner ul.topMemberList li a p.name {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: 0.6s;
}
.topMember div.inner ul.topMemberList li a:hover p.name {
    color: #ed6d0f;
}

@media screen and (max-width: 1039px) {
    .topMember {
        margin-bottom: 50px;
    }
    .topMember div.bg {
        height: 220px;
        background: url(img/top_member_bg.jpg) 50% 50% no-repeat;
        background-size: cover;
    }
    .topMember div.bg h2 {
        font-size: 36px;
        top: 35px;
    }
    .topMember div.bg a.btn {
        top: 52px;
    }
    .topMember div.bg a.btn span {
        font-size: 18px;
    }
    .topMember div.bg a.btn span.line:before {
        width: 76px;
    }
    .topMember div.bg a.btn:hover span.line:before {
        -webkit-animation: none;
        -moz-animation: none;
        animation: none;
    }
    .topMember div.inner {
        padding: 0 30px;
        top: 135px;
        margin-bottom: 135px;
    }
    .topMember div.inner ul.topMemberList li a:hover img {
        filter: none;
    }
    .topMember div.inner ul.topMemberList li a p.degree {
        font-size: 13px;
    }
    .topMember div.inner ul.topMemberList li a:hover p.degree {
        background: #ee8a11;
    }
    .topMember div.inner ul.topMemberList li a p.name {
        font-size: 16px;
    }
    .topMember div.inner ul.topMemberList li a:hover p.name {
        color: #222;
    }
}

@media screen and (max-width: 767px) {
    .topMember {
        margin-bottom: 30px;
    }
    .topMember div.bg {
        width: 100%;
        height: 150px;
        background: url(img/top_member_bg.jpg) 50% 50% no-repeat;
        background-size: cover;
    }
    .topMember div.bg h2 {
        font-size: 28px;
        top: 25px;
        left: 6%;
    }
    .topMember div.bg a.btn {
        top: 34px;
        right: 6%;
    }
    .topMember div.bg a.btn span {
        font-size: 16px;
    }
    .topMember div.bg a.btn span.line:before {
        width: 70px;
    }
    .topMember div.inner {
        width: 100%;
        padding: 0 25px;
        top: 100px;
        margin-bottom: 100px;
    }
    .topMember div.inner ul.topMemberList {
        max-width: 480px;
    }
    .topMember div.inner ul.topMemberList li {
        width: 46%;
        margin-right: 8%;
        margin-bottom: 30px;
    }
    .topMember div.inner ul.topMemberList li:nth-child(3n) {
        margin-right: 8%;
    }
    .topMember div.inner ul.topMemberList li:nth-child(even) {
        margin-right: 0;
    }
    .topMember div.inner ul.topMemberList li a p.degree {
        font-size: 11px;
        top: -15px;
    }
    .topMember div.inner ul.topMemberList li a p.name {
        font-size: 14px;
    }
}

/* !topサービス
---------------------------------------------------------- */

.topService {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    margin-bottom: 100px;
    z-index: 1;
}
.topService div.bg {
    position: absolute;
    width: 100%;
    height: 90%;
    background: #f0f0ec;
    z-index: 1;
    background: url(img/service_bg.png) 0 0 repeat;
    background-size: 20px 19px;
}
.topService div.box {
    padding: 0 30px;
}
.topService div.tit {
    padding: 0 20px;
    width: 100%;
    position: relative;
    margin: 40px 0 0;
    z-index: 1;
}
.topService div.tit h2 {
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.6;
    letter-spacing: 0.08em;
    display: inline-block;
}
.topService div.tit a.btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topService div.tit a.btn span {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ed6d0f;
    letter-spacing: 0.08em;
    transition: 0.6s;
}
.topService div.tit a.btn span.line {
    width: 18px;
    height: 18px;
    margin: 0 10px;
    border-top: 4px solid #ed6d0f;
    border-right: 4px solid #ed6d0f;
    transform: rotate(45deg);
}
.topService .clumn {
    display: flex;
    justify-content: space-around;
}
.topService .clumn-two div {
    width: 50%;
}
.topService .clumn-three div {
    width: calc(100% / 3);
}
.topService div.detail {
    display: flex;
    z-index: 1;
}
.topService div.detail div.inner {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #f0f0ec;
    margin: 20px;
    z-index: 1;
}
.topService div.detail div.inner h3 {
    display: flex;
    justify-content: center;
    flex-grow: 0;
    border-top: 3px solid #ca0e25;
    padding-top: 1.5em;
    color: #ca0e25;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.topService div.detail div.inner p.read {
    display: flex;
    flex-grow: 1;
    font-size: 15px;
    padding: 1.5em;
}
@media screen and (max-width: 1039px) {
    .topService {
        margin-bottom: 50px;
    }
    .topService div.box {
        padding: 0;
    }
    .topService div.box {
        max-width: 85%;
    }
    .topService div.tit {
        padding: 50px 0 20px;
    }
    .topService div.tit h2 {
        font-size: 32px;
    }
    .topService div.tit a.btn {
        top: 3px;
        right: 30px;
    }
    .topService div.tit a.btn span {
        font-size: 18px;
    }
    .topService div.tit a.btn span.line:before {
        width: 76px;
    }
    .topService div.tit a.btn:hover span.line:before {
        -webkit-animation: none;
        -moz-animation: none;
        animation: none;
    }
    .topService div.detail {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    .topService div.detail div.inner {
        flex-direction: column;
        width: 100%;
        margin: 1em 0;
    }
    .topService div.detail div.inner h3 {
        font-size: 18px;
        margin-bottom: 22px;
    }
    .topService div.detail div.inner p.read {
        font-size: 14px;
        padding: 0 50px;
        line-height: 2;
    }
}

@media screen and (max-width: 767px) {
    .topService {
        margin-bottom: 0;
    }
    .topService div.box {
        max-width: 80%;
    }
    .topService div.tit h2 {
        font-size: 24px;
    }
    .topService div.detail div.inner h3 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .topService div.detail div.inner p.read {
        padding: 0 20px;
    }
}

/* !topコラム
---------------------------------------------------------- */
.topArticle {
    width: 100%;
    display: flex;
    position: relative;
}
.topArticle div.column {
    width: 62%;
    float: left;
    border-right: 1px solid #e6e6e6;
    position: relative;
}
.topArticle div.column.main_column {
    width: 100%;
}
.topArticle div.column.main_column div.tit {
    border-bottom: 1px solid #e6e6e6;
}
.topArticle div.column div.tit {
    padding: 40px 50px;
    /* position: relative; */
    border-bottom: 1px solid #e6e6e6;
    border-bottom: none;
}

.topArticle div.column div.tit h2 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1em;
    display: inline-block;
}
.topArticle div.column div.tit a.btn {
    /* position: absolute;
	display: block;
	text-align: right;
	top: 70px;
	right: 50px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topArticle div.column div.tit a.btn span {
    /* font-family: "Lato", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #ed6d0f;
	letter-spacing: 0.08em;
	transition: 0.6s; */
    width: 18px;
    height: 18px;
    margin: 0 10px;
    border-top: 4px solid #ed6d0f;
    border-right: 4px solid #ed6d0f;
    transform: rotate(45deg);
}
.topArticle div.column div.tit a.btn span.line {
    position: relative;
    display: inline-block;
    padding: 0 0em 0.2em 0em;
}
/* .topArticle div.column div.tit a.btn span.line:before {
	position: absolute;
	content: "";
	width: 84px;
	height: 1px;
	background: #ed6d0f;
	bottom: 0;
	left: 0;
} */
/* .topArticle div.column div.tit a.btn:hover span.line:before {
	-webkit-animation: btnAmt 0.6s 1 ease-in-out;
	-moz-animation: btnAmt 0.6s 1 ease-in-out;
	animation: btnAmt 0.6s 1 ease-in-out;
} */
.topArticle div.column div.inner {
    padding: 50px 50px 100px 50px;
    /* position: relative; */
}
.topArticle div.column div.inner ul.topColumnList {
    width: 100%;
}
.topArticle div.column div.inner ul.topColumnList li {
    width: 46%;
    float: left;
    margin-right: 8%;
    margin-bottom: 40px;
}
.topArticle div.column div.inner ul.topColumnList li:nth-child(even) {
    margin-right: 0;
}
.topArticle div.column div.inner ul.topColumnList li:last-child {
    margin-bottom: 0;
}
.topArticle div.column div.inner ul.topColumnList li:nth-last-child(2) {
    margin-bottom: 0;
}
.topArticle div.column div.inner ul.topColumnList li a {
    display: block;
    width: 100%;
}
.topArticle div.column div.inner ul.topColumnList li a img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    transition: 0.6s;
}
.topArticle div.column div.inner ul.topColumnList li a:hover img {
    opacity: 0.7;
}
.topArticle div.column div.inner ul.topColumnList li a div {
    width: 100%;
    margin-bottom: 20px;
}
.topArticle div.column div.inner ul.topColumnList li a div p.date {
    font-size: 14px;
    color: #666;
    float: left;
}
.topArticle div.column div.inner ul.topColumnList li a div p.cat {
    display: inline-block;
    float: right;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    padding: 0.4em 0.6em;
    background: #ee8a11;
}
.topArticle div.column div.inner ul.topColumnList li a h3 {
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: 0.6s;
}
.topArticle div.column div.inner ul.topColumnList li a:hover h3 {
    color: #ed6d0f;
}
.topArticle div.column div.inner ul.topColumnList li a p.spt {
    font-size: 14px;
    transition: 0.6s;
}
.topArticle div.column div.inner ul.topColumnList li a:hover p.spt {
    color: #ed6d0f;
}

.topArticle div.news {
    width: 38%;
    float: left;
}
.topArticle div.news div.tit {
    padding: 40px 50px 0 50px;
    border-bottom: 1px solid #e6e6e6;
    border-bottom: none;
}
.topArticle div.news div.tit h2 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
}
.topArticle div.news div.tit a.btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topArticle div.news div.tit a.btn span {
    width: 18px;
    height: 18px;
    margin: 0 10px;
    border-top: 4px solid #ed6d0f;
    border-right: 4px solid #ed6d0f;
    transform: rotate(45deg);
}
.topArticle div.news div.tit a.btn span.line {
    position: relative;
    display: inline-block;
    padding: 0 0em 0.2em 0em;
}
/* .topArticle div.news div.tit a.btn span.line:before {
	position: absolute;
	content: "";
	width: 84px;
	height: 1px;
	background: #ed6d0f;
	bottom: 0;
	left: 0;
}
.topArticle div.news div.tit a.btn:hover span.line:before {
	-webkit-animation: btnAmt 0.6s 1 ease-in-out;
	-moz-animation: btnAmt 0.6s 1 ease-in-out;
	animation: btnAmt 0.6s 1 ease-in-out;
} */
.topArticle div.news div.inner {
    padding: 50px 50px 50px 50px;
    position: relative;
}
.topArticle div.news div.inner ul.newsList {
    width: 100%;
}
.topArticle div.news div.inner ul.newsList li {
    width: 100%;
    margin-bottom: 50px;
}
.topArticle div.news div.inner ul.newsList li:last-child {
    margin-bottom: 0;
}
.topArticle div.news div.inner ul.newsList li a {
    display: block;
    width: 100%;
}
.topArticle div.news div.inner ul.newsList li a div {
    width: 100%;
    margin-bottom: 20px;
}
.topArticle div.news div.inner ul.newsList li a div p.date {
    font-size: 14px;
    color: #666;
    float: left;
}
.topArticle div.news div.inner ul.newsList li a div p.cat {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    padding: 0.4em 0.6em;
    background: #ee8a11;
    min-width: 9em;
    text-align: center;
    float: right;
}
.topArticle div.news div.inner ul.newsList li a h3 {
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 15px;
    transition: 0.6s;
}
.topArticle div.news div.inner ul.newsList li a:hover h3 {
    color: #ca0e25;
}
.topArticle div.news .more,
.topArticle div.column .more,
.topService div.clumn .more {
    text-align: right;
    margin: 20px 0;
    padding-right: 20px;
    position: absolute;
    display: inline-block;
    color: #ed6d0f;
    bottom: 0;
    right: 30px;
}
.topService div.clumn .more {
    position: relative;
    right: 2em;
    margin: 0;
    padding-bottom: 1.5em;
}
.topArticle div.news .more::after,
.topArticle div.column .more::after,
.topService div.clumn .more::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #ed6d0f;
    border-right: solid 2px #ed6d0f;
    position: absolute;
    right: 0;
    top: 8px;
    transform: rotate(45deg);
}
@media screen and (max-width: 1039px) {
    .topArticle {
        width: 100%;
        display: block;
    }
    .topArticle div.column {
        width: 100%;
        float: none;
        border-right: none;
        border-bottom: 1px solid #e6e6e6;
    }
    .topArticle div.column div.tit {
        padding: 50px 30px;
    }
    .topArticle div.column div.tit h2 {
        font-size: 24px;
    }
    .topArticle div.column div.tit a.btn span {
        font-size: 18px;
    }
    .topArticle div.column div.tit a.btn span.line:before {
        width: 76px;
    }
    .topArticle div.column div.tit a.btn:hover span.line:before {
        -webkit-animation: none;
        -moz-animation: none;
        animation: none;
    }
    .topArticle div.column div.inner {
        padding: 40px 30px 80px 30px;
        position: relative;
    }
    .topArticle div.column div.inner ul.topColumnList {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
    .topArticle div.column div.inner ul.topColumnList li a:hover img {
        opacity: 1;
    }
    .topArticle div.column div.inner ul.topColumnList li a:hover h3 {
        color: #222;
    }
    .topArticle div.column div.inner ul.topColumnList li a:hover p.spt {
        color: #222;
    }

    .topArticle div.news {
        width: 100%;
        float: none;
    }
    .topArticle div.news div.tit {
        padding: 30px 30px 30px 30px;
    }
    .topArticle div.news div.tit h2 {
        font-size: 36px;
    }
    .topArticle div.news div.tit a.btn {
        top: 30px;
        right: 30px;
    }
    .topArticle div.news div.tit a.btn span {
        font-size: 18px;
    }
    .topArticle div.news div.tit a.btn span.line:before {
        width: 76px;
    }
    .topArticle div.news div.tit a.btn:hover span.line:before {
        -webkit-animation: none;
        -moz-animation: none;
        animation: none;
    }
    .topArticle div.news div.inner {
        padding: 30px 30px 80px 30px;
    }
    .topArticle div.news div.inner ul.newsList li {
        margin-bottom: 40px;
    }
    .topArticle div.column div.inner ul.topColumnList li:nth-last-child(2) {
        margin-bottom: 40px;
    }
    .topArticle div.news div.inner ul.newsList li a div {
        margin-bottom: 10px;
    }
    .topArticle div.news div.inner ul.newsList li a div p.date {
        margin-right: 30px;
    }
    .topArticle div.news div.inner ul.newsList li a div p.cat {
        float: left;
    }
    .topArticle div.news div.inner ul.newsList li a:hover h3 {
        color: #222;
    }
}

@media screen and (max-width: 767px) {
    .topArticle {
        width: 100%;
    }
    .topArticle div.column div.tit {
        padding: 50px 25px;
    }
    .topArticle div.column div.tit h2 {
        font-size: 18px;
    }
    .topArticle div.column div.tit a.btn {
        top: 47px;
        right: 25px;
    }
    .topArticle div.column div.tit a.btn span {
        font-size: 16px;
    }
    .topArticle div.column div.tit a.btn span.line:before {
        width: 70px;
    }
    .topArticle div.column div.inner {
        padding: 35px 25px 60px 25px;
        position: relative;
    }
    .topArticle div.column div.inner ul.topColumnList {
        max-width: 540px;
    }
    .topArticle div.column div.inner ul.topColumnList li {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 40px;
    }
    .topArticle div.column div.inner ul.topColumnList li a div {
        margin-bottom: 15px;
    }

    .topArticle div.news {
        width: 100%;
        float: none;
    }
    .topArticle div.news div.tit {
        padding: 30px 25px 20px 25px;
    }
    .topArticle div.news div.tit h2 {
        font-size: 28px;
    }
    .topArticle div.news div.tit a.btn {
        top: 27px;
        right: 25px;
    }
    .topArticle div.news div.tit a.btn span {
        font-size: 16px;
    }
    .topArticle div.news div.tit a.btn span.line:before {
        width: 70px;
    }
    .topArticle div.news div.inner {
        padding: 30px 25px 60px 25px;
    }
}

/* !代表挨拶
---------------------------------------------------------- */
.greetingIntro {
    width: 100%;
    padding: 90px 50px 0 50px;
    margin-bottom: 100px;
    position: relative;
}
.greetingIntro div.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.greetingIntro div.inner img.photo {
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 80px auto;
}
.greetingIntro div.inner p.sign {
    text-align: right;
    color: #666;
}
.greetingIntro div.inner p.sign span {
    font-size: 20px;
    font-weight: bold;
    color: #222;
}
.greetingIntro div.inner section {
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #eeeeed;
}

.greetingCareer {
    width: 100%;
    background: url(img/service_bg.png) 0 0 repeat;
    background-size: 20px 19px;
    padding: 90px 50px 100px 50px;
}
.greetingCareer div.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.greetingCareer div.inner h2 {
    display: block;
    width: 30%;
    float: left;
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
}
.greetingCareer div.inner h2 span {
    position: relative;
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-left: 1.6em;
    vertical-align: middle;
    top: -4px;
}
.greetingCareer div.inner div.right {
    width: 70%;
    float: right;
}

.greetingBook {
    width: 100%;
    background: url(img/service_bg.png) 0 0 repeat;
    background-size: 20px 19px;
    padding: 90px 50px 100px 50px;
}
.greetingBook div.inner h2 {
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
    margin-bottom: 40px;
}
.greetingBook div.inner h2 span {
    position: relative;
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-left: 1.6em;
    vertical-align: middle;
    top: -4px;
}
.greetingBook div.inner div.detail {
    width: 100%;
    padding: 30px 40px 40px 40px;
    background: #fff;
    border: 5px solid #fbe0cc;
}
.greetingBook div.inner div.detail div.left {
    width: 200px;
    float: left;
}
.greetingBook div.inner div.detail div.left img {
    display: block;
    width: 130px;
}
.greetingBook div.inner div.detail div.right {
    width: auto;
    margin-left: 200px;
}
.greetingBook div.inner div.detail div.right h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 20px;
}
.greetingBook div.inner div.detail div.right h3 span {
    font-size: 16px;
    font-weight: 500;
}
.greetingBook div.inner ul.dissertation {
    width: 100%;
}
.greetingBook div.inner ul.dissertation li {
    font-weight: bold;
    line-height: 1.8;
    padding: 1em 0.8em 1em 2.6em;
    background: #fff;
    border-bottom: 1px solid #f9d79d;
    position: relative;
}
.greetingBook div.inner ul.dissertation li:first-child {
    border-top: 1px solid #f9d79d;
}
.greetingBook div.inner ul.dissertation li span {
    font-weight: 500;
}
.greetingBook div.inner ul.dissertation li:before {
    position: absolute;
    display: block;
    content: "";
    width: 17px;
    height: 17px;
    background: url(img/list_icon01.png) 0 0 no-repeat;
    background-size: 17px 17px;
    top: 22px;
    left: 15px;
}

@media screen and (max-width: 1039px) {
    .greetingIntro {
        padding: 80px 30px 0 30px;
        margin-bottom: 90px;
    }
    .greetingIntro div.inner img.photo {
        width: 90%;
        margin: 0 auto 70px auto;
    }
    .greetingIntro div.inner p.sign span {
        font-size: 18px;
    }
    .greetingIntro div.inner section {
        padding-bottom: 50px;
        margin-bottom: 50px;
    }

    .greetingCareer {
        padding: 80px 30px 90px 30px;
    }
    .greetingCareer div.inner h2 {
        display: block;
        width: 30%;
        float: left;
        font-size: 26px;
    }
    .greetingCareer div.inner h2 span {
        font-size: 16px;
        top: -3px;
    }
    .greetingCareer div.inner div.right {
        width: 70%;
        float: right;
    }

    .greetingBook {
        padding: 80px 30px 90px 30px;
    }
    .greetingBook div.inner h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .greetingBook div.inner h2 span {
        font-size: 16px;
        top: -3px;
    }
    .greetingBook div.inner div.detail {
        padding: 30px 35px 35px 35px;
        border: 4px solid #fbe0cc;
    }
    .greetingBook div.inner div.detail div.left {
        width: 180px;
    }
    .greetingBook div.inner div.detail div.left img {
        width: 120px;
    }
    .greetingBook div.inner div.detail div.right {
        margin-left: 180px;
    }
    .greetingBook div.inner div.detail div.right h3 {
        font-size: 18px;
    }
    .greetingBook div.inner div.detail div.right h3 span {
        font-size: 15px;
    }
    .greetingBook div.inner ul.dissertation li:before {
        top: 20px;
        left: 15px;
    }
}

@media screen and (max-width: 767px) {
    .greetingIntro {
        padding: 70px 25px 0 25px;
        margin-bottom: 80px;
    }
    .greetingIntro div.inner img.photo {
        max-width: 540px;
        margin: 0 auto 60px auto;
    }
    .greetingIntro div.inner div.left p.sign span {
        font-size: 17px;
    }

    .greetingCareer {
        padding: 70px 25px 70px 25px;
    }
    .greetingCareer div.inner h2 {
        width: 100%;
        float: none;
        font-size: 22px;
        margin-bottom: 30px;
    }
    .greetingCareer div.inner h2 span {
        font-size: 14px;
    }
    .greetingCareer div.inner div.right {
        width: 100%;
        float: none;
    }

    .greetingBook {
        padding: 70px 25px 70px 25px;
    }
    .greetingBook div.inner h2 {
        font-size: 22px;
    }
    .greetingBook div.inner h2 span {
        font-size: 14px;
    }
    .greetingBook div.inner div.detail {
        padding: 30px 20px 25px 20px;
    }
    .greetingBook div.inner div.detail div.left {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
    .greetingBook div.inner div.detail div.left img {
        width: 110px;
        margin: 0 auto;
    }
    .greetingBook div.inner div.detail div.right {
        width: 100%;
        margin-left: 0;
    }
    .greetingBook div.inner div.detail div.right h3 {
        font-size: 16px;
    }
    .greetingBook div.inner div.detail div.right h3 span {
        font-size: 14px;
    }
    .greetingBook div.inner ul.dissertation li {
        padding: 1em 0.8em 1em 2.4em;
    }
    .greetingBook div.inner ul.dissertation li:before {
        top: 18px;
        left: 10px;
    }
}

/* !事業内容
---------------------------------------------------------- */

.serviceIntroAnchor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto 80px;
    max-width: 1000px;
}
.company .serviceIntroAnchor {
    margin: 20px auto 0;
}

.serviceIntroAnchor a:hover {
    text-decoration: none !important;
}
.serviceIntroAnchor .ico_img {
    display: flex;
    height: 40px;
}
.serviceIntroAnchor .ico_img.seisaku {
    height: 18px;
}
.serviceIntroAnchor .sub_txt {
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
}
.serviceIntroAnchor .ico_img.auction {
    flex-direction: column;
    align-items: center;
    height: 32px;
}
.serviceIntroAnchor .ico_img.auction_ttl {
    height: 22px;
}
.serviceIntroAnchor .ttl_txt {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    text-align: center;
    font-size: 1.1em;
    line-height: 1;
    font-weight: bold;
    color: #ed6d0f;
    padding: 0.4em;
    margin: 0.3em;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
}
.company .serviceIntroAnchor .ttl_txt {
    height: 5em;
}
.serviceIntroAnchor .ttl_txt:hover {
    box-shadow: 0 0 1px 2px #ed6d0f55;
    text-decoration: none;
}

.serviceIntro {
    padding-top: 90px;
    padding-bottom: 100px;
}

.serviceConsul,
.serviceKsiAuc,
.serviceDx,
.serviceSeisaku,
.serviceThink {
    width: 100%;
    margin-bottom: 120px;
    position: relative;
}
.serviceConsul div.tit,
.serviceKsiAuc div.tit,
.serviceDx div.tit,
.serviceSeisaku div.tit,
.serviceThink div.tit {
    position: relative;
    width: auto;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.serviceConsul div.tit div.photo,
.serviceKsiAuc div.tit div.photo,
.serviceDx div.tit div.photo,
.serviceSeisaku div.tit div.photo,
.serviceThink div.tit div.photo {
    width: 55%;
    height: 350px;
    object-fit: cover;
}
.serviceConsul div.tit div.photo {
    /* background: url(img/consulting_img.jpg) 50% 50% no-repeat; */
    float: left;
}
.serviceKsiAuc div.tit div.photo {
    /* background: url(img/ksi_auction.png) 50% 50% no-repeat; */
    float: right;
}
.serviceDx div.tit div.photo {
    /* background: url(img/investigation.png) 50% 50% no-repeat; */
    float: left;
}
.serviceSeisaku div.tit div.photo {
    /* background: url(img/seisaku.png) 50% 50% no-repeat; */
    float: right;
}
.serviceThink div.tit div.photo {
    /* background: url(img/think.png) 50% 50% no-repeat; */
    float: left;
}

.serviceConsul div.tit div.right,
.serviceDx div.tit div.right,
.serviceThink div.tit div.right {
    width: 45%;
    float: right;
}
.serviceKsiAuc div.tit div.right,
.serviceSeisaku div.tit div.right {
    width: 45%;
    float: left;
}

.serviceConsul div.tit div.right h2,
.serviceDx div.tit div.right h2,
.serviceSeisaku div.tit div.right h2,
.serviceThink div.tit div.right h2,
.serviceKsiAuc div.tit div.right h2 {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.6;
    padding-top: 50px;
}
.serviceConsul div.tit div.right h2 span,
.serviceDx div.tit div.right h2 span,
.serviceSeisaku div.tit div.right h2 span,
.serviceThink div.tit div.right h2 span,
.serviceKsiAuc div.tit div.right h2 span {
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.serviceConsul div.tit div.right h2 img,
.serviceDx div.tit div.right h2 img,
.serviceSeisaku div.tit div.right h2 img,
.serviceThink div.tit div.right h2 img,
.serviceKsiAuc div.tit div.right h2 img {
    display: block;
    width: 50px;
    margin: 0 auto 10px auto;
}
.serviceKsiAuc div.tit div.right h2 img.ico_img {
    text-align: center;
    margin: auto;
}
.serviceSeisaku div.tit div.right h2 img {
    width: 220px;
    margin: 30px auto;
}

.serviceConsul div.detail,
.serviceDx div.detail,
.serviceSeisaku div.detail,
.serviceThink div.detail,
.serviceKsiAuc div.detail {
    width: 100%;
    background: url(img/service_bg.png) 0 0 repeat;
    background-size: 20px 19px;
    padding: 170px 50px 80px 50px;
    position: relative;
    top: -100px;
    margin-bottom: -100px;
    z-index: 1;
}
.serviceConsul div.detail div.inner,
.serviceDx div.detail div.inner,
.serviceSeisaku div.detail div.inner,
.serviceThink div.detail div.inner,
.serviceKsiAuc div.detail div.inner {
    position: relative;
    width: auto;
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.serviceConsul div.detail div.inner div.left {
    width: 47%;
    float: left;
}
.serviceConsul .contact,
.serviceKsiAuc .connect,
.serviceSeisaku .connect {
    width: 290px;
    margin: auto;
    text-align: center;
    margin: 80px auto;
}
.serviceConsul .contactBtn,
.serviceKsiAuc .connectBtn,
.serviceSeisaku .connectBtn {
    position: relative;
    display: block;
    height: 60px;
    background: #ed6d0f;
    border-radius: 4px;
    margin: 0 auto;
}
.serviceConsul .contactBtn:hover,
.serviceKsiAuc .connectBtn:hover,
.serviceSeisaku .connectBtn:hover {
    text-decoration: none !important;
}
.serviceConsul .contactBtn p,
.serviceKsiAuc .connectBtn p,
.serviceSeisaku .connectBtn p {
    position: relative;
    z-index: 2;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 60px;
    padding: 0 34px;
}
.serviceConsul .contactBtn::before,
.serviceSeisaku div.detail .contactBtn::before {
    position: absolute;
    display: block;
    content: "";
    width: 22px;
    height: 17px;
    top: 21px;
    right: 30px;
    background: url(img/icon_main.png) 0 0 no-repeat;
    background-size: 22px 17px;
    z-index: 2;
}
.serviceConsul .contactBtn::after,
.serviceKsiAuc .connectBtn::after,
.serviceSeisaku .connectBtn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 60px;
    background: #ec9a11;
    content: "";
    opacity: 1;
    border-radius: 4px;
    -webkit-transition:
        width 0.42s,
        opacity 0.42s,
        -webkit-transform 0.42s;
    -moz-transition:
        width 0.42s,
        opacity 0.42s,
        -moz-transform 0.42s;
    transition:
        width 0.42s,
        opacity 0.42s,
        transform 0.42s;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    z-index: 1;
}
.serviceConsul .contactBtn:hover::after,
.serviceKsiAuc .connectBtn:hover::after,
.serviceSeisaku .connectBtn:hover::after {
    height: 60px;
    width: 100%;
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}

.serviceConsul div.detail div.inner div.right {
    width: 47%;
    float: right;
}
.serviceConsul div.detail div.inner div.right ul li {
    position: relative;
    font-weight: bold;
    color: #858569;
    line-height: 1.6;
    padding-left: 2em;
    margin-bottom: 30px;
}
.serviceConsul div.detail div.inner div.right ul li:last-child {
    margin-bottom: 0;
}
.serviceConsul div.detail div.inner div.right ul li:before {
    position: absolute;
    display: block;
    content: "";
    width: 17px;
    height: 17px;
    background: url(img/list_icon01.png) 0 0 no-repeat;
    background-size: 17px 17px;
    top: 4px;
    left: 0;
}
.serviceConsul div.detail div.inner div.right ul li ul {
    margin-top: 15px;
}
.serviceConsul div.detail div.inner div.right ul li ul li {
    font-size: 14px;
    padding-left: 0;
    margin-bottom: 15px;
}
.serviceConsul div.detail div.inner div.right ul li ul li:before {
    display: none;
}
.serviceConsul div.detail h3,
.serviceThink div.detail h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 50px;
}
.serviceConsul div.detail ul.menu {
    width: auto;
    max-width: 1000px;
    margin: 0 auto;
}
.serviceConsul div.detail ul.menu li {
    width: 47%;
    float: left;
    padding: 35px;
    background: #fff;
    margin-right: 6%;
    border-top: 3px solid #ca0e25;
    margin-bottom: 50px;
}
.serviceConsul div.detail ul.menu li:nth-child(even) {
    margin-right: 0;
}
.serviceConsul div.detail ul.menu li:nth-last-child(2) {
    margin-bottom: 0;
}
.serviceConsul div.detail ul.menu li:last-child {
    margin-bottom: 0;
}
.serviceConsul div.detail ul.menu li h4 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
    color: #ca0e25;
    text-align: center;
    margin-bottom: 40px;
}
.serviceConsul div.detail ul.menu li h4 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
}
.serviceConsul div.detail ul.menu li ul.sub-menu li {
    width: auto;
    float: none;
    font-size: 15px;
    padding: 0 0 0 1.2em;
    background: none;
    margin-right: 0;
    border-top: 0;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}
.serviceConsul div.detail ul.menu li ul.sub-menu li:last-child {
    margin-bottom: 0;
}
.serviceConsul div.detail ul.menu li ul.sub-menu li:before {
    position: absolute;
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    background: #ca0e25;
    border-radius: 50%;
    top: 10px;
    left: 0;
}
.serviceConsul div.detail ul.menu li p {
    font-size: 15px;
    line-height: 1.8;
}
@media screen and (max-width: 1039px) {
    .serviceIntro {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .serviceConsul {
        margin-bottom: 100px;
    }
    .serviceConsul div.tit div.photo {
        height: 300px;
    }

    .serviceConsul div.tit div.right h2 {
        font-size: 24px;
        padding-top: 40px;
    }
    .serviceConsul div.tit div.right h2 span {
        font-size: 15px;
    }
    .serviceConsul div.tit div.right h2 img {
        width: 40px;
    }
    .serviceConsul div.detail {
        padding: 140px 30px 70px 30px;
        top: -80px;
    }
    .serviceConsul div.detail div.inner,
    .serviceKsiAuc div.detail div.inner,
    .serviceDx div.detail div.inner,
    .serviceSeisaku div.detail div.inner,
    .serviceThink div.detail div.inner {
        margin: 0 auto 60px auto;
    }
    .serviceConsul div.detail div.inner div.right ul li:before {
        top: 3px;
    }
    .serviceConsul div.detail h3,
    .serviceThink div.detail h2 {
        font-size: 20px;
        margin-bottom: 45px;
    }
    .serviceConsul div.detail ul.menu li {
        padding: 25px;
    }
    .serviceConsul div.detail ul.menu li h4 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .serviceConsul div.detail ul.menu li h4 span {
        font-size: 13px;
    }
    .serviceConsul div.detail ul.menu li ul.sub-menu li:before {
        top: 9px;
    }
}

.serviceKsiAuc,
.serviceDx,
.serviceSeisaku,
.serviceThink {
    margin-bottom: 120px;
}
.serviceKsiAuc div.tit div.right h2,
.serviceDx div.tit div.right h2,
.serviceSeisaku div.tit div.right h2,
.serviceThink div.tit div.right h2 {
    font-size: 24px;
    padding-top: 40px;
}
.serviceKsiAuc div.tit div.right h2 span,
.serviceDx div.tit div.right h2 span,
.serviceSeisaku div.tit div.right h2 span,
.serviceThink div.tit div.right h2 span {
    font-size: 15px;
}
.serviceKsiAuc div.tit div.right h2 .auction {
    width: 40px;
    height: auto;
}
.serviceKsiAuc div.tit div.right h2 .auction_ttl {
    width: 200px;
    height: auto;
}
.serviceDx div.tit div.right h2 img,
.serviceThink div.tit div.right h2 img {
    width: 40px;
    height: 40px;
}
.serviceKsiAuc div.detail,
.serviceDx div.detail,
.serviceSeisaku div.detail,
.serviceThink div.detail {
    padding: 140px 30px 1px 30px;
    top: -130px;
}
.serviceKsiAuc div.detail div.inner,
.serviceDx div.detail div.inner,
.serviceSeisaku div.detail div.inner,
.serviceThink div.detail div.inner {
    margin: 0 auto 40px auto;
}

/* 
    .servicePlanning {
        margin-bottom: 90px;
    }
    .servicePlanning div.inner {
        padding: 30px 35px 35px 35px;
        border: 4px solid #f8d1b4;
    }
    .servicePlanning div.inner h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    .servicePlanning div.inner h2 span {
        font-size: 15px;
    }
    .servicePlanning div.inner h2 img {
        width: 40px;
    }
} */

@media screen and (max-width: 767px) {
    .serviceIntroAnchor {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .serviceIntroAnchor .ico_img {
        height: 30px;
    }
    .serviceIntroAnchor .ico_img.auction {
        height: 24px;
    }
    .serviceIntroAnchor .ico_img.auction_ttl {
        height: 20px;
    }
    .serviceIntroAnchor .ttl_txt {
        max-width: 380px;
        min-height: 4em;
        width: 80%;
        margin: 0 auto 10px;
    }
    .serviceIntroAnchor .ttl_txt:hover {
        text-decoration: none !important;
    }
    .serviceIntro {
        padding-top: 70px;
        padding-bottom: 80px;
    }
    .serviceConsul .contact,
    .serviceKsiAuc .connect,
    .serviceSeisaku .connect {
        margin: 40px auto;
    }
    .serviceConsul,
    .serviceDx,
    .serviceThink {
        margin-bottom: 0;
    }
    .serviceSeisaku,
    .serviceKsiAuc {
        margin-bottom: -40px;
    }
    .serviceConsul div.tit,
    .serviceKsiAuc div.tit,
    .serviceDx div.tit,
    .serviceSeisaku div.tit,
    .serviceThink div.tit {
        position: relative;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        z-index: 2;
    }
    .serviceConsul div.tit div.photo,
    .serviceKsiAuc div.tit div.photo,
    .serviceDx div.tit div.photo,
    .serviceSeisaku div.tit div.photo,
    .serviceThink div.tit div.photo {
        width: 80%;
        max-width: 380px;
        height: 200px;
        float: none;
        margin: 0 auto;
    }
    .serviceConsul div.tit div.right,
    .serviceKsiAuc div.tit div.right,
    .serviceDx div.tit div.right,
    .serviceSeisaku div.tit div.right,
    .serviceThink div.tit div.right {
        width: 100%;
        float: none;
    }
    .serviceConsul div.tit div.right h2,
    .serviceKsiAuc div.tit div.right h2,
    .serviceDx div.tit div.right h2,
    .serviceSeisaku div.tit div.right h2,
    .serviceThink div.tit div.right h2 {
        font-size: 19px;
        padding-top: 40px;
    }
    .serviceConsul div.tit div.right h2 span,
    .serviceKsiAuc div.tit div.right h2 span,
    .serviceDx div.tit div.right h2 span,
    .serviceSeisaku div.tit div.right h2 span,
    .serviceThink div.tit div.right h2 span {
        font-size: 14px;
    }
    .serviceConsul div.tit div.right h2 img,
    .serviceDx div.tit div.right h2 img,
    .serviceThink div.tit div.right h2 img {
        width: 36px;
    }
    .serviceSeisaku div.tit div.right h2 img {
        width: 180px;
    }
    .serviceConsul div.detail,
    .serviceKsiAuc div.detail,
    .serviceDx div.detail,
    .serviceSeisaku div.detail,
    .serviceThink div.detail {
        padding: 240px 28px 60px 25px;
        top: -240px;
        margin-bottom: -240px;
    }
    .serviceKsiAuc div.detail,
    .serviceSeisaku div.detail {
        padding: 360px 28px 60px 25px;
        top: -360px;
        margin-bottom: -360px;
    }
    .serviceConsul div.detail div.inner,
    .serviceKsiAuc div.detail div.inner,
    .serviceDx div.detail div.inner,
    .serviceSeisaku div.detail div.inner,
    .serviceThink div.detail div.inner {
        max-width: 380px;
    }
    .serviceConsul div.detail div.inner div.left {
        width: 100%;
        float: none;
        margin-bottom: 50px;
    }
    .serviceConsul div.detail div.inner div.right {
        width: 100%;
        float: none;
    }
    .serviceConsul div.detail div.inner div.right ul li {
        font-size: 14px;
    }
    .serviceConsul div.detail h3,
    .serviceThink div.detail h2 {
        font-size: 18px;
        margin-bottom: 35px;
    }
    .serviceConsul div.detail ul.menu {
        max-width: 400px;
        margin: 0 auto;
    }
    .serviceConsul div.detail ul.menu li {
        width: 100%;
        float: none;
        padding: 20px;
        margin-right: 0;
        margin-bottom: 40px;
    }
    .serviceConsul div.detail ul.menu li:nth-last-child(2) {
        margin-bottom: 40px;
    }
    .serviceConsul div.detail ul.menu li h4 {
        font-size: 16px;
    }
    .serviceConsul div.detail ul.menu li h4 span {
        font-size: 12px;
    }
    .serviceConsul div.detail ul.menu li ul.sub-menu li {
        font-size: 14px;
    }
    .serviceConsul div.detail ul.menu li ul.sub-menu li:before {
        top: 8px;
    }
}

/* !会社概要
---------------------------------------------------------- */
.company h2 {
    margin-bottom: 60px;
}

@media screen and (max-width: 360px) {
    .company h2 {
        margin-bottom: 30px;
    }
}
.companyMessage {
    padding-top: 90px;
    padding-bottom: 100px;
}
.en .companyMessage {
    padding-bottom: 0;
}
.companyMessage div.left {
    width: 68%;
    float: left;
}
blockquote .ceo {
    position: relative;
    border-top: 1px solid rgba(34, 25, 25, 0.4);
    border-bottom: 1px solid rgba(34, 25, 25, 0.4);
    padding: 2em 1em;
}

blockquote .ceo:before {
    position: absolute;
    background-color: #ffffff;
    color: rgba(34, 25, 25, 0.4);
    font-family: "FontAwesome";
    content: "\f10d";
    line-height: 1;
    text-align: center;
    top: -20px;
    left: -10px;
    padding: 10px;
    font-size: 20px;
}
blockquote .ceo:after {
    position: absolute;
    right: -10px;
    bottom: -20px;
    background-color: #ffffff;
    padding: 10px;
    color: rgba(34, 25, 25, 0.4);
    font-family: "FontAwesome";
    content: "\f10e";
    line-height: 1;
    text-align: center;
    font-size: 20px;
}
blockquote cite {
    display: block;
    padding-right: 30px;
    font-size: 0.8rem;
    text-align: right;
    color: #808080;
}
.companyMessage h2 {
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
    margin-bottom: 40px;
}
.companyMessage h2 span {
    position: relative;
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-left: 1.6em;
    vertical-align: middle;
    top: -4px;
}
.companyMessage h2.en,
.ourteam h2.en {
    font-family: "Lato", sans-serif;
    margin-bottom: 10px;
}
.companyMessage h3.en,
.ourteam h3.en {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    margin: 30px 0 20px;
}
.companyMessage h3.en.mv {
    font-size: 1.8em;
}
.companyMessage p.mv {
    font-size: 1.4em;
}
.companyMessage div.right {
    width: 26%;
    float: right;
}
.companyMessage div.right img {
    display: block;
    width: 130px;
    margin: 0 auto;
}
.ourteam img {
    display: block;
    width: 60%;
    margin: 20px auto;
    text-align: center;
}

.companyMission {
    width: 100%;
    background: url(img/mission_bg.jpg) 50% 50% no-repeat;
    background-size: cover;
    padding: 100px 50px;
}
.enMissionBg {
    background: url(img/mission_en_bg.jpg) 50% 50% no-repeat;
}
.companyMission div.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.companyMission div.inner h2 {
    position: absolute;
    display: inline-block;
    height: 80px;
    font-size: 26px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 80px;
    padding: 0 1.2em;
    background: url(img/mission_tit_bg.png) 0 0 repeat;
    background-size: 20px 19px;
    top: 0;
    left: 0;
    z-index: 2;
}
.companyMission div.inner h2.en {
    width: 38%;
    font-family: "Lato", sans-serif;
    font-size: 32px;
}
.companyMission div.inner div.read {
    position: relative;
    width: 68%;
    padding: 70px 65px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
    top: 30px;
    margin-left: 32%;
    margin-bottom: 30px;
}
.companyMission div.inner div.read h3.en {
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 30px;
}
.companyService .strength,
.companyService .example > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto 60px;
    max-width: 1000px;
}
.en_list {
    display: flex;
    margin: 0.6em 0;
}
.en_list::before {
    content: "-";
    padding-right: 0.5em;
}
.en_list strong {
    display: inline;
}
.companyService .example {
    flex-direction: column;
}
.companyService .strength > li,
.companyService .example > li {
    display: flex;
    align-self: stretch;
    font-size: 1em;
    line-height: 1.4;
    padding: 1em;
    margin: 0.3em;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
    align-items: flex-start;
}
.companyService .strength li {
    width: 25%;
    flex-direction: column;
}
.companyService .example > li {
    justify-content: flex-start;
    margin-bottom: 1em;
}
.companyService .strength strong {
    color: #ed6d0f;
    font-size: 1.1em;
    display: block;
}
.companyService .example > li img {
    width: 25%;
    flex: 1;
}
.companyService .example > li .dtl {
    margin-left: 1em;
    flex: 2;
}
.companyService .example > li h4 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.btm_link a {
    display: flex;
    font-size: 1.2em;
    align-items: center;
    justify-content: center;
    padding: 1em;
}
.btm_link a:hover {
    color: #000;
    text-decoration: none;
}
.btm_link .fa-linkedin {
    color: #0a66c2;
    font-size: 1.5em;
    margin-right: 0.2em;
}
@media screen and (max-width: 767px) {
    .companyService .strength {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .companyService .strength li {
        max-width: 380px;
        min-height: 4em;
        width: 100%;
        margin: 0 auto 10px;
    }
    .companyService .strength li,
    .companyService .example > li {
        flex-direction: column;
    }
    .companyService .example > li img {
        width: 100%;
        margin-bottom: 1em;
    }
    .companyService .example > li .dtl {
        margin: 0;
    }
}
.companyProfile {
    padding-top: 100px;
    padding-bottom: 120px;
}
.companyProfile h2 {
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
    margin-bottom: 40px;
}
.companyProfile h2 span {
    position: relative;
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-left: 1.6em;
    vertical-align: middle;
    top: -4px;
}

.companyMember {
    padding-top: 100px;
    padding-bottom: 100px;
}
.companyMember h2 {
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
    margin-bottom: 40px;
}
.companyMember h2 span {
    position: relative;
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-left: 1.6em;
    vertical-align: middle;
    top: -4px;
}
.companyMember ul.memberList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.companyMember ul.memberList li {
    width: 45%;
    float: left;
    margin-right: 10%;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #eeeeed;
}
.companyMember ul.memberList li:nth-child(even) {
    margin-right: 0;
}
.companyMember ul.memberList li img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}
.companyMember ul.memberList li p.degree {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    padding: 0.6em 0.8em;
    background: #ee8a11;
    z-index: 2;
    top: -20px;
    left: -10px;
}
.companyMember ul.memberList li p.name {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    color: #ed6d0f;
    text-align: right;
    line-height: 1.6;
    vertical-align: middle;
    margin-bottom: 30px;
}
.companyMember ul.memberList li p.name span {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #9f9f86;
    margin-left: 1em;
}
.companyMember ul.memberList li h3 {
    display: inline-block;
    position: relative;
    font-size: 17px;
    font-weight: bold;
    padding: 0 1em;
    margin-bottom: 15px;
}
.companyMember ul.memberList li h3:before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: #ec6c0e;
    border-radius: 50%;
    top: 14px;
    left: 0;
}
.companyMember ul.memberList li h3:after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background: #ec6c0e;
    border-radius: 50%;
    top: 14px;
    right: 0;
}

.companyPresident {
    padding-top: 100px;
    padding-bottom: 100px;
}
.companyPresident h2 {
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
    margin-bottom: 40px;
}
.companyPresident div.left {
    width: 45%;
    float: left;
}
.companyPresident div.left img {
    display: block;
    width: 100%;
}
.companyPresident div.right {
    width: 47%;
    float: right;
}

.companyTeam {
    padding-bottom: 100px;
}
.companyTeam h2 {
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
    margin-bottom: 40px;
}
.companyTeam img {
    display: block;
    width: 90%;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.companyTeam div.inner div {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.companyBusiness {
    padding-bottom: 100px;
}
.companyBusiness h2 {
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
    margin-bottom: 40px;
}
.companyBusiness ul.businessContents {
    width: 100%;
}
.companyBusiness ul.businessContents li {
    margin-bottom: 40px;
}
.companyBusiness ul.businessContents li:last-child {
    margin-bottom: 0;
}
.companyBusiness ul.businessContents li h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 0.8em;
    position: relative;
}
.companyBusiness ul.businessContents li h3:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #eb6c0d;
    border-radius: 50%;
    top: 16px;
    left: 0;
}

.companyHistory {
    padding-bottom: 100px;
}
.companyHistory h2 {
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
    margin-bottom: 40px;
}
.companyAbout h2 {
    font-family: "Lato", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
    margin-bottom: 40px;
}

@media screen and (max-width: 1039px) {
    .companyMessage {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .en .companyMessage {
        margin-bottom: 0;
    }
    .companyMessage h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .companyMessage h2 span {
        font-size: 16px;
        top: -3px;
    }
    .companyMessage h2.en {
        font-size: 26px;
    }
    .companyMessage h3.en {
        /* font-size: 20px; */
        /* margin-bottom: 30px; */
    }
    .companyMessage div.right img {
        width: 120px;
    }
    .ourteam img {
        width: 80%;
    }

    .companyMission {
        padding: 80px 30px;
    }
    .companyMission div.inner h2 {
        height: 76px;
        font-size: 22px;
        line-height: 76px;
        padding: 0 1em;
    }
    .companyMission div.inner h2.en {
        width: 38%;
        font-size: 26px;
    }
    .companyMission div.inner div.read {
        padding: 65px 60px 60px 60px;
    }
    .companyMission div.inner div.read h3.en {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .companyProfile {
        padding-top: 80px;
        padding-bottom: 100px;
    }
    .companyProfile h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .companyProfile h2 span {
        font-size: 16px;
        top: -3px;
    }

    .companyMember {
        padding-bottom: 80px;
    }
    .companyMember h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .companyMember h2 span {
        font-size: 16px;
        top: -3px;
    }
    .companyMember ul.memberList li {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .companyMember ul.memberList li p.name {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .companyMember ul.memberList li p.name span {
        font-size: 14px;
    }
    .companyMember ul.memberList li h3 {
        font-size: 16px;
    }
    .companyMember ul.memberList li h3:before {
        top: 13px;
    }
    .companyMember ul.memberList li h3:after {
        top: 13px;
    }

    .companyPresident {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .companyPresident h2 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .companyTeam {
        padding-bottom: 80px;
    }
    .companyTeam h2 {
        font-size: 26px;
    }

    .companyBusiness {
        padding-bottom: 80px;
    }
    .companyBusiness h2 {
        font-size: 26px;
    }
    .companyBusiness ul.businessContents li h3 {
        font-size: 20px;
    }
    .companyBusiness ul.businessContents li h3:before {
        top: 14px;
    }

    .companyHistory {
        padding-bottom: 80px;
    }
    .companyHistory h2 {
        font-size: 26px;
    }

    .companyAbout {
        padding-bottom: 100px;
    }
    .companyAbout h2 {
        font-size: 26px;
    }
}

@media screen and (max-width: 767px) {
    .companyMessage,
    .ourteam {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .en .companyMessage {
        padding-bottom: 0;
    }
    .companyMessage div.left {
        width: 100%;
        float: none;
    }
    .companyMessage div.left h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .companyMessage div.left h2 span {
        font-size: 14px;
    }
    .companyMessage h2.en {
        font-size: 22px;
    }
    .companyMessage h3.en {
        font-size: 17px;
        margin-bottom: 30px;
    }
    .companyMessage h3.en.mv {
        font-size: 22px;
    }
    .companyMessage p.mv {
        font-size: 18px;
    }
    .companyMessage div.right {
        width: 100%;
        float: none;
        margin-bottom: 50px;
    }
    .companyMessage div.right img {
        width: 100px;
    }
    .companyMission {
        background: url(img/mission_bg.jpg) 30% 50% no-repeat;
        background-size: cover;
        padding: 50px 25px;
    }
    .enMissionBg {
        background: url(img/mission_en_bg.jpg) 50% 50% no-repeat;
    }
    .companyMission div.inner h2 {
        width: 250px;
        height: 66px;
        font-size: 18px;
        line-height: 66px;
        text-align: center;
        padding: 0;
        left: 50%;
        margin-left: -125px;
    }
    .companyMission div.inner h2.en {
        width: 200px;
        height: 66px;
        font-size: 22px;
        line-height: 66px;
        text-align: center;
        padding: 0;
        left: 50%;
        margin-left: -100px;
    }
    .companyMission div.inner div.read {
        width: 100%;
        padding: 65px 20px 35px 20px;
        margin-left: 0;
    }
    .companyMission div.inner div.read h3.en {
        font-size: 17px;
    }

    .companyProfile {
        padding-top: 70px;
        padding-bottom: 80px;
    }
    .companyProfile h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .companyProfile h2 span {
        font-size: 14px;
    }

    .companyMember {
        padding-bottom: 70px;
    }
    .companyMember h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .companyMember h2 span {
        font-size: 14px;
    }
    .companyMember ul.memberList {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
    }
    .companyMember ul.memberList li {
        width: 100%;
        float: none;
        margin-right: 0;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    .companyMember ul.memberList li:last-child {
        margin-bottom: 0;
    }
    .companyMember ul.memberList li p.degree {
        font-size: 14px;
    }
    .companyMember ul.memberList li p.name {
        font-size: 17px;
        margin-bottom: 25px;
    }
    .companyMember ul.memberList li p.name span {
        font-size: 13px;
    }
    .companyMember ul.memberList li h3 {
        font-size: 15px;
    }

    .companyPresident {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .companyPresident h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .companyPresident div.left {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }
    .companyPresident div.left img {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .companyPresident div.right {
        width: 100%;
        float: none;
    }

    .companyTeam {
        padding-bottom: 70px;
    }
    .companyTeam h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .companyTeam img {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 30px auto;
    }
    .companyTeam div.inner div {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .companyBusiness {
        padding-bottom: 70px;
    }
    .companyBusiness h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .companyBusiness ul.businessContents li {
        margin-bottom: 30px;
    }
    .companyBusiness ul.businessContents li h3 {
        font-size: 17px;
    }
    .companyBusiness ul.businessContents li h3:before {
        top: 11px;
    }

    .companyHistory {
        padding-bottom: 70px;
    }
    .companyHistory h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .companyAbout {
        padding-bottom: 70px;
    }
    .companyAbout h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 360px) {
    .companyMission div.inner h2 {
        width: 230px;
        font-size: 16px;
        margin-left: -115px;
    }
}

.recruitment {
    padding-top: 100px;
    padding-bottom: 120px;
}
.recruitment h2 {
    font-size: 32px;
    font-weight: bold;
    color: #ed6d0f;
    line-height: 1.4;
    margin-bottom: 40px;
}
.recruitment h2 span {
    position: relative;
    display: inline-block;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-left: 1.6em;
    vertical-align: middle;
    top: -4px;
}

@media screen and (max-width: 1039px) {
    .recruitment {
        padding-top: 80px;
        padding-bottom: 100px;
    }
    .recruitment h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .recruitment h2 span {
        font-size: 16px;
        top: -3px;
    }
}
@media screen and (max-width: 767px) {
    .recruitment {
        padding-top: 70px;
        padding-bottom: 80px;
    }
    .recruitment h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .recruitment h2 span {
        font-size: 14px;
    }
}

/* !コラム
---------------------------------------------------------- */
.columnTop {
    width: 100%;
    /* border-bottom: 4px solid #ed6d0f; */
    margin: 0 0 20px;
    height: 80px;
    padding: 20px 0;
}
.columnTop .inner {
    position: relative;
}
.columnTop .inner::after {
    content: "";
    position: absolute;
    left: -100%;
    right: -100%;
    width: 100vw;
    margin: auto;
    border-bottom: 4px solid #ed6d0f;
}

.columnTop ul.columnNavi {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1%;
}
.columnTop ul.columnNavi li {
    /* align-self: stretch;
    width: 16%; */
    width: calc(16% - 4px);
    /* margin-right: 15px; */
}

.columnTop ul.columnNavi li a {
    height: 100%;
    display: block;
    font-weight: bold;
    color: #222;
    text-align: center;
    border-right: 0;
    border-bottom: 0;
    transition: 0.6s;
    padding: 1.2em 0 1em 0;
    line-height: 1rem;
    text-decoration: none;
}
.columnTop ul.columnNavi li a.active {
    background: #ed6d0f;
    color: #fff;
    font-weight: bold;
}
.columnTop ul.columnNavi li a.active:hover {
    color: #fff;
    background: #ed6d0f;
}
.columnTop ul.columnNavi li a:hover {
    color: #ec9a11;
}
@media screen and (max-width: 840px) {
    .columnTop ul.columnNavi li {
        width: auto;
    }
    .columnTop ul.columnNavi li a {
        padding: 1em;
    }
}
.columnIndex {
    width: 100%;
    padding-bottom: 100px;
}
.columnIndex h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}
.columnIndex ul.columnList {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    margin: 0 auto 80px auto;
}
.columnIndex ul.columnList li {
    width: calc(96% / 3);
    line-height: 1.4;
    margin-bottom: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.columnIndex.servicemod {
    padding: 60px 0 0 0;
}
.columnIndex.servicemod li {
    background: #fff;
}
.columnIndex ul.columnList li a {
    display: block;
    width: 100%;
    position: relative;
}
.columnIndex ul.columnList li a img {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    transition: 0.6s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.columnIndex ul.columnList li a:hover img {
    opacity: 0.7;
}
.columnIndex ul.columnList li a div {
    width: 100%;
    margin-bottom: 20px;
}
.columnIndex ul.columnList li a div p.date {
    color: #666;
    float: left;
}
.columnIndex ul.columnList li a div p.cat {
    position: absolute;
    top: 8px;
    left: -4px;
    font-size: 12px;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.08);

    display: inline-block;
    color: #fff;
    line-height: 1.4;
    padding: 0.4em 0.6em;
    background: #ee8a11;
    /* float: right; */
}
.columnIndex ul.columnList li a h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;

    /* margin-bottom: 15px; */
    transition: 0.6s;
}

.columnIndex ul.columnList li a p.date {
    text-align: right;
    color: #666;
    font-size: 14px;
}

.columnIndex ul.columnList li a h3,
.columnIndex ul.columnList li a p.spt,
.columnIndex ul.columnList li a p.date {
    margin: 0 16px 16px;
    transition: 0.6s;
}
.columnIndex ul.columnList li a:hover h3,
.columnIndex ul.columnList li a:hover p.spt,
.columnIndex ul.columnList li a:hover p.date {
    color: #ed6d0f;
}

.columnArticle {
    width: 100%;
    padding-top: 90px;
    margin-bottom: 100px;
}
.columnArticle p.date {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}
.columnArticle p.date span {
    display: inline-block;
    font-weight: bold;
    color: #ed6d0f;
    border-left: 1px solid #d7d7cc;
    padding-left: 1.6em;
    margin-left: 1.6em;
}
.columnArticle p.date span a {
    color: #ed6d0f;
}
.columnArticle p.date span a:hover {
    text-decoration: underline;
}
.columnArticle h1 {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    line-height: 3em;
    padding: 0 0 0 20px;
    margin-bottom: 40px;
}
.columnArticle h1:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 0 0;
    border-color: #ed6d0f transparent transparent transparent;
    top: 0;
    left: 0;
}
.columnArticle h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.6;
    padding: 1em 0;
    margin-bottom: 40px;
    border-bottom: 4px solid #ee8a11;
}
.columnArticle h3,
.topColumnList h3,
.columnList h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
    background: transparent;
    padding: 0.15em 0;
}
.columnArticle h3 {
    border-left: 4px solid #ee8a11;
    padding: 0.15em 0 0.15em 0.6em;
}
.columnArticle h4 {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    padding: 1.5rem 1rem;
    border-bottom: 3px solid #000;
    border-image: linear-gradient(to right, #000 0%, #666 25%, #f5f5f5 50%, #fff 100%);
    border-image-slice: 1;
    margin-bottom: 2em;
}

.columnArticle h4:before {
    position: absolute;
    bottom: -14px;
    left: 1em;
    width: 0;
    height: 0;
    content: "";
    border-width: 14px 12px 0;
    border-style: solid;
    border-color: #000 transparent transparent;
}

.columnArticle h4:after {
    position: absolute;
    bottom: -10px;
    left: 1em;
    width: 0;
    height: 0;
    content: "";
    border-width: 14px 12px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
}

.columnArticle .outline {
    padding: 16px 32px;
    margin: 36px 0;
    background-color: #f6f6f6;
    display: inline-block;
}
.prenext {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.prenext .pre a,
.prenext .next a {
    position: relative;
    display: inline-block;
    margin: 20px 0;
    padding: 8px 20px;
    text-decoration: none;
}
.prenext .pre a:hover,
.prenext .next a:hover {
    text-decoration: underline;
    color: #ed6d0f;
}
.prenext .pre a::before,
.prenext .next a::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 2px #ed6d0f;
    border-right: solid 2px #ed6d0f;
    position: absolute;
    top: 16px;
}
.prenext .pre a::before {
    left: 0;
    transform: rotate(-135deg);
}
.prenext .next a::after {
    right: 0;
    transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
    .columnArticle .outline {
        display: block;
    }
}

.columnArticle .outline li {
    padding: 2px 0 2px 1.2em;
    margin: 0;
    font-size: 0.875rem;
    list-style-type: none;
    border-bottom: 1px solid #eee;
    position: relative;
}
.columnArticle .outline li:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #777;
    border-radius: 50%;
    top: 12px;
    left: 0;
}
.columnArticle .outline li:last-child {
    border: none;
}
.columnArticle .outline li a {
    text-decoration: none;
}
.columnArticle .outline li a:hover,
.columnArticle .outline li a:active,
.columnArticle .outline li a:focus {
    text-decoration: underline;
    text-underline-offset: 0.3em;
}
/* .columnArticle blockquote {
	position: relative;
    padding: 10px 15px 10px 50px;
    box-sizing: border-box;
    border-left: solid 3px #d8d8d8;
}

.columnArticle blockquote:before{
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 15px;
    content: "\f10d";
    font-family: FontAwesome;
    color: #666;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
	font-style: italic;
}

.columnArticle blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
} */
.columnArticle blockquote {
    position: relative;
    padding: 10px 25px 10px 40px;
    box-sizing: border-box;
    color: #464646;
    border: solid 3px #ccc;
}

.columnArticle blockquote:before {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border-radius: 0 0 30px;
    content: "\f10d";
    font-style: italic;
    font-family: FontAwesome;
    background: #ccc;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}

.columnArticle blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}

.columnArticle blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}
.columnArticle blockquote em {
    font-style: italic;
}
.columnArticle blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}
.columnArticle ol {
    list-style: decimal;
}
.columnArticle div.article {
    margin-bottom: 60px;
}
.columnArticle div.article h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
}

.columnArticle div.article p {
    margin-bottom: 40px;
}
.columnArticle div.article img {
    display: block;
    /* width: 100%; */
}
.columnArticle div.shareBtn {
    margin-bottom: 80px;
}
.columnArticle a,
.columnArticle a:hover,
.columnArticle a:active,
.columnArticle a:focus {
    text-decoration: underline;
    text-underline-offset: 0.3em;
}
.columnArticle a:hover,
.columnArticle a:active,
.columnArticle a:focus {
    color: #eb6c0d;
}
.columnArticle a.backBtn {
    position: relative;
    display: block;
    width: 100%;
    font-weight: bold;
    color: #ed6d0f;
    text-align: center;
    line-height: 90px;
    border-top: 1px solid #ecece7;
    border-bottom: 1px solid #ecece7;
    transition: 0.6s;
}
.columnArticle a.backBtn i.fas {
    margin-left: 2em;
    transition: 0.6s;
}
.columnArticle a.backBtn:hover {
    /* background: #ed6d0f;
	color: #fff; */
    background: #fff;
    color: #ed6d0f;
}
.columnArticle a.backBtn:hover i.fas {
    margin-left: 3em;
}
/*PagiNavi*/
.wp-pagenavi {
    padding-top: 10px;
}
.wp-pagenavi a,
.wp-pagenavi span.pages,
.wp-pagenavi span.current {
    margin-right: 4px;
    padding: 3px 6px;
    border: 1px solid #e6e6e6;
    background: #fff;
    font-weight: bold;
    color: #ed6d0f;
    text-decoration: none;
    text-align: center;
    transition: all 0.6s ease;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    color: #fff;
    background: #ed6d0f;
}

@media screen and (max-width: 1039px) {
    .columnTop ul.columnNavi li a:hover {
        background: #fff;
        color: #ed6d0f;
    }
    .columnIndex {
        width: 100%;
        padding-bottom: 80px;
    }
    .columnIndex h2 {
        font-size: 22px;
        margin-bottom: 40px;
    }
    .columnIndex ul.columnList {
        width: 100%;
    }
    .columnIndex ul.columnList li a h3 {
        font-size: 16px;
        margin: 0;
    }
    .columnIndex ul.columnList li a h3,
    .columnIndex ul.columnList li a p.spt,
    .columnIndex ul.columnList li a p.date {
        padding: 0 8px 12px;
    }
    .columnArticle {
        padding-top: 80px;
        margin-bottom: 80px;
    }
    .columnArticle h1 {
        font-size: 22px;
        margin-bottom: 50px;
    }
    .columnArticle h2 {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .columnArticle h3,
    .columnArticle h4 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .columnArticle div.article img {
        margin: 10px auto 0;
    }
    .columnArticle div.shareBtn {
        margin-bottom: 60px;
    }
    .columnArticle a.backBtn {
        line-height: 80px;
    }
    .columnArticle a.backBtn i.fas {
        margin-left: 2em;
        transition: 0.6s;
    }
    /* .columnArticle a.backBtn:hover {
		background: #fff;
		color: #ed6d0f;
	} */
    .columnArticle a.backBtn:hover i.fas {
        margin-left: 2em;
    }

    .wp-pagenavi a:hover {
        color: #ed6d0f;
        background: #fff;
    }
}

@media screen and (max-width: 767px) {
    .columnTop {
        padding: 0;
        margin: 0;
    }
    .columnTop ul.columnNavi li {
        width: 20%;
    }
    .columnTop ul.columnNavi li a {
        line-height: 2rem;
    }
    .columnIndex {
        padding-bottom: 70px;
    }
    .columnIndex h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .columnIndex ul.columnList {
        margin: 0 auto 70px auto;
    }
    .columnIndex ul.columnList li {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    .columnIndex ul.columnList li:nth-last-child(2) {
        margin-bottom: 40px;
    }
    .columnIndex ul.columnList li a h3,
    .columnIndex ul.columnList li a p.spt,
    .columnIndex ul.columnList li a p.date {
        padding: 0 20px 12px;
        line-height: 1.46em;
        margin: 0;
    }
    .columnIndex ul.columnList li a h3 {
        font-size: 18px;
    }
    .columnIndex ul.columnList li a p.spt {
        font-size: 16px;
    }
    .columnIndex ul.columnList li a p.date {
        font-size: 14px;
    }
    .columnIndex ul.columnList li a div {
        margin-bottom: 15px;
    }
    .columnArticle {
        padding-top: 70px;
        margin-bottom: 70px;
    }
    .columnArticle p.date {
        margin-bottom: 25px;
    }
    .columnArticle p.date span {
        padding-left: 1.4em;
        margin-left: 1.4em;
    }
    .columnArticle h1 {
        margin-bottom: 40px;
    }
    .columnArticle h2 {
        /* font-size: 16px; */
        margin-bottom: 40px;
    }
    .columnArticle div.article {
        margin-bottom: 50px;
    }
    /* .columnArticle div.article h3 {
		font-size: 16px;
	} */
    .columnArticle div.article p {
        margin-bottom: 30px;
    }
    .columnArticle div.article img {
        /* width:90%; */
        margin: 20px auto 0;
    }
    .columnArticle div.shareBtn {
        margin-bottom: 50px;
    }
    .columnArticle a.backBtn {
        line-height: 70px;
    }
    .columnArticle a.backBtn i.fas {
        margin-left: 1.6em;
    }
    .columnArticle a.backBtn:hover i.fas {
        margin-left: 1.6em;
    }
}

@media screen and (max-width: 360px) {
    .columnTop ul.columnNavi li a {
        font-size: 13px;
    }
}

/* !ニュース
---------------------------------------------------------- */

.columnTop .p-archives__list .inner {
    position: relative;
}
.columnTop .p-archives__list .inner::after {
    content: "";
    position: absolute;
    left: -100%;
    right: -100%;
    width: 100vw;
    margin: auto;
    border-bottom: 4px solid #ed6d0f;
}
@media screen and (max-width: 767px) {
    .columnTop ul.columnNavi li.p-archives__item a {
        padding: 8px 0;
    }
}
.columnTop ul.columnNavi .p-archives__item.active > a,
.columnTop ul.columnNavi .p-archives__item > a:hover,
.columnTop ul.columnNavi .p-archives__item > a:active {
    background-color: #ed6d0f;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
}

.newsIndex {
    width: 100%;
    padding: 20px 40px 100px 40px;
    max-width: 1100px;
    margin: auto;
}
.newsIndex h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}
.newsIndex ul.newsList {
    width: 100%;
    margin-bottom: 100px;
}
.newsIndex ul.newsList li {
    width: 100%;
    margin-bottom: 20px;
}
.newsIndex ul.newsList li:last-child {
    margin-bottom: 0;
}
.newsIndex ul.newsList li a {
    display: block;
    width: 100%;
}
.newsIndex ul.newsList li a div {
    width: 28%;
    min-width: 18rem;
    float: left;
}
.newsIndex ul.newsList li a div p.date {
    display: inline-block;
    color: #666;
    margin-left: 1rem;
    font-size: 1rem;
}
.newsIndex ul.newsList li a div p.cat {
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 0.4em 0.6em;
    background: #ee8a11;
    min-width: 9em;
    text-align: center;
    font-size: 1rem;
}
.newsIndex ul.newsList li a h3 {
    width: 68%;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 15px;
    transition: 0.6s;
    float: left;
}
.newsIndex ul.newsList li a:hover h3 {
    color: #ed6d0f;
}

@media screen and (max-width: 1039px) {
    .newsIndex {
        padding-top: 0;
        padding-bottom: 80px;
    }
    .newsIndex h2 {
        font-size: 22px;
        margin-bottom: 40px;
    }
    .newsIndex ul.newsList {
        width: 100%;
        margin: 0 auto 80px auto;
    }
    .newsIndex ul.newsList li {
        margin-bottom: 30px;
    }
    .newsIndex ul.newsList li a div {
        width: 100%;
        float: none;
        margin-bottom: 8px;
    }
    .newsIndex ul.newsList li a h3 {
        width: 100%;
        float: none;
        font-size: 18px;
        padding: 0 0 0 16px;
    }
    .newsIndex ul.newsList li a:hover h3 {
        color: #222;
    }
}

@media screen and (max-width: 767px) {
    .newsIndex {
        padding: 0 0 70px 0;
    }
    .newsIndex h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .newsIndex ul.newsList {
        margin: 0 auto 70px auto;
    }
    .newsIndex ul.newsList li {
        margin-bottom: 20px;
    }
    .newsIndex ul.newsList li a div {
        margin-bottom: 8px;
    }
    .newsIndex ul.newsList li a h3 {
        font-size: 16px;
    }
}

/* !ニュース
---------------------------------------------------------- */
.contactIntro {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 100px;
}

@media screen and (max-width: 1039px) {
    .contactIntro {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .contactIntro {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/* !プライバシーポリシー
---------------------------------------------------------- */
.privacy {
    padding-top: 40px;
    padding-bottom: 100px;
}

.privacy h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.bdrBtm {
    border-bottom: 1px solid #eeeeed;
    padding-top: 50px;
    padding-bottom: 50px;
}

.btm {
    padding-top: 50px;
}

@media screen and (max-width: 1039px) {
    .privacy {
        padding-top: 30px;
        padding-bottom: 80px;
    }

    .privacy h2 {
        font-size: 17px;
    }

    .bdrBtm {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .btm {
        padding-top: 45px;
    }
}

@media screen and (max-width: 767px) {
    .privacy {
        padding-top: 20px;
        padding-bottom: 70px;
    }

    .privacy h2 {
        font-size: 16px;
    }

    .bdrBtm {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .btm {
        padding-top: 40px;
    }
}

/* !Box
---------------------------------------------------------- */

@media screen and (max-width: 1039px) {
}

@media screen and (max-width: 767px) {
}

/* !h(n)eading
---------------------------------------------------------- */
.tit_basic01 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
    padding: 0 0 0 20px;
    margin-bottom: 40px;
}
.tit_basic01:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 0 0;
    border-color: #ed6d0f transparent transparent transparent;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1039px) {
    .tit_basic01 {
        font-size: 19px;
        padding: 0 0 0 18px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .tit_basic01 {
        font-size: 17px;
        padding: 0 0 0 16px;
        margin-bottom: 30px;
    }
}

/* !Listing
---------------------------------------------------------- */
ul.iconList {
    width: 100%;
}
ul.iconList li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 15px;
}
ul.iconList li:last-child {
    margin-bottom: 0;
}
ul.iconList li:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #64b4f4;
    border-radius: 50%;
    top: 13px;
    left: 0;
}
ul.circle li {
    list-style: circle;
    margin: 0 0 10px 20px;
}
ul.circle li:last-child {
    margin-bottom: 0;
}

ul.alpha li {
    list-style: lower-alpha;
    margin: 0 0 10px 20px;
}
ul.alpha li:last-child {
    margin-bottom: 0;
}

ol.numList li {
    list-style: decimal;
    margin: 0 0 15px 20px;
}
ol.numList li:last-child {
    margin-bottom: 0;
}
.columnArticle div.article li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 4px;
}
.columnArticle div.article li:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    background: #777;
    border-radius: 50%;
    top: 13px;
    left: 0;
}
.columnArticle div.article ol {
    list-style: decimal;
}
@media screen and (max-width: 1039px) {
    ul.iconList li:before {
        top: 11px;
    }
}

@media screen and (max-width: 767px) {
    ul.iconList li:before {
        top: 11px;
    }
}

/* !Table
---------------------------------------------------------- */
.table_basic01 {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.table_basic01 th {
    width: 25%;
    padding: 1.4em 0.8em;
    vertical-align: top;
    font-weight: bold;
    border-bottom: 1px solid #ec9a11;
}
.table_basic01 th.top {
    border-top: 1px solid #ec9a11;
}
.table_basic01 td {
    width: 75%;
    padding: 1.4em 0.8em 1.2em 2.2em;
    vertical-align: top;
    border-bottom: 1px solid #e9e9e7;
}
.table_basic01 td.top {
    border-top: 1px solid #e9e9e7;
}

@media screen and (max-width: 1039px) {
    .table_basic01 th {
        width: 30%;
    }
    .table_basic01 td {
        width: 70%;
    }
}

@media screen and (max-width: 767px) {
    .table_basic01 {
        width: 100%;
        border-spacing: 0;
    }
    .table_basic01 tr {
        display: grid;
    }
    .table_basic01 th,
    .table_basic01 td {
        width: 100%;
        display: block;
        padding: 1em 1em;
        border: 1px solid #e9e9e7;
    }
    .table_basic01 th {
        background: #f1f1ef;
        font-weight: bold;
        border-top: 0;
    }
    .table_basic01 td {
        border-top: 0;
    }
    .table_basic01 th.top {
        border-top: 1px solid #e9e9e7;
    }
}

/*フォーム--------------------------------------*/
span.label {
    display: inline-block;
    padding: 1px 5px;
    background-color: #ca0e25;
    color: #fff;
    font-size: 10px;
    margin-left: 7px;
    border-radius: 3px;
}

input.norm {
    width: 90%;
    background-color: #ebebeb;
    border: 0;
    padding: 5px 10px;
}

input.short {
    width: 50%;
    background-color: #ebebeb;
    border: 0;
    padding: 5px 10px;
}

input.exshort {
    width: 15%;
    background-color: #ebebeb;
    border: 0;
    padding: 5px 10px;
}

select {
    border: 1px solid #ebebeb;
    padding: 8px 10px;
}
select option {
    margin-bottom: 5px;
}

textarea.norm {
    width: 100%;
    height: 150px;
    background-color: #ebebeb;
    border: 0;
    padding: 5px 10px;
}

label.check {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #d6ebe8;
    margin-bottom: 10px;
}

input.btn_submit {
    margin: 0 0 0 0;
    padding: 1em 2em;
    background-color: #ec9a11;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
input.btn_submit:hover {
    opacity: 0.7;
}

input.btn_back {
    margin: 0 0 0 0;
    padding: 1em 2em;
    background-color: #999;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
input.btn_back:hover {
    opacity: 0.7;
}

@media screen and (max-width: 1039px) {
    input.norm {
        width: 100%;
    }

    input.short {
        width: 60%;
    }

    input.exshort {
        width: 30%;
    }

    label.check {
        width: 100%;
    }

    textarea.norm {
        width: 100%;
    }

    input.btn_submit:hover {
        opacity: 1;
    }

    input.btn_back:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    input.norm {
        width: 100%;
    }

    input.short {
        width: 60%;
    }

    input.exshort {
        width: 30%;
    }

    label.check {
        width: 100%;
    }

    textarea.norm {
        width: 100%;
    }

    input.btn_submit {
        padding: 1em 1.6em;
        font-size: 14px;
    }

    input.btn_back {
        padding: 1em 1.6em;
        font-size: 14px;
    }
}

/* !Inline Align ------------------------------------------------------------ */
.taL {
    text-align: left !important;
}
.taC {
    text-align: center !important;
}
.taR {
    text-align: right !important;
}
.vaT {
    vertical-align: top !important;
}
.vaM {
    vertical-align: middle !important;
}
.vaB {
    vertical-align: bottom !important;
}
.blockC {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
}
* html .blockC {
    margin-right: 0;
    margin-left: 0;
}
.blockR {
    margin-left: auto;
    text-align: left;
}
* html .blockR {
    margin-left: 0;
}

/* !Width ------------------------------------------------------------------- */
/* 960px Grid */
.w960 {
    width: 960px;
}
.w800 {
    width: 800px;
}
.w640 {
    width: 640px;
}
.w480 {
    width: 480px;
}
.w320 {
    width: 320px;
}
.w160 {
    width: 160px;
}

.wHalf {
    width: 48%;
}
.wTri {
    width: 33%;
}
.wQuart {
    width: 24%;
}
.wFull {
    width: 99.9%;
}
.wMax {
    width: 100%;
}

.w03per {
    width: 3% !important;
}
.w05per {
    width: 5% !important;
}
.w10per {
    width: 10% !important;
}
.w13per {
    width: 13% !important;
}
.w15per {
    width: 15% !important;
}
.w20per {
    width: 20% !important;
}
.w25per {
    width: 25% !important;
}
.w30per {
    width: 30% !important;
}
.w35per {
    width: 35% !important;
}
.w40per {
    width: 40% !important;
}
.w45per {
    width: 45% !important;
}
.w50per {
    width: 50% !important;
}

/* !Floats ------------------------------------------------------------------ */
.flL {
    display: inline;
    float: left;
}
.flR {
    display: inline;
    float: right;
}
.flImgL {
    display: inline;
    float: left;
    margin-right: 25px;
    max-width: 280px;
}
.flImgR {
    display: inline;
    float: right;
    margin-left: 25px;
    max-width: 280px;
}
.flImgR2 {
    display: inline;
    float: right;
    margin-left: 25px;
    max-width: 200px;
}
.ftBox {
    overflow: hidden;
    zoom: 1;
}

@media screen and (max-width: 767px) {
    .flImgL {
        display: block;
        float: none;
        margin: 0 auto 20px auto;
        width: 100%;
        max-width: 280px;
    }
    .flImgR {
        display: block;
        float: none;
        margin: 0 auto 20px auto;
        width: 100%;
        max-width: 280px;
    }
    .flImgR2 {
        display: block;
        float: none;
        margin: 0 auto 20px auto;
        width: 100%;
        max-width: 280px;
    }
}

/* 左寄せ ------------------------------------------------------------------ */
.alignright {
    float: right;
    margin-left: 20px; /* 左側の余白調整 */
}
/* 中央寄せ ------------------------------------------------------------------ */
.aligncenter {
    text-align: center;
    margin: auto;
}

/* はみ出る画像は100% ------------------------------------------------------------------ */
.alignnone,
.alignright,
.aligncenter {
    max-width: 100%;
}
/* キャプション ------------------------------------------------------------------ */
.wp-caption-text {
    width: 100%;
    margin: auto;
    line-height: 1.2rem;
}
/* !Tools ------------------------------------------------------------------- */
.clear {
    clear: both;
}
.block {
    display: block;
}
.hide {
    display: none;
}
.bgN {
    background: none !important;
}
.tdU {
    text-decoration: underline;
}
.tdN {
    text-decoration: none;
}
.atode {
    border: 2px solid #96c;
    padding: 10px;
    text-align: center;
    background-color: #f9f;
    font-family: "ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
    font-size: 30px;
    color: #fff;
}

/* !Format ------------------------------------------------------------------ */
a.link {
    display: inline-block;
    color: #ed6d0f;
    background: #fff;
    border: 2px solid #ed6d0f;
    padding: 0.6em 2em;
    transition: 0.6s;
}
a.link i.fas,
a.link i.fab,
a.link i.far {
    display: inline-block;
    margin-right: 1.2em;
}
a.link:hover {
    color: #fff;
    background: #ed6d0f;
}
a.link:hover i.fas,
a.link:hover i.fab,
a.link:hover i.far {
    margin-right: 1.2em;
}

.fcRed {
    color: #f44138;
}
.fcGreen {
    color: #005946;
}
.fcBeige {
    color: #6c613c;
}
.fcBlack {
    color: #111;
}

br.pcNon {
    display: none;
}
br.pctbNon {
    display: none;
}
br.spin {
    display: none;
}

@media screen and (max-width: 1039px) {
    br.pcNon {
        display: inherit;
    }

    a.link:hover {
        color: #ed6d0f;
        background: #fff;
    }
}
@media screen and (max-width: 767px) {
    br.pctbNon {
        display: inherit;
    }
    br.sp {
        display: none;
    }
    br.spin {
        display: inherit;
    }

    a.link {
        padding: 12px 20px;
    }
    a.link:hover {
        padding: 12px 20px;
    }
}

/* !Margin ------------------------------------------------------------------ */
.mBtm00 {
    margin-bottom: 0 !important;
}
.mBtm10 {
    margin-bottom: 10px !important;
}
.mBtm15 {
    margin-bottom: 15px !important;
}
.mBtm20 {
    margin-bottom: 20px !important;
}
.mBtm30 {
    margin-bottom: 30px !important;
}
.mBtm40 {
    margin-bottom: 40px !important;
}
.mBtm50 {
    margin-bottom: 50px !important;
}
.mBtm60 {
    margin-bottom: 60px !important;
}
.mBtm70 {
    margin-bottom: 70px !important;
}
.mBtm80 {
    margin-bottom: 80px !important;
}
.mBtm90 {
    margin-bottom: 90px !important;
}
.mBtm100 {
    margin-bottom: 100px !important;
}

@media screen and (max-width: 1039px) {
    .mBtm00 {
        margin-bottom: 0 !important;
    }
    .mBtm10 {
        margin-bottom: 10px !important;
    }
    .mBtm15 {
        margin-bottom: 15px !important;
    }
    .mBtm20 {
        margin-bottom: 20px !important;
    }
    .mBtm30 {
        margin-bottom: 30px !important;
    }
    .mBtm40 {
        margin-bottom: 40px !important;
    }
    .mBtm50 {
        margin-bottom: 50px !important;
    }
    .mBtm60 {
        margin-bottom: 50px !important;
    }
    .mBtm70 {
        margin-bottom: 60px !important;
    }
    .mBtm80 {
        margin-bottom: 70px !important;
    }
    .mBtm90 {
        margin-bottom: 70px !important;
    }
    .mBtm100 {
        margin-bottom: 80px !important;
    }
}

@media screen and (max-width: 767px) {
    .mBtm00 {
        margin-bottom: 0 !important;
    }
    .mBtm10 {
        margin-bottom: 10px !important;
    }
    .mBtm15 {
        margin-bottom: 15px !important;
    }
    .mBtm20 {
        margin-bottom: 20px !important;
    }
    .mBtm30 {
        margin-bottom: 30px !important;
    }
    .mBtm40 {
        margin-bottom: 30px !important;
    }
    .mBtm50 {
        margin-bottom: 40px !important;
    }
    .mBtm60 {
        margin-bottom: 50px !important;
    }
    .mBtm70 {
        margin-bottom: 60px !important;
    }
    .mBtm80 {
        margin-bottom: 60px !important;
    }
    .mBtm90 {
        margin-bottom: 70px !important;
    }
    .mBtm100 {
        margin-bottom: 70px !important;
    }
}

.mt00 {
    margin-top: 0 !important;
}
.mt05 {
    margin-top: 5px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt12 {
    margin-top: 12px !important;
}
.mt15 {
    margin-top: 15px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mt25 {
    margin-top: 25px !important;
}
.mt30 {
    margin-top: 30px !important;
}
.mt35 {
    margin-top: 35px !important;
}
.mt40 {
    margin-top: 40px !important;
}
.mt45 {
    margin-top: 45px !important;
}
.mt50 {
    margin-top: 50px !important;
}
.mr00 {
    margin-right: 0 !important;
}
.mr05 {
    margin-right: 5px !important;
}
.mr10 {
    margin-right: 10px !important;
}
.mr12 {
    margin-right: 12px !important;
}
.mr15 {
    margin-right: 15px !important;
}
.mr20 {
    margin-right: 20px !important;
}
.mr25 {
    margin-right: 25px !important;
}
.mr30 {
    margin-right: 30px !important;
}
.mr35 {
    margin-right: 35px !important;
}
.mr40 {
    margin-right: 40px !important;
}
.mr45 {
    margin-right: 45px !important;
}
.mr50 {
    margin-right: 50px !important;
}
.mb00 {
    margin-bottom: 0 !important;
}
.mb05 {
    margin-bottom: 5px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb12 {
    margin-bottom: 12px !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb25 {
    margin-bottom: 25px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb35 {
    margin-bottom: 35px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb45 {
    margin-bottom: 45px !important;
}
.mb50 {
    margin-bottom: 50px !important;
}
.mb60 {
    margin-bottom: 60px !important;
}
.mb70 {
    margin-bottom: 70px !important;
}
.mb80 {
    margin-bottom: 80px !important;
}
.ml00 {
    margin-left: 0 !important;
}
.ml05 {
    margin-left: 5px !important;
}
.ml10 {
    margin-left: 10px !important;
}
.ml12 {
    margin-left: 12px !important;
}
.ml15 {
    margin-left: 15px !important;
}
.ml20 {
    margin-left: 20px !important;
}
.ml25 {
    margin-left: 25px !important;
}
.ml30 {
    margin-left: 30px !important;
}
.ml35 {
    margin-left: 35px !important;
}
.ml40 {
    margin-left: 40px !important;
}
.ml45 {
    margin-left: 45px !important;
}
.ml50 {
    margin-left: 50px !important;
}

/* !Padding  ---------------------------------------------------------------- */
.pt00 {
    padding-top: 0 !important;
}
.pt05 {
    padding-top: 5px !important;
}
.pt10 {
    padding-top: 10px !important;
}
.pt12 {
    padding-top: 12px !important;
}
.pt15 {
    padding-top: 15px !important;
}
.pt20 {
    padding-top: 20px !important;
}
.pt25 {
    padding-top: 25px !important;
}
.pt30 {
    padding-top: 30px !important;
}
.pt35 {
    padding-top: 35px !important;
}
.pt40 {
    padding-top: 40px !important;
}
.pt45 {
    padding-top: 45px !important;
}
.pt50 {
    padding-top: 50px !important;
}
.pr00 {
    padding-right: 0 !important;
}
.pr05 {
    padding-right: 5px !important;
}
.pr10 {
    padding-right: 10px !important;
}
.pr12 {
    padding-right: 12px !important;
}
.pr15 {
    padding-right: 15px !important;
}
.pr20 {
    padding-right: 20px !important;
}
.pr25 {
    padding-right: 25px !important;
}
.pr30 {
    padding-right: 30px !important;
}
.pr35 {
    padding-right: 35px !important;
}
.pr40 {
    padding-right: 40px !important;
}
.pr45 {
    padding-right: 45px !important;
}
.pr50 {
    padding-right: 50px !important;
}
.pb00 {
    padding-bottom: 0 !important;
}
.pb05 {
    padding-bottom: 5px !important;
}
.pb10 {
    padding-bottom: 10px !important;
}
.pb12 {
    padding-bottom: 12px !important;
}
.pb15 {
    padding-bottom: 15px !important;
}
.pb20 {
    padding-bottom: 20px !important;
}
.pb25 {
    padding-bottom: 25px !important;
}
.pb30 {
    padding-bottom: 30px !important;
}
.pb35 {
    padding-bottom: 35px !important;
}
.pb40 {
    padding-bottom: 40px !important;
}
.pb45 {
    padding-bottom: 45px !important;
}
.pb50 {
    padding-bottom: 50px !important;
}
.pl00 {
    padding-left: 0 !important;
}
.pl05 {
    padding-left: 5px !important;
}
.pl10 {
    padding-left: 10px !important;
}
.pl12 {
    padding-left: 12px !important;
}
.pl15 {
    padding-left: 15px !important;
}
.pl20 {
    padding-left: 20px !important;
}
.pl25 {
    padding-left: 25px !important;
}
.pl30 {
    padding-left: 30px !important;
}
.pl35 {
    padding-left: 35px !important;
}
.pl40 {
    padding-left: 40px !important;
}
.pl45 {
    padding-left: 45px !important;
}
.pl50 {
    padding-left: 50px !important;
}

/* PHASE2 version-up  ---------------------------------------------------------------- */

.kscauc_box {
    padding: 35px;
    background: #fff;
    border-top: 3px solid #ca0e25;
    margin-top: 35px;
}

.kscauc_logo_box {
    text-align: center;
    margin-bottom: 10px;
}

/* reCAPTCHAマークを非表示に */
.grecaptcha-badge {
    visibility: hidden;
}
.nav-links {
    text-align: center;
}
a.page-numbers {
    padding: 5px;
}
a.page-numbers:hover {
    text-decoration: underline;
    color: #ed6d0f;
}

/* ページングまわり */
.nav-links span.current {
    color: #fff;
    background: #ed6d0f;
}
.nav-links span.current,
.nav-links a {
    margin: 4px 2px;
    padding: 8px 16px;
    border: 1px solid #e6e6e6;
    background: #fff;
    font-weight: bold;
    color: #ed6d0f;
    text-decoration: none;
    text-align: center;
    transition: all 0.6s ease;
    display: inline-block;
}
.nav-links span.dots {
    color: #ed6d0f;
}
.nav-links a:hover,
.nav-links span.current {
    color: #fff;
    background: #ed6d0f;
}

/* SNSシェア周り */
.content-frame {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.content-frame .left,
.content-frame .right {
    display: inline-block;
}
.content-frame .right ul {
    font-size: 0;
}
.content-frame .right li {
    display: inline-block;
    vertical-align: top;
    list-style: none;
    font-weight: 600;
    font-size: 14px;
    padding-right: 2px;
    line-height: 1em;
}
.content-frame .right li .sns-mail {
    background: #e6e6e6;
    padding: 4px 8px;
    border-radius: 10px;
    line-height: 1em;
    height: 20px;
    text-decoration: none;
    display: inline-block;
}
.content-frame .right li a:hover .sns-mail {
    color: #000;
}
.content-frame .right li .sns-mail img {
    height: 12px;
    padding: 0 4px;
}
.content-frame .right li .fb_iframe_widget > span {
    vertical-align: baseline !important;
}
.content-frame .right li .tw-mail {
    background: #e6e6e6;
    padding: 4px 8px;
    border-radius: 10px;
    line-height: 1em;
    height: 20px;
    text-decoration: none;
    display: inline-block;
}
.content-frame .right li a:hover .tw-mail {
    color: #000;
}
.content-frame .right li .tw-mail img {
    height: 12px;
    padding: 0 4px;
}
.content-frame .right li .fb_iframe_widget > span {
    vertical-align: baseline !important;
}

/*お問い合わせフォーム*/

.contact_cat .wpcf7-list-item {
    border: none;
    margin: 0 1em 0 0 !important;
}

.contact_cat .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 0 0.5em;
    position: relative;
    margin-bottom: 0.4em;
    padding: 0.5em 0.7em;
    border: 1px solid #ed6c0e;
    border-radius: 3px;
    background-color: #ed6c0e26;
    cursor: pointer;
}

.contact_cat label input[type="radio"] {
    display: none;
}
.contact_cat label::before {
    border-radius: 50%;
    content: "";

    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.contact_cat label input[type="radio"]:checked {
    background-color: #ed6c0e;
    accent-color: #ed6c0e;
    color: #fff;
}

.contact_cat label input:checked + span::after {
    border-radius: 50%;
    content: "";

    position: absolute;
    top: 50%;
    left: calc(8px + 0.7em);
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #ed6c0e;
}

.contact_cat .wpcf7 .wpcf7-submit:disabled {
    background-color: #a0a087;
}

.contact_cat .wpcf7-list-item.checked label {
    background-color: #ed6c0e;
    color: #fff;
}

.category_list {
    text-align: right;
    padding: 0 0 10px;
}
.category_list .category_ttl {
    display: inline;
}
select.wpcf7-form-control.wpcf7-select {
    font-size: 1.05em;
}
@media screen and (max-width: 767px) {
    .category_list select {
        display: inline-block;
    }
}

.tbl-r05 {
    width: 90%;
    margin: auto;
}
.tbl-r05 th {
    background: #ed6d0f;
    border: solid 1px #ccc;
    font-weight: bold;
    color: #fff;
    padding: 10px;
}
.tbl-r05 td {
    border: solid 1px #ccc;
    padding: 0.5rem;
    text-align: right;
}
.tbl-r05 td:first-child {
    background: #fbf5f5;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 770px) {
    .tbl-r05 .thead {
        display: none;
    }
    .tbl-r05 td {
        display: block;
        text-align: right;
        border-bottom: none;
        padding: 0 0.5rem 0 0;
    }
    .tbl-r05 td:first-child {
        background: #ed6d0f;
        color: #fff;
        font-weight: bold;
        text-align: center;
    }
    .tbl-r05 td:last-child {
        border: solid 1px #ccc;
    }
    .tbl-r05 td:before {
        content: attr(data-label);
        float: left;
        width: 50%;
        font-weight: bold;
        text-align: center;
        background: #fbf5f5;
        border-right: solid 1px #ccc;
    }
}
.pagebreak-links {
    margin: auto;
    text-align: center;
    font-size: 20px;
    margin: 20px;
}
.pagebreak-links > span,
.pagebreak-links > a {
    border: 1px solid #e6e6e6;
    margin: 4px 2px;
    padding: 8px 16px;
    background: #eb6c0d;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 2;
    display: inline-block;
}
.pagebreak-links > a,
.pagebreak-links > a:hover {
    color: #eb6c0d;
    text-decoration: none;
    background: #fff;
}
.pagebreak-links > a:hover {
    background: #efefef;
}

/*記事内もっと見る、2ページ目を見る*/
.columnArticle div.article a.readmore {
    display: table;
    position: relative;
    height: 60px;
    background: #fff;
    font-family: "Lato", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
    color: #ed6d0f;
    border: 2px solid #ed6d0f;
    letter-spacing: 0.08em;
    transition: 0.6s;
    z-index: 1;
    padding: 0 2em;
    margin: 0 auto;
    text-decoration: none;
}
.columnArticle div.article a.readmore span,
.columnArticle div.article a.readmore span.link-title {
    color: #ed6d0f;
    position: relative;
    z-index: 2;
    transition: 0.3s;
    text-decoration: underline;
}
.columnArticle div.article a.readmore span.fixed-label {
    color: #a0a087;
    margin-right: 0.5em;
    text-decoration: none;
}
.columnArticle div.article a.readmore:hover span {
    color: #fff;
}
.columnArticle div.article a.readmore::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ed6d0f;
    content: "";
    opacity: 1;
    -webkit-transition:
        width 0.35s,
        opacity 0.35s,
        -webkit-transform 0.35s;
    -moz-transition:
        width 0.35s,
        opacity 0.35s,
        -moz-transform 0.35s;
    transition:
        width 0.35s,
        opacity 0.35s,
        transform 0.35s;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    z-index: 0;
}
.columnArticle div.article a.readmore:hover::before {
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}

/*目次*/

.columnArticle div.article .toc-005 {
    border-radius: 3px;
    background-color: #f2f2f2;
    margin: 0 auto 3em;
    width: 80%;
}

.columnArticle div.article .toc-005 div {
    align-items: center;
    margin: 0;
    padding: 0.5em 1em;
    background-color: #666;
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
}

.columnArticle div.article .toc-005 ol {
    list-style-type: none;
    margin: 0;
    overflow: hidden;
}

.columnArticle div.article .toc-005 > ol {
    padding: 1em 1em 1em 1.5em;
    border: 1px solid #ddd;
}

.columnArticle div.article .toc-005 ol ol {
    margin-top: 5px;
    padding-left: 1.1em;
}

.columnArticle div.article .toc-005 li {
    padding: 0.2em 1em;
}
.columnArticle div.article .toc-005 li:before {
    top: 1.1em;
}
.columnArticle div.article .toc-005 ol ol li {
    font-weight: 500;
    font-size: 0.9em;
}
.columnArticle div.article .add_mod {
    position: relative;
    /* background-color: #ededed; */
    padding: 2em 2em 1em;
    border-radius: 4px;
    border: 2px solid #a0a087;
    margin: 2em 0 3em;
}
.columnArticle div.article .add_mod_ttl {
    font-weight: 700;
    font-size: 1.1em;
    background: #fff;
    padding: 0 1em;
    position: absolute;
    top: -1em;
    left: 1em;
    line-height: 2;
}
.columnArticle div.article .add_mod p {
    margin-bottom: 1em;
}
