@charset "utf-8";
/*
Theme Name: 中央建設株式会社
*/
/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 102.4rem;
  --clip: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
  --mainColor: #002a40;
}
@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: var(--mainColor);
  height: 100%;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

.en {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.min {
  font-family: YakuHanMP, "Shippori Mincho","游明朝", "Yu Mincho", "YuMincho", 
               "Hiragino Mincho ProN", "Hiragino Mincho Pro", 
               "MS PMincho", serif;
  font-weight: 500;
  font-optical-sizing: auto;
  font-style: normal;
}


table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: var(--mainColor);
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
#main {
  overflow: hidden;
}
section {
  position: relative;
}
.container {
  max-width: calc(var(--inner) + 6rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}

@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}


/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: transform 0.3s 0.3s;
}
#h_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header.scroll #h_inner {
  /* background: transparent; */
}

#header.hidden {
  /* transform: translateY(-100%);
  transition: transform 0.3s ease-out; */
}
#gNav li {
  font-weight: 500;
}
.h_cta_btn a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  border-radius: 4rem;
  background-color: #e50012;
  position: relative;
}
.h_cta_btn a span {
  position: relative;
  z-index: 1;
  padding-left: 30px;
}

.h_cta_btn a span:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 15px;
  background: url(./img/ico-mail.svg) no-repeat center / contain;
}



@media only screen and ( max-width : 767px ) {
  #header {
    position: sticky;
    background: #fff;
    height: 55px;
  }
  #header #h_inner {
    padding: 0 15px;
    height: 100%;
  }
  #h_logo img {
    max-width: 205px;
    display: block;
  }
  #menu_btn {
    transition: .3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    right: 0;
    top: 0;
  }
  #menu_btn.active {
  }
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 98;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open {
    width: 100%;
    height: 100vh;
    opacity: 1;
  }
  #main {
    height: 100%;
    transition: all .5s;
  }
  .menu-trigger {
    vertical-align: middle;
    text-align: center;
    position: relative;
    width: 24px;
    height: 18px;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--mainColor);
    transition: all .5s;
  }
  #menu_btn.active .menu-trigger span {
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(3) {
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .menu-trigger span:nth-of-type(2) {
    top: 8px;
    left: auto;
    right: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  #gNav {
    height: 100%;
    overflow: auto;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    transition: all .2s;
    width: 262px;
    /* opacity: 0;
    visibility: hidden; */
    transform: translateX(262px);
    padding: 55px 0;
  }
  #gNav.open {
    transform: translateX(0);
    /* opacity: 1;
    visibility: visible; */
    display: flex;
    flex-direction: column;
    background: #fff;
  }
  #gNav .nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  #gNav .nav li {
    padding: 0 50px;
    border-bottom: 1px solid var(--mainColor);
  }
  #gNav .nav li a {
    position: relative;
    font-size: 13px;
    padding: 25px 0;
    display: block;
  }
  #gNav .nav li a .nav_en {
    display: block;
    font-size: 9px;
    opacity: 0.5;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  #gNav .nav li.h_cta_btn {
    margin-top: 10px;
    padding: 0;
  }
  #gNav .nav li.h_cta_btn a {
    width: 190px;
    height: 50px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #gNav li:nth-last-child(-n+3) {
    border-bottom: none;
  }
  #gNav .sp_nav .sp_nav_tel {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 19px;
    text-align: center;
  }
  #gNav .sp_nav .sp_nav_tel span {
    display: inline-block;
    position: relative;
    padding-left: 20px;
  }
  #gNav .sp_nav .sp_nav_tel span:before {
    content: "";
    width: 15px;
    height: 15px;
    background: url(./img/ico-tel.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
  #gNav .sp_nav .sp_nav_sns {
    display: flex;
  }
  #gNav .sp_nav .sp_nav_sns a {
    width: 20px;
    margin-right: 10px;
    padding: 0;
  }
  #gNav .sp_nav .sp_nav_sns a:last-child {
    margin-right: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  #header {
    position: fixed;
    margin: 0 6rem;
    top: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
    border-radius: 5rem;
    height: 5rem;
    padding: 0 0 0 2rem;
    width: calc(100% - 12rem);
  }
  header.hidden {
    /* transform: translateY(-9rem) !important; */
  }
  #h_logo img {
    width: 24.2rem;
  }
  #menu_btn,.overlay,.sp_nav,.nav_en {
    display: none;
  }
  #gNav .nav {
    display: flex;
    align-items: center;
  }
  #gNav li {
    margin-right: 1.8rem;
    font-size: 1.4rem;
    position: relative;
    padding-right: 1.8rem;
  }
  #gNav li:after {
    content: "";
    width: 1px;
    height: 1.4rem;
    background: var(--mainColor);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  #gNav li:last-child {
    margin-right: 0;
  }
  #gNav li.h_cta_btn {
    margin-right: 0;
    padding-right: 0;
  }
  #gNav li:nth-last-child(-n+3):after {
    content: none;
  }
  #gNav li:nth-last-child(3) {
    padding-right: 0;
    margin-right: 3rem;
  }
  .h_cta_btn a {
    width: 17.4rem;
    height: 5rem;
    border-radius: 0 5rem 5rem 0;
  }
  .h_cta_btn a span {
    padding-left: 3rem;
  }
  .h_cta_btn a span:before {
    width: 1.5rem;
    height: 1.5rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
}
.footer_logo .logo {
  margin-bottom: 2rem;
  display: block;
  max-width: 27rem;
}
.footer_logo .address {
  line-height: 1.64em;
}


#footer .f_tel {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 19px;
}
#footer .f_tel span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}
#footer .f_tel span:before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(./img/ico-tel.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.f_copy {
  color: #989898;
}


.footer_nav_inner li {
  font-weight: 500;
}
.footer_nav_inner li a {
  display: block;
  position: relative;
}
.footer_nav_inner li a .f_nav_en {
  display: block;
  opacity: 0.5;
  letter-spacing: .1em;
}
.footer_nav_inner li ul li {
  font-weight: 400;
}


@media only screen and ( max-width : 767px ) {
  #footer {
    padding: 3rem 0 0;
  }
  .footer_logo {
    padding-bottom: 3rem;
    border-bottom: 1px solid #8a9da7;
    margin-bottom: 3rem;
  }
  .footer_logo .address {
    font-size: 1.2rem;
    line-height: 2.2em;
    margin-bottom: 2.5rem;
  }
  .f_nav_list {
    width: 49%;
  }
  .f_nav_list:nth-child(2) {
    width: 44%;
  }
  .footer_nav_inner li {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }
  .footer_nav_inner li:last-child {
    margin-bottom: 0;
  }
  .footer_nav_inner li a .f_nav_en {
    font-size: 1rem;
    margin-bottom: .6rem;
  }
  .footer_nav_inner ul ul {
    margin-top: 2rem;
  }
  .footer_nav_inner li li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .footer_bottom {
    font-size: 1.1rem;
    text-align: center;
    border-top: 1px solid #8a9da7;
    padding: 1rem 0;
    margin-top: 3rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  #footer {
    padding: 7.5rem 0;
    font-size: 1.5rem;
  }
  #footer .container {
    max-width: calc(105rem + 6rem);
    position: relative;
  }
  .footer_logo,
  .f_copy {
    width: 27rem;
    margin-right: 6rem;
  }
  .footer_logo .address {
    font-size: 1.3rem;
  }
  .footer_nav {
    width: calc(100% - (27rem + 6rem));
  }
  .footer_nav_inner {
    margin-right: 5rem;
    flex: auto;
  }
  .footer_nav_inner:last-child {
    margin-right: 0;
  }
  .footer_nav_inner .f_nav_list {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
  .footer_nav_inner li {
    margin-bottom: 4rem;
  }
  .footer_nav_inner li li {
    margin-bottom: 1rem;
  }
  .footer_nav_inner li:last-child {
    margin-bottom: 0;
  }
  .footer_nav_inner li a .f_nav_en {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .footer_nav_inner li ul {
    font-size: 1.2rem;
    margin-top: 2.5rem;
  }
  .footer_nav_inner li ul li a {
    padding-left: 1.4em;
  }
  .footer_nav_inner li ul li a:before {
    content: "";
    width: .9em;
    height: 1px;
    background: var(--mainColor);
    position: absolute;
    top: .8em;
    left: 0;
  }
  #footer .f_tel {
    font-size: 1.9rem;
    margin-top: 3rem;
  }
  #footer .f_tel span {
    padding-left: 2rem;
  }
  #footer .f_tel span:before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .footer_bottom {
    font-size: 1.1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 1.5rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */
.bg,
.blog,
.single-post,
.category {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f6f3ed calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f6f3ed calc(100% - 1px));
  background-size: 1rem 1rem;
  background-repeat: repeat;
  background-position: center center;
}
.bg02 {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.1) calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.1) calc(100% - 1px));
  background-size: 1rem 1rem;
  background-repeat: repeat;
  background-position: center center;
  background-color: var(--mainColor);
}
.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  position: relative;
  border: 1px solid var(--mainColor);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.btn:after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(./img/arrow.png) no-repeat center / contain;
  position: absolute;
  right: 2rem;
}
.btn-white {
  background: #fff;
  color: var(--mainColor);
}
.btn-navy {
  background: var(--mainColor);
  color: #fff;
}
.btn-navy:after {
  background: url(./img/next.png) no-repeat center / contain;
}
.back_btn:after {
  right: auto;
  left: 2rem;
  transform: rotate(180deg);
}

.btn_center {
  margin: 0 auto;
}
.title_heading {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
.title_heading .title_en,
.page_title_heading .title_en {
  font-weight: 400;
  border: 1px solid var(--mainColor);
  padding: .2em 1em;
  border-radius: 2em;
  letter-spacing: .15em;
  line-height: 1;
  background: #fff;
}
.page_title_heading .title_en {
  background: #fff;
  color: var(--mainColor);
  text-align: center;
  display: inline-block;
}
.title_heading .title_jp {
  border-bottom: 1px solid var(--mainColor);
  padding-bottom: .1em;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media only screen and ( max-width : 767px ) {
  .sec {
    padding: 4rem 0;
  }
  .title_heading {
    margin-bottom: 3rem;
    align-items: center;
  }
  .title_heading .title_en,
  .page_title_heading .title_en {
    font-size: .9rem;
    margin-bottom: 1.5rem;
  }
  .title_heading .title_jp,
  .page_title_heading .title_jp {
    font-size: 2.6rem;
  }
  .btn {
    width: 100%;
    height: 5rem;
  }
  .btn.min {
    font-size: 1.5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .sec {
    padding: 10rem 0;
  }
  .title_heading {
    margin-bottom: 5rem;
  }
  .title_heading .title_en,
  .page_title_heading .title_en {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .title_heading .title_jp,
  .page_title_heading .title_jp {
    font-size: 4.5rem;
  }
  .btn {
    width: 25rem;
    height: 5.4rem;
  }
  .btn.min {
    font-size: 1.7rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   CONTACT

--------------------------------------------------------------------------------------------- */
#contact {
  background: var(--mainColor);
  color: #fff;
}
#contact .title_jp {
  border-bottom: 1px solid #fff;
}
#contact .title_heading .title_en {
  background: #fff;
  color: var(--mainColor);
}
@media only screen and ( max-width : 767px ) {
  #contact {
    padding: 3rem 0;
  }
  .inquiry_text p {
    line-height: 1.8em;
    margin-bottom: 2.5rem;
  }
  #contact .title_heading .title_jp {
    font-size: 2.2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #contact {
    padding: 7.5rem 0 5rem;
  }
  #contact .title_heading {
    width: 37rem;
  }
  #contact .title_heading .title_jp {
    font-size: 3.5rem;
  }
  #contact .inquiry_text {
    width: calc(100% - 37rem);
  }
  .inquiry_text p {
    line-height: 2.4em;
    margin-bottom: 10rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   WORKS

--------------------------------------------------------------------------------------------- */

.works-title {
  letter-spacing: 0.1em;
}
.works-title a {
  color: #fff;
}
.works-category span {
  display: inline-block;
  background: #fff;
  border-radius: 3rem;
  color: var(--mainColor);
  padding: 0.2em 1em;
  line-height: 1.2em;
  letter-spacing: 0.05em;
}
.works-date {
  color: #80949f;
  /* margin-bottom: .5rem; */
}
@media only screen and ( max-width : 767px ) {
  .works-category {
    margin: 2.4rem 0 0;
    font-size: 1.1rem;
  }
  .works-title {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  
}
@media print, screen and ( min-width : 768px ) {
  .works-category {
    margin: 4rem 0 0;
    font-size: 1.4rem;
  }
  .works-title {
    font-size: 1.5rem;
    margin-top: 2.5rem;
  }
  .works-date {
    font-size: 1.3rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   NEWS

--------------------------------------------------------------------------------------------- */
#news .tab {
  background: var(--mainColor);
  color: #fff;
  border-radius: 3rem;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
}
#news .tab a {
  color: #fff;
  display: block;
  padding: 0.5em 1em;
  width: 100%;
  height: 100%;
}
#news .tab.is-active {
  opacity: .6;
}
.news_list li {
  border-bottom: 1px solid var(--mainColor);
}
.news_list li:last-child {
  border-bottom: none;
}
.news_list li a {
  display: flex;
  position: relative;
}
.news_list li .news_list_txt:after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;;
  background: url(./img/arrow.png) no-repeat center / 100%;
}
.news_date {
  color: #b2bfc6;
}
@media only screen and ( max-width : 767px ) {
  #news .tab-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2.5rem;
  }
  #news .tab-group .tab {
    width: 48%;
    margin-top: 4%;
  }
  #news .tab-group .tab:nth-child(-n+2) {
    margin-top: 0;
  }
  .news_list {
    margin-bottom: 1rem;
  }
  .news_list li a {
    padding: 2.5rem 0;
    font-size: 1.2rem;
  }
  .news_list_img {
    width: 10rem;
    margin-right: 1.5rem;
    height: 6rem;
  }
  .news_list_txt {
    width: calc(100% - 11.5rem);
  }
  .news_list li .news_list_txt:after {
    width: 1.2rem;
    height: 1.2rem;
    right: 2rem;
    bottom: 2.5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .news_tab_menu {
    width: 19rem;
  }
  .panel-group {
    width: calc(100% - 25rem);
  }
  #news .tab {
    font-size: 1.4rem;
    margin-bottom: .8rem;
  }
  .news_list {
    margin-top: -1.5rem;
  }
  .news_list li a  {
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1.4rem;
  }
  .news_list li a .news_date {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  .news_list_img {
    width: 12rem;
    margin-right: 5rem;
  }
  .news_list_txt {
    width: calc(100% - 12rem - 5rem);
    position: relative;
    padding-right: 2.5rem;
  }
  .news_date {
    margin-bottom: 1rem;
  }
  .news_list li .news_list_txt:after {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .news_list_img {
    height: 7.8rem;
  }
}



/* ---------------------------------------------------------------------------------------------

　   pagenavi

--------------------------------------------------------------------------------------------- */

.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.wp-pagenavi .pages {
  display: none;
}
.previouspostslink,
.nextpostslink {
  /* display: none; */
  border: none !important;
  color: #fff !important;
  font-size: 2.4rem;
  line-height: 1em;;
}
.previouspostslink:hover,
.nextpostslink:hover {
  background: none !important;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  width: 3.8rem;
  height: 3.8rem;
  background: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 1.4rem;
  border: 1px solid #fff;
  border-radius: 50%;
}

.wp-pagenavi .current {
  background: var(--mainColor);
  color: #fff;
}
/* .wp-pagenavi a, .wp-pagenavi span {
  border: none !important;
} */
.wp-pagenavi .extend {
  display: flex;
  align-items: center; 
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  background: #fff;
  color: var(--mainColor);
  border:none;
}
.wp-pagenavi .first,
.wp-pagenavi .last {
  display: flex;
  align-items: center;
  padding-top: .7em;
}
@media only screen and ( max-width : 767px ) {
  .wp-pagenavi {
    margin-top: 5rem;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    margin: 0 .5rem;
    font-size: 1rem;
  }
  .previouspostslink,
  .nextpostslink {
    line-height: 0.5;
  }
}
@media print, screen and ( min-width : 768px ) {
  .wp-pagenavi {
    margin-top: 10rem;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    line-height: 3.8rem;
  }
}
/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {
}
@media print, screen and ( min-width : 768px ) {
}

