@charset "utf-8";

/*
Theme Name: RENGA
*/

/* 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: 118rem;
}
@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: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #222;
  height: 100%;
  font-family: "Inter",YakuHanJP,"Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 400;
  position: relative;
  /*font-feature-settings: "palt";*/
}
@media only screen and ( max-width : 767px ) {
  body {
    font-size: 1.4rem;
  }
}

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: #222;
}

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) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.large_conteiner {
  max-width: 134rem;
}
.small_container {
  max-width: 104rem;
}

@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .section {
    padding: 45px 0;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .section {
    padding: 60px 0;
  }
  .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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
}

#h_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #999999;
  color: #fff;
}
#h_nav li.current a {
  color: #7f0202;
}
#h_nav li .h_contact_btn {
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 5rem;
}
#h_nav li .h_contact_btn:hover {
  background: #7f0202;
}

@media only screen and ( max-width : 767px ) {
  body.open {
    height: 100%;
    overflow: hidden;
  }
  #h_logo {
    width: 16rem;
  }
  #h_logo a {
    width: 16rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  #header {
    height: 6rem;
    padding: 0 1.5rem;
  }
  #menu_btn {
    transition: .3s;
    cursor: pointer;
    /*position: absolute !important;*/
    z-index: 9999;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 2.4rem !important;
    height: 1.5rem !important;
  }
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    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: 100%;
    height: 100%;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #222;
    transition: all .5s;
  }
  #menu_btn .midnightHeader.white .menu-trigger span {
    background: #000;
  }
  #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(.7rem) rotate(-45deg);
  }
  .menu-trigger span:nth-of-type(2) {
    top: .7rem;
    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(-.7rem) rotate(45deg);
  }
  #gNav {
    height: 100vh;
    overflow: auto;
    background-color: #f5f5f5;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 101;
    transition: all .2s;
    width: 100vw;
    padding: 10.4rem 2.5rem 3rem;
    opacity: 0;
    visibility: hidden;
  }
  #gNav.open {
    /*transform: translateZ(0);*/
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #gNav .nav {
    margin-bottom: 5rem;
  }
  #gNav .nav li a {
    position: relative;
    display: block;
    padding: 2rem 0;
    position: relative;
    line-height: 1;
    text-align: center;
  }
  #gNav .nav li .nav_en {
    color: var(--mainColor);
    display: block;
    font-size: 3.2rem;
    line-height: 1;
  }
  #h_nav li .h_contact_btn {
    margin-top: 4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #menu_btn,.overlay {
    display: none;
  }
  #header {
    height: 9rem;
    padding: 0 5rem;
  }
  #h_logo {
    width: 21rem;
  }
  #h_logo a {
    width: 21rem;
    height: 4.6rem;
    font-size: 1.6rem;
  }
  #h_nav li {
    margin-right: 5rem;
  }
  #h_nav li:last-child {
    margin-right: 0;
  }
  #h_nav li a:hover {
    color: #7f0202;
  }
  #h_nav li .h_contact_btn {
    width: 17rem;
    height: 5rem;
  }
  #h_nav li .h_contact_btn:hover {
    color: #fff;
  }
}


/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  background: #3a3937;
  color: #b3b3b3;
}
#footer a {
  color: #b3b3b3;
}
#footer a:hover {
  color: #7f0202;
}
#f_company {
  font-size: 1.4rem;
}
#f_companyName {
  background: #b3b3b3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.f_copy {
  font-size: 1rem;
  text-align: center;
  border-top: 1px solid rgba(179,179,179,.4);
}
@media only screen and ( max-width : 767px ) {
  #footer {
    color: #fff;
  }
  #footer a {
    color: #fff;
  }
  #f_content {
    padding: 5rem 0 8rem;
  }
  #f_company {
    margin-bottom: 4rem;
  }
  #f_companyName {
    margin-bottom: 3rem;
    height: 4rem;
    width: 19rem;
  }
  #f_nav li {
    margin-bottom: 2rem;
  }
  #f_nav li:last-child {
    margin-bottom: 0;
  }
  #f_nav .f_contact_btn {
    margin-top: 6rem;
  }
  #f_nav .f_contact_btn a {
    background: #222;
    color: #fff;
    border-radius: 5rem;
    width: 18rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  .f_copy {
    padding: 2rem 0;
  }
  #f_companyAdd {
    line-height: 1.8em;
  }
}

@media print, screen and ( min-width : 768px ) {
  #f_content {
    padding: 6rem 2rem 8rem;
  }
  #f_company {
    width: 34%;
  }
  #f_companyName {
    margin-bottom: 1.5rem;
    height: 7.4rem;
    width: 26rem;
  }
  #f_nav {
    width: 62%;
    padding-top: 2.5rem;
  }
  #f_nav li {
    margin-right: 6rem;
  }
  #f_nav li:nth-last-child(2) {
    margin-right: 0;
  }
  #f_nav .f_contact_btn {
    display: none;
  }
  .f_copy {
    padding: 2rem 0 3.5rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */

.sec {
  position: relative;
  background: #fff;
}
.sec .container {
  position: relative;
}
.en_bg_title {
  color: rgba(0,0,0,.05);
  letter-spacing: .1em;
  position: absolute;
  line-height: 1;
}
.bg_beige .en_bg_title {
  color: rgba(255,255,255,.4);
}
.sec_tit {
  position: relative;
  z-index: 2;
}
.sec_tit span {
  display: block;
  letter-spacing: .09em;
}
.sec_tit .sec_tit_en {
  color: #b9876e;
  margin-top: .4em;
}
.sec_lead_txt {
  font-weight: 700;
  letter-spacing: .05em;
}
.bg_gry {
  background: #f5f5f5;
}
.bg_beige {
  background: rgba(199,178,153,.2);
}
.btn {
  border: 1px solid #231815;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 5rem;
  width: 24.4rem;
  height: 5rem;
  padding: 0 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  background: #231815;
  color: #fff;
}
.btn:hover {
  background: #7f0202;
  border: 1px solid #7f0202;
}
.btn:after {
  content: "";
  width: 1.6rem;
  height: .7rem;
  background: url(./img/btn_arrow_w.svg) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  z-index: 2;
  transition: .3s;
}
.btn:hover:after {
  right: 2.5rem;
}
.btn_02 {
  background: none;
  color: #222;
}
.btn_02:after {
  background: url(./img/btn_arrow.svg) no-repeat center / 100%;
}
.btn_02:hover {
  background: #222;
  color: #fff;
}
.btn_02:hover:after {
  background: url(./img/btn_arrow_w.svg) no-repeat center / 100%;
}
@media only screen and ( max-width : 767px ) {
  .sec {
    padding: 7rem 0;
    border-radius: 2.4rem 2.4rem 0 0;
  }
  .en_bg_title {
    font-size: 9rem;
    white-space: nowrap;
    top: -8.15rem;
  }
  .sec_tit {
    margin-bottom: 3rem;
  }
  .sec_tit_jp {
    font-size: 2.8rem;
  }
  .sec_tit_en {
    font-size: 1.4rem;
  }
  .sec_lead_txt {
    font-size: 2rem;
    line-height: 2em;
    margin-bottom: 3rem;
  }
  .btn {
    width: 18rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .sec {
    padding: 14rem 0;
    border-radius: 4.6rem 4.6rem 0 0;
  }
  .en_bg_title {
    font-size: 18rem;
  }
  .sec_tit {
    margin-bottom: 5rem;
  }
  .sec_tit_jp {
    font-size: 3rem;
  }
  .sec_tit_en {
    font-size: 1.8rem;
  }
  .sec_lead_txt {
    font-size: 3.2rem;
    margin-bottom: 5rem;
  }
  .breadcrumbs {
    display: none;
  }
}

/* ---------------------------------------------------------------------------------------------

　   CTA

--------------------------------------------------------------------------------------------- */
.cta_block .container {
  max-width: 67rem;
}
.cta_block h2 {
  text-align: center;
  letter-spacing: .025em;
}
.cta_lead_txt {
  text-align: center;
  font-weight: 700;
  letter-spacing: .09em;
}
.cta_block__btn_area {
  max-width: 36.4rem;
  margin: 0 auto;
  position: relative;
}
.cta_block__btn_title {
  text-align: center;
  /*position: absolute;
  left: 50%;
  transform: translateX(-50%);*/
  background: #fff;
  font-weight: 700;
  z-index: 2;
  white-space: nowrap;
  margin-bottom: .8rem;
}
.cta_block__btn {
  position: relative;
  border: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8rem;
  width: 100%;
  font-weight: 700;
}


@media only screen and ( max-width : 767px ) {
  .cta_block {
    padding: 7rem 0;
  }
  .cta_block h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .cta_lead_txt {
    margin-bottom: 3rem;
  }
  .cta_block__btn_area {
    margin-bottom: 4.5rem;
  }
  .cta_block__btn {
    height: 6rem;
    width: 25rem;
    margin: 0 auto;
  }
}
@media print, screen and ( min-width : 768px ) {
  .cta_block {
    padding: 13rem 0 8rem;
  }
  .cta_block h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
  }
  .cta_lead_txt {
    margin-bottom: 6.5rem;
  }
  .cta_block__btn_area {
    margin-bottom: 8rem;
  }
  .cta_block__btn_title {
    font-size: 1.8rem;
    /*top: -1.5rem;
    padding: 0 2.8rem;*/
  }
  .cta_block__btn {
    font-size: 1.8rem;
    height: 7.4rem;
  }
  .cta_block__btn:after {
    width: 2.5rem;
    height: 1.1rem;
  }
}





/* ---------------------------------------------------------------------------------------------

    pager

--------------------------------------------------------------------------------------------- */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.wp-pagenavi .pages,
.previouspostslink,
.nextpostslink {
  display: none;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  width: 4rem;
  height: 4rem;
  background: #fff;
  border-radius: .8rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  color: #b6846e;
  font-weight: bold;
  font-size: 1.8rem;
  border: 1px solid #b6846e;
}
.wp-pagenavi .page:hover {
  background: #b6846e;
}
.wp-pagenavi .current {
  background: #b6846e;
  color: #fff;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
  border-color: #b6846e !important;
  color: #fff;
}

@media only screen and ( max-width : 767px ) {
  .breadcrumbs {
    position: absolute;
    z-index: 10;
    left: 2rem;
    top: 2.4rem;
    font-size: 1.1rem;
  }
  .breadcrumbs a {
    color: #fff;
    text-decoration: underline;
  }
}
@media only screen and ( max-width : 575px ) {
  .breadcrumbs {
    margin-top: -2vw;
  }
}


/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {

}
@media print, screen and ( min-width : 768px ) {

}