@charset 'UTF-8'; /* PC */
/**
 * ViewportScale v0.2.1
 * Copyright (c) 2018 Kite
 * MIT License
 */
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
    border: 0;
    /* font: inherit; */
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

li, dd {
    list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
    display: block;
}

img {
    border: none;
    vertical-align: bottom;
}

a {
    /* cursor: pointer; */
    text-decoration: none;
}

html {
    font-size: 62.5%;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    position: relative;
    color: #000000;
    /* font-family: 'source-han-sans-japanese','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif; */
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    background: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    overflow-wrap: break-word;
}

p {
    word-wrap: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin: 0 0 20px;
}

a, a:hover {
    text-decoration: none;
    color: #000000;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

a:hover {
    opacity: 0.6;
}

[id] {
    scroll-margin-top: 100px;
}

.left, .fl {
    float: left;
}

.right, .fr {
    float: right;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1; }

.hv:hover {
    opacity: 0.6;
}

/*
.font-min {
    font-family: ten-mincho, serif;
    font-weight: 400;
    font-style: normal;
}
*/
.sp {
    display: none;
}

.tab {
    display: none;
}

.pc {
    display: block;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 26.25%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.txt-center {
    text-align: center;
}

.scroll::-webkit-scrollbar {
    width: 8px;
}

.scroll::-webkit-scrollbar-thumb {
    background: #f8c384;
    border-radius: 10px;
}

.scroll::-webkit-scrollbar-track-piece:start {
    background: #ffead2;
}

.scroll::-webkit-scrollbar-track-piece:end {
    background: #fff;
}

/*============================
COMMON
============================*/
img {
    max-width: 100%;
    height: auto;
}

.hide {
    display: none;
}

.text_center {
    text-align: center;
}

.has-text-align-center {
    text-align: center;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.hover-underline {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 4px;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    transform: scaleX(0);
    transform-origin: center top;
    transition: transform 0.3s;
}

.hover-underline.right::after {
    transform-origin: right top;
}

.hover-underline:hover::after {
    transform: scaleX(1);
}

/*============================
body
============================*/
body {
    background-image: url(../img/bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*============================
header
============================*/
.header {
    /* display: none; */
    position: fixed;
    width: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 99;
    padding: 20px 3%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s ease-out;
}

.header.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header .container {
    max-width: 100%;
}

.header_logo__wrap {
}

.header_logo__wrap a {
    display: block;
}

.header_logo {
    width: 200px;
}

.header_logo img {
}

.header_navi__wrap {
    width: calc(100% - 340px);
    justify-content: flex-end;
}

.header_navi {
    width: 100%;
    align-items: center;
}

.header_navi__list {
    width: calc(100% - 240px);
    justify-content: flex-end;
}

.header__navi__item {
    margin-left: 3%;
}

.header__navi__link {
    font-size: 16px;
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    padding-top: 4px;
}

.header__navi__link:hover {
    color: #FFF;
}

.header_navi__contact {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    background: #FFF;
    width: 200px;
    font-size: 16px;
    padding: 10px 30px 9px;
    text-align: center;
    display: block;
}

.header_spnavi__wrap {
    align-items: center;
    display: none;
}

.header_spnavi__contact {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    background-color: #FFF;
    width: 174px;
    font-size: 16px;
    padding: 10px 30px 9px 60px;
    text-align: left;
    display: block;
    margin-right: 30px;
    background-image: url(../img/icon_mail.png);
    background-size: auto 20px;
    background-position: center left 15px;
    background-repeat: no-repeat;
}

.header_spnavi__contact span.pc {
}

.header__spmenu {
    width: 60px;
    height: 60px;
    background: none;
    position: relative;
}

.header__spmenu span {
    position: absolute;
    width: 50px;
    height: 2px;
    background: #FFF;
    left: 0;
    right: 0;
    margin: auto;
}

.header__spmenu span:nth-child(1) {
    top: 22px;
}

.header__spmenu span:nth-child(2) {
    bottom: 22px;
}

.header__spmenu.active span:nth-child(1) {
  animation: line-top 0.5s forwards cubic-bezier(0.65, 0, 0.35, 1);
}

.header__spmenu.active span:nth-child(2) {
  animation: line-bottom 0.5s forwards cubic-bezier(0.65, 0, 0.35, 1);
}

.header__spmenu:not(.active) span:nth-child(1) {
  animation: line-top-rev 0.5s forwards cubic-bezier(0.65, 0, 0.35, 1);
}
.header__spmenu:not(.active) span:nth-child(2) {
  animation: line-bottom-rev 0.5s forwards cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes line-top {
  0%   { top: 22px; transform: rotate(0); }
  50%  { top: 29px; transform: rotate(0); } /* 一度中央に集まる */
  100% { top: 29px; transform: rotate(30deg); } /* その場で開く */
}

@keyframes line-bottom {
  0%   { bottom: 22px; transform: rotate(0); }
  50%  { bottom: 29px; transform: rotate(0); } /* 一度中央に集まる */
  100% { bottom: 29px; transform: rotate(-30deg); } /* その場で開く */
}

@keyframes line-top-rev {
  0%   { top: 29px; transform: rotate(30deg); }
  50%  { top: 29px; transform: rotate(0); }
  100% { top: 22px; transform: rotate(0); }
}
@keyframes line-bottom-rev {
  0%   { bottom: 29px; transform: rotate(-30deg); }
  50%  { bottom: 29px; transform: rotate(0); }
  100% { bottom: 22px; transform: rotate(0); }
}

/*============================
main
============================*/
.main {
}

.article {
}

.mv {
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    padding: 5% 3%;
}

.mv .container {
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
}

.mv_logobox {
}

.mv_logobox img {
}

.mv_contentbox {
}

.mv_text {
    font-size: 50px;
    font-weight: bold;
    color: #FFF;
    text-align: right;
    line-height: 1.4;
    margin: 0 0 50px;
}

.mv_menu {
    justify-content: flex-end;
}

.mv_menu__item {
    margin-left: 3%;
}

.mv_menu__item a {
    font-size: 20px;
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.section {
    padding: 120px 3% 120px;
}

.section.bg_white {
    background: #FFF;
}

.section.bg_clearblack {
    background-color: rgba(0,0,0,0.7);
}

.white_wraper {
    margin: 0 auto;
    max-width: calc(1000px + 60px);
    padding: 70px 60px 60px;
    box-sizing: content-box;
    background: rgba(255,255,255,0.8);
}

.top_ttl {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    font-size: 40px;
    padding: 0 0 10px;
    border-bottom: 1px solid;
    line-height: 1;
    margin: 0 0 50px;
    position: relative;
}

.top_ttl::before,.top_ttl::after {
    content: '';
    height: 1px;
    position: absolute;
    background: #000;
    left: 0;
}

.top_ttl::before {
    width: 100px;
    bottom: -11px;
}

.top_ttl::after {
    width: 50px;
    bottom: -21px;
}

.btn01 {
    font-family: 'Montserrat', sans-serif;
    display: block;
    padding: 11px 40px 10px;
    background: #000;
    color: #FFF;
    letter-spacing: 0.05em;
    font-size: 20px;
    margin: 0 0 20px;
    max-width: 300px;
    text-align: center;
}

.btn01:hover {
    color: #FFF;
}

.btn01.white {
    background: #FFF;
    color: #000;
    /* border: 1px solid; */
}

.btn01.white:hover {
    color: #000;
}

.liner-btn {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.liner-btn:hover {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

.liner-btn::before, .liner-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid #000;
    box-sizing: border-box;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.liner-btn::before {
    top: -2px;
    left: -2px;
    border-bottom: none;
    border-right: none;
}

.liner-btn::after {
    bottom: -2px;
    right: -2px;
    border-top: none;
    border-left: none;
}

.liner-btn:hover::before {
    opacity: 1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    transition: opacity 0s linear 0.2s, width 0.15s linear 0.2s, height 0.15s linear 0.35s;
}

.liner-btn:hover::after {
    opacity: 1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    transition: opacity 0s linear 0.2s, width 0.15s linear 0.2s, height 0.15s linear 0.35s;
}

.liner-btn_white {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.liner-btn_white:hover {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.liner-btn_white::before, .liner-btn_white::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid #fff;
    box-sizing: border-box;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
}

.liner-btn_white::before {
    top: -2px;
    left: -2px;
    border-bottom: none;
    border-right: none;
}

.liner-btn_white::after {
    bottom: -2px;
    right: -2px;
    border-top: none;
    border-left: none;
}

.liner-btn_white:hover::before {
    opacity: 1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    transition: opacity 0s linear 0.2s, width 0.15s linear 0.2s, height 0.15s linear 0.35s;
}

.liner-btn_white:hover::after {
    opacity: 1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    transition: opacity 0s linear 0.2s, width 0.15s linear 0.2s, height 0.15s linear 0.35s;
}

.top_company {
}

.top_company .container {
}

.top_company .top_ttl {
}

.top_company p {
    margin: 0 0 40px;
}

.top_company__item {
    align-items: center;
}

.top_company__image {
    width: calc(100% - 400px);
    padding: 30% 0 0;
    background-position: center center;
    background-size: cover;
}

.top_company__btnwrap {
    width: 360px;
}

.top_company__btnwrap .btn01 {
}

.top_company__btnwrap .btn01:last-child {
    margin: 0;
}

.top_business {
}

.top_business .container {
}

.top_business .top_ttl {
}

.top_business p {
    margin: 0 0 40px;
}

.top_business__list {
    margin: 0 0 40px;
}

.top_business__list li {
    width: 48%;
    font-size: 18px;
    margin: 0 0 10px;
    padding: 0 10px 10px;
    border-bottom: 1px solid;
}

.top_business .btn01 {
}

.top_works {
    padding: 120px 3% 60px;
}

.top_works .container {
}

.top_works .top_ttl {
}

.top_works__list {
    margin: 0 0 50px;
}

.top_works__list li {
    width: 23%;
}

.top_works__list a {
}

.top_works__image {
    padding: 75% 0 0;
    background-position: center;
    background-size: cover;
}

.top_works__list h3 {
    text-align: center;
    margin: 16px 0 0;
}

.top_works .btn01 {
}

.top_information {
    padding: 60px 3% 120px;
}

.top_information .container {
}

.top_information .top_ttl {
}

.top_information__list {
    margin: 0 0 50px;
}

.top_information__list li {
    margin: 0 0 20px;
}

.top_information__list a {
}


.top_information__date {
    font-size: 20px;
    line-height: 1;
    margin-right: 20px;
    position: relative;
    top: 1px;
    width: 120px;
    display: inline-block;
}

.top_information__title {
    width: calc(100% - 140px);
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*============================
aside
============================*/
.aside {
    background-color: rgba(0, 0, 0, 0.7);
}

.aside_contact {
    padding: 120px 3% 60px;
}

.aside_contact .container {
}

.aside_contact .top_ttl {
    color: #FFF;
}

.aside_contact .top_ttl::before,.aside_contact .top_ttl::after {
    background: #FFF;
}

.aside_contact__item {
    align-items: center;
}

.aside_contact__map {
    width: calc(100% - 420px);
}

.aside_contact__map iframe {
    width: 100%;
    height: 300px;
    vertical-align: bottom;
}

.aside_contact__info {
    width: 380px;
}

.aside_contact__info h3 {
    font-size: 26px;
    color: #FFF;
    margin: 0 0 20px;
    line-height: 1;
}

.aside_contact__info p {
    font-size: 18px;
    color: #FFF;
    margin: 0 0 40px;
}

.aside_contact__info p a {
    color: #FFF;
    text-decoration: none;
}

.aside_contact__info .btn01 {
    margin: 0;
}

/*============================
footer
============================*/
.footer {
    background-color: rgba(0,0,0,0.7);
    padding: 60px 3% 120px;
}

.footer .container {
    align-items: flex-end;
}

.footer_logo {
    width: 338px;
}

.footer_logo a {
}

.footer_logo img {
}

.footer_navi__wrap {
    width: calc(100% - 422px);
}

.footer_navi {
}

.footer_navi__list {
    justify-content: flex-end;
}

.footer_navi__list li {
    margin: 0 0 20px;
    width: 30%;
    text-align: right;
}

.footer_navi__list a {
    color: #FFF;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    font-size: 18px;
}

.copyright {
    margin: 30px 0 0;
    color: #FFF;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

/*============================
lower
============================*/
.lower_mv {
    padding: 170px 3% 80px;
    background-color: rgba(0, 0, 0, 0.7);
}

.lower_mv .container {
}

.lower_mv__title {
}

.lower_mv__title h1 {
    font-size: 36px;
    color: #FFF;
}

.breadcrumb__wrap {
    position: absolute;
    bottom: -60px;
    right: 0;
}

.breadcrumb__wrap .container {
}

.breadcrumbs {
    color: #FFF;
}

.breadcrumbs span {
    color: #FFF;
}

.breadcrumbs a {
    color: #FFF;
}

/*============================
privacy
============================*/
.privacy_read {
    margin: 0 0 60px;
}

.privacy_definitionlist {
    padding: 0 0 50px;
}

.privacy_definitionlist dt {
}

.privacy_subttl {
    font-size: 22px;
    padding: 6px 0 10px;
    border-bottom: 1px dashed;
    margin: 0 0 30px;
    position: relative;
}

.privacy_subttl::before {
    content: '';
    width: 30px;
    border-bottom: 1px dashed;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 22px;
}

.privacy_subttl::after {
    content: '';
    width: 50px;
    border-bottom: 1px dashed;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 10px;
}

.privacy_definitionlist dd {
}

.privacy_text {
}

.privacy_text {
}

.privacy_text .text_link {
}

.section_ol_list {
    counter-reset: my_section_ol_counter;
    padding-left: 0;
    margin: 0 0 20px;
}

.section_ol_list li {
    counter-increment: my_section_ol_counter;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
}

.section_ol_list li::before {
    content: counter(my_section_ol_counter) ".";
    position: absolute;
    left: 0;
}

.privacy_definitionlist .section_ol_list {
}

.privacy_definitionlist .section_ol_list li {
}

/*============================
single entry-contents
============================*/
.single_news__header {
    margin: 0 0 80px;
    border-bottom: 2px solid;
}

.single_news__header .single_news__ttl {
    margin: 0 auto;
    padding: 0 0 10px 0;
    position: relative;
    font-size: 28px;
}

.single_news__header .single_news__ttl::before {
    content: none;
}

.single_news__metadata {
    justify-content: flex-end;
    align-items: center;
    margin: 0 auto 10px;
}

.single_news__metadata .news_tag {
    margin: 0;
    padding: 5px 20px 6px;
    background: #000;
    color: #FFF;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.single_news__metadata .news_date {
    margin: 0;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    padding: 0px 20px 0 0;
    width: 115px;
}

.single_news__body {
    max-width: 900px;
    margin: 0 auto;
}

.sngle_news__footer {
    padding: 60px 0 0;
}

.sngle_news__footer .btn01 {
    margin: 0 auto;
}

.has-text-align-right {
    text-align: right;
}

.has-text-align-left {
    text-align: left;
}

.has-text-align-center {
    text-align: center;
}

.entry-contents h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.2rem;
    margin: 30px auto 30px;
    color: #000000;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    padding-left: 40px;
}

.entry-contents h2::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #000;
    position: absolute;
    transform: rotate(45deg);
    margin: auto;
    left: 5px;
    top: 5px;
}

.entry-contents h3 {
    font-size: 22px;
    font-weight: bold;
    margin: 30px auto 30px;
    letter-spacing: 0.1rem;
    padding: 0 0 6px;
    color: #000;
    border-bottom: 2px solid;
    position: relative;
}

.entry-contents .wp-block-column {
    /* text-align: center; */
    /* border: 2px solid #025daf; */
    margin: 0 0 10px;
    /* box-shadow: 0 0 10px #c3c3c3; */
    /* padding: 20px; */
}

.entry-contents .wp-block-column p {
    margin: 0;
}

.entry-contents h4 {
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0 20px;
    line-height: 1.4;
    position: relative;
    padding-left: 32px;
}

.entry-contents h4::before {
    content: '';
    width: 16px;
    height: 16px;
    background: #000;
    position: absolute;
    margin: auto;
    left: 4px;
    top: 4px;
}

.entry-contents h5 {
    color: #000;
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0 20px;
    line-height: 1.4;
    border-bottom: 1px solid;
    padding: 0 0 6px;
}

.entry-contents p {
    margin: 0px 0 30px;
}

.entry-contents p small {
    font-size: 12px;
}

.entry-contents figure {
    margin: 40px auto;
}

.entry-contents ul {
    padding: 0 0 0 14px;
    margin: 30px 0;
}

.entry-contents li {
    font-size: 16px;
    margin: 0 0 3px;
}

.entry-contents ul li {
    list-style: square;
    position: relative;
    right: -8px;
}

.entry-contents ol li {
    list-style: auto;
}

.entry-contents ol {
    padding: 0 0 0 20px;
    margin: 30px 0;
}

.entry-contents .table {
}

.entry-contents table {
    width: 100%;
    margin: 30px 0;
    border: 1px solid;
}

.entry-contents tr:first-child th, .entry-contents tr:first-child td {
}

.entry-contents th {
    border: 1px solid #000;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
}

.entry-contents td {
    border: 1px solid #000;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 2;
    min-width: 180px;
}

.entry-contents .name-position {
    margin: 0;
    font-size: 12px;
}

.entry-contents .name-jp {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
}

.entry-contents .name-en {
    margin: 0;
    font-size: 12px;
}

.entry-contents .wp-block-media-text__media {
}

.entry-contents .wp-block-media-text__media img {
    border-radius: 4px;
    margin: 0 0 20px;
    border: 1px solid #e5e5e5;
}

.entry-contents .wp-block-media-text {
    margin: 0 0 40px;
    padding: 20px 10px;
    border-bottom: 1px solid #ddd;
    /* background: #f7f7f7; */
}

.entry-contents .wp-block-image {
    padding: 0 0px;
    margin: 0 0 40px;
}

.font-weight-bold {
    font-weight: bold;
}

/* wp-pagenavi */
.wp-pagenavi {
    margin: 40px 0 0;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.wp-pagenavi .previouspostslink {
    padding: 6px 10px 5px;
    font-size: 18px;
    margin: 0 10px;
    text-align: center;
}

.wp-pagenavi .current {
    padding: 6px 16px 5px;
    font-size: 18px;
    margin: 0 10px;
    color: #FFF;
    background: #000;
    text-align: center;
}

.wp-pagenavi .extend {
    padding: 6px 10px 5px;
    font-size: 18px;
    margin: 0 10px;
    text-align: center;
}

.wp-pagenavi .page.smaller {
    padding: 6px 10px 5px;
    font-size: 18px;
    margin: 0 10px;
    text-align: center;
}

.wp-pagenavi .page.larger {
    padding: 6px 10px 5px;
    font-size: 18px;
    margin: 0 10px;
    text-align: center;
}

.wp-pagenavi .nextpostslink {
    padding: 6px 10px 5px;
    font-size: 18px;
    margin: 0 10px;
    text-align: center;
}

.news_list {
    margin: 0 auto;
    max-width: 800px;
}

.news_item {
    margin: 20px auto 10px;
    padding: 0 3% 18px;
    border-bottom: 1px solid #000;
}

.news_item a {
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.news_date {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    width: 100px;
}

.news_tag {
    display: inline-block;
    padding: 2px 8px 3px;
    text-align: center;
    width: 100px;
    font-size: 14px;
    background: #000;
    margin: 0 16px;
    color: #FFF;
    position: relative;
    top: -1px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
}

.news_title {
    display: inline-block;
    width: calc(100% - 240px);
}

.thanks_text {
    text-align: center;
}

/*============================
company
============================*/
.lower_section__middle {
    padding: 60px 3% 60px;
}

.lower_section__top {
    padding: 120px 3% 60px;
}

.lower_section__top.lower_company {
}

.lower_company .container {
}

.lower_company .lower_ttl {
}

.lower_section__bottom {
    padding: 60px 3% 120px;
}

.lower_section__bottom.lower_company {
}

.lower_company .section_table01 {
    margin: 90px auto 0;
}

.lower_company .section_table01 tbody {
}

.lower_company .section_table01 tr {
}

.lower_company .section_table01 th {
}

.lower_company .section_table01 td {
}

.lower_ttl {
    font-size: 30px;
    padding: 0 0 10px;
    border-bottom: 1px solid;
    margin: 0 0 60px;
    position: relative;
}

.lower_ttl::before,.lower_ttl::after {
    content: '';
    height: 1px;
    position: absolute;
    background: #000;
    left: 0;
}

.lower_ttl::before {
    width: 100px;
    bottom: -11px;
}

.lower_ttl::after {
    width: 50px;
    bottom: -21px;
}

.lower_ttl.centering {
    text-align: center;
}

.lower_ttl.centering::before,.lower_ttl.centering::after {
    margin: auto;
    right: 0;
}

.lower_ttl.centering::before {
}

.lower_ttl.centering::after {
}

.lower_subttl {
    font-size: 24px;
    line-height: 1.6;
    padding: 0 0 12px;
    margin: 0 0 30px;
    border-bottom: 1px dashed #000;
}

.lower_defaultlist {
    padding: 0 0 0 14px;
}

.lower_defaultlist li {
    margin: 0 0 3px;
    list-style: square;
    position: relative;
    right: -8px;
}

.company_item {
    align-items: flex-start;
}

.company_image {
    width: 38%;
}

.company_image img {
    display: block;
}

.company_message .name {
    margin: 20px 0 0;
    text-align: right;
    font-weight: bold;
}

.company_message .name span {
    font-size: 20px;
    display: inline;
    padding-left: 1.5rem;
}

.company_message {
    width: 58%;
}

.company_message .lower_subttl {
}

.company_message p {
}

.company_message .lower_defaultlist {
}

.company_message .lower_defaultlist li {
}

.section_table01 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid;
}

.section_table01 tbody {
}

.section_table01 tr {
}

.section_table01 th {
    text-align: left;
    width: 140px;
    padding: 20px;
    border-bottom: 1px solid #000000;
    color: #000;
}

.section_table01 td {
    width: calc(100% - 140px);
    padding: 20px;
    border-bottom: 1px solid #38761d;
}

/*============================
works
============================*/
.single_works {
}

.single_works .container {
}

.single_works .lower_ttl {
}

.works_tag {
    font-size: 16px;
    background: #000;
    color: #FFF;
    padding: 7px 20px 7px;
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    position: relative;
    top: -4px;
    display: inline-block;
    margin-right: 20px;
    text-align: center;
}

.single_works__item {
}

.single_works__image {
    width: 48%;
}

.single_works__information {
    width: 48%;
}

.single_works__data {
    margin: 0 0 40px;
}

.single_works__data:last-child {
    margin: 0 0 0;
}

.single_works__data dt {
    font-weight: bold;
    margin: 0 0 10px;
    border-bottom: 1px dashed #000;
    font-size: 20px;
    padding: 0 0 4px;
}

.single_works__data dd {
}

.archive_works {
}

.archive_works .container {
}

.archive_works__list {
}

.archive_works__list::before {
    content: '';
    display: block;
    width: 30%;
    order: 1;
}

.archive_works__list::after {
    content: '';
    display: block;
    width: 30%;
}

.archive_works__item {
    width: 31%;
    margin: 0 0 50px;
}

.archive_works__item a {
}

.archive_works__image {
    width: 100%;
    padding: 75% 0 0;
    margin: 0 0 20px;
}

.archive_works__item .news_tag {
    display: block;
    margin: 0;
}

.archive_works__item .news_title {
    margin: 10px 0 0;
    font-size: 18px;
}

.archive_works p {
}

/*============================
business
============================*/
.lower_business {
}

.lower_business .container {
}

.lower_business .lower_ttl.non_margin {
    margin: 0 0 0;
}

.lower_business p {
    margin: 0;
    text-align: center;
}

.lower_business__list {
    margin: 30px 0;
    padding: 40px;
    background: #dddddd;
}

.lower_business__list li {
    text-align: center;
    margin: 0 0 18px;
}

.lower_business__list li:last-child {
    margin: 0 0 0;
}

.lower_business__list li span {
    font-size: 20px;
    font-weight: bold;
    position: relative;
    line-height: 1.4;
    padding: 0 20px;
}

.lower_business__list li span::before,.lower_business__list li span::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #000;
    margin: auto;
    top: 4px;
    bottom: 0;
    position: absolute;
}

.lower_business__list li span::before {
    left: 0;
}

.lower_business__list li span::after {
    right: 0;
}

.business_item {
    margin: 60px 0 0;
}

.business_item__image {
    width: 48%;
}

.business_item__image img {
}

.business_item__content {
    width: 48%;
    padding: 10px 0 0;
}

.business_item__content .lower_subttl {
}

.business_item__content p {
    text-align: left;
}

.business_item.reverse {
}

.business_item.reverse .business_item__image {
    order: 2;
}

.business_item.reverse .business_item__content {
    order: 1;
}

.business_bnr__wrap {
    margin: 80px 0 0;
    padding: 30px;
    border: 1px dashed #000;
}

.business_bnr__ttl {
    text-align: center;
    margin: 0 0 30px;
    font-size: 24px;
}

.business_bnr__wrap p {
}

.business_bnr__wrap .btn01 {
    margin: 30px auto 0;
}

/*============================
partner
============================*/
.lower_partner {
}

.lower_partner .container {
}

.lower_partner .lower_ttl.centering {
}

.partner_image {
    text-align: center;
    margin: 0 0 20px;
}

.partner_image img {
}

.lower_partner p {
    margin: 0 0 0;
}

.lower_partner__item {
    margin: 50px 0 0;
}

.lower_partner__item:last-child {
}

.lower_partner__item .lower_subttl {
}

.lower_partner__item p {
}

.lower_partner__cmpnylist {
    margin: 60px 0 60px;
}

.lower_partner__cmpnylist::before {
    content: '';
    display: block;
    width: 31%;
    order: 1;
}

.lower_partner__cmpnylist::after {
    content: '';
    display: block;
    width: 31%;
}

.lower_partner__cmpnylist li {
    width: 31%;
    padding: 20px;
    border: 1px solid #ccc;
    align-items: center;
    margin: 0 0 40px;
}

.lower_partner__cmpnylist a {
    width: 100%;
    align-items: center;
    justify-content: center;
}

.lower_partner__cmpnylist img {
    max-height: 80px;
}

.lower_partner__frrlnclist {
    margin: 60px 0 0;
}

.lower_partner__frrlnclist::before {
    content: '';
    display: block;
    width: 22%;
    order: 1;
}

.lower_partner__frrlnclist::after {
    content: '';
    display: block;
    width: 22%;
}

.lower_partner__frrlnclist li {
    width: 22%;
    margin: 0 0 40px;
}

.lower_partner__frrlnclist a {
    display: block;
}

.lower_partner__frrlnclist .lower_partner__frrlncicon {
    padding: 100% 0 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.business_list__wrap {
    margin: 0 0 80px;
}

.business_list__wrap .lower_ttl {
    font-size: 26px;
    margin: 0 0 40px;
}

.business_list__wrap p {
    text-align: left;
}
