@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: 119.8rem;
  --mainColor: #726358;
  --subColor: #1F4A58;
  --subColor2: #0B2A34;
  --black: #212121;
}
@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: 1439px) {
  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: #fff;
  height: 100%;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
  background: url(./img/bg.png) repeat-y top left / 100% fixed #F8F8F8;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.en {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.jp_font {
  font-family: "nitalago-ruika", sans-serif;
  font-weight: 100;
  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: #fff;
}

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;
}

section {
  position: relative;
}
.container {
  max-width: calc(var(--inner) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.large_container {
  max-width: 124rem;
}
.small_container {
  /*max-width: 112.6rem;*/
  max-width: 116rem;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
#grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(90deg, #DDDDDD, #DDDDDD 1px, rgba(255,255,255,0) 1px, rgba(255,255,255,0) 45.4rem);
  z-index: -1;
}


@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .section {
    padding: 45px 0;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
  #grid {
    background: repeating-linear-gradient(90deg, #DDDDDD, #DDDDDD 1px, rgba(255,255,255,0) 1px, rgba(255,255,255,0) 25.2rem);
  }
}
@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;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 102;
  transition: transform 0.3s 0.3s;
}
#header.scroll {
  background: transparent;
  backdrop-filter: blur(5px);
}
#header.hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-out;
}

#h_logo a {
  display: flex;
  color: var(--mainColor);
  font-weight: 700;
}
#h_logo img {
  transition: .3s;
}

#h_content {
  display: flex;
  align-items: center;
}


#menu_btn {
  transition: .3s;
  cursor: pointer;
  position: relative;
  z-index: 9999;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  background: url(./img/menu.svg) no-repeat center / contain;
}
#menu_btn.active {
  background: none;
}

.menu-trigger {
  vertical-align: middle;
  text-align: center;
  position: relative;
  width: 3.3rem;
  height: 2rem;
}
.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: .5rem;
  background-color: #fff;
  transition: all .5s;
  opacity: 0;
}
#menu_btn.active .menu-trigger span {
  opacity: 1;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

#menu_btn.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(.8rem) rotate(-45deg);
}

.menu-trigger span:nth-of-type(2) {
  bottom: 0;
  width: 100%;
}
#menu_btn.active .menu-trigger span:nth-of-type(2) {
  transform: translateY(-.7rem) rotate(45deg);
}

.overlay {
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, .4);
  position: fixed;
  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;
}
#gNav {
  overflow: auto;
  position: fixed;
  z-index: 101;
  transition: all .8s;
  opacity: 0;
  visibility: hidden;
  background: var(--mainColor);
}
#gNav.open {
  opacity: 1;
  visibility: visible;
  transform: translateZ(0);
}
.nav {
  margin-bottom: 4rem;
}
.nav li {
  margin-bottom: 2rem;
}
.nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-weight: 700;
  color: #fff;
}
.nav li .menu-item-parent:before,
.nav li .menu-item-parent:after {
  content: '';
  display: inline-block;
  width: 1.2rem;
  height: .2rem;
  background-color: #fff;
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity .5s;
}
.nav li .menu-item-parent:after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 1s;
}
.nav li.open .menu-item-parent:before {
    opacity: 0;
}
.nav li.open .menu-item-parent:after {
    transform: translateY(-50%) rotate(180deg);
}
#gNav .drop-menu-list {
  display: none;
  margin-bottom: .5rem;
}
.nav .drop-menu-list li {
  border-bottom: none;
  margin-bottom: 0;
}
.nav .drop-menu-list li a {
  padding: .9rem 0;
}
.nav .nav_jp {
  font-size: 2rem;
}
.nav .nav_en {
  font-size: 1.2rem;
}
#gNav .btn {
  width: 100%;
}

.nav_sub,
.nav_copyright {
  text-align: center;
  font-weight: 700;
}
.nav_sub {
  font-size: 1.4rem;
  margin: 3rem 0 6rem;
}


@media only screen and ( max-width : 767px ) {
  #menu_btn {
    width: 4rem;
    height: 4rem;
  }

  .menu-trigger {
    width: 2.1rem;
    height: 1.2rem;
  }
  .menu-trigger span {
    height: .3rem;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(.5rem) rotate(-45deg);
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    transform: translateY(-.4rem) rotate(45deg);
    width: 100%;
  }

  #header {
    height: 8rem;
    padding: 1.5rem;
  }
  header.hidden {
    transform: translateY(-8rem) !important;
  }
  #h_logo img {
    width: 11.4rem;
  }
  .open #h_logo img {
    opacity: 0;
  }
  .open #h_logo {
    background: url(./img/logo_white.svg) no-repeat center / 100%;
  }
  #menu_btn.active {
  }
  .nav .nav_jp {
    font-size: 1.9rem;
  }
  .nav .nav_en {
    font-size: 1.1rem;
  }
  #gNav {
    padding: 11rem 2rem 5rem;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transform: translate(100%);
  }
}
@media print, screen and ( min-width : 768px ) {
  #header {
    height: 12rem;
    padding: 0 3rem;
  }
  header.hidden {
    transform: translateY(-12rem) !important;
  }
  #h_logo img {
    width: 17rem;
  }
  #gNav {
    height: calc(100vh - 4rem);
    top: 2rem;
    right: 2rem;
    width: 41rem;
    border-radius: 2rem;
    transform: translate(44rem);
    padding: 9rem 3rem;
    max-width: calc(100% - 4rem);
  }
}


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

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  position: relative;
}
#footer .container {
  max-width: 1246px;
}
.f_inner {
  background: var(--subColor);
}
.f_left p {
  line-height: 1.8;
}

.f_logo {
  margin-bottom: 2rem;
}

.f_nav li a {
  display: block;
}
.f_nav li a span {
  display: block;
}
.f_nav_jp {
  font-weight: 700;
}
.f_nav_en {
  color: var(--mainColor);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: .4em;
}
.f_bottom {
  width: 100%;
  font-weight: 700;
}
.f_bottom .f_copy {
  font-weight: 700;
}

 
@media only screen and ( max-width : 767px ) {
  .f_inner {
    padding: 6rem 0;
  }
  .f_nav_jp {
    font-size: 1.6rem;
  }
  .f_nav_en {
    margin-top: .3rem;
  }
  .f_left {
    margin-bottom: 2rem;
  }
  .f_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .f_nav li {
    width: 48%;
    margin-top: 2rem;
  }
  .f_nav_jp {
    font-size: 2rem;
  }
  .f_bottom {
    margin-top: 6rem;
  }
}

@media print, screen and ( min-width : 768px ) {
  .f_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 39rem;
    margin-right: 6rem;
    border-right: 1px solid #2C5B6A;
  }
  .f_logo {
    width: 28rem;
  }
  .f_right {
    width: calc(100% - 45rem);
  }
  .f_nav_jp {
    font-size: 1.8rem;
  }
  .f_bottom {
    margin-top: 6rem;
    padding-top: 6rem;
    border-top: 1px solid #2C5B6A;
  }
  .f_nav {
    display: flex;
    justify-content: space-between;
  }
  .f_nav li {
    margin-right: 5rem;
  }
  .f_nav li:last-child {
    margin-right: 0;
  }
}

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

　   CONTACT

--------------------------------------------------------------------------------------------- */
#contact {
  position: relative;
  background: rgba(24, 53, 64, 1);
}
#contact .contact__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(24, 53, 64, 0.6);
}
#contact .heading-en {
  text-align: center;
}

.contact_lead_txt {
  text-align: center;
}


#footer .swiper-wrapper {
  transition-timing-function: linear !important;
}

#footer .swiper-container-wrap {
  display: flex;
  justify-content: space-between;
}

#footer .swiper-container {
  overflow: hidden;
}

#footer .swiper-slide img {
  width: 100%;
  display: block;
}
#footer .reverse {
  transform: scaleY(-1);
}
#footer .reverse .swiper-slide {
  transform: scaleY(-1); /* 中の画像も元に戻す */
}
/* 施工実績とフッターの連続スクロールを線形補間に固定 */
.vertical-works .swiper-wrapper,
#footer .swiper .swiper-wrapper,
#footer .swiper-container .swiper-wrapper {
  transition-timing-function: linear !important;
}


@media only screen and ( max-width : 767px ) {
  #contact {
  }
  .contact_lead_txt {
    font-size: 2.8rem;
  }
  #contact .btn {
    width: 90%;
    margin: 0 auto;
  }
  #footer .swiper-container  {
    height: 80vw;
    width: 30%;
  }
  #contact .column1,#contact .column2,#contact .column3 {
    opacity: .6;
  }
  #contact .column4,
  #contact .column5 {
    display: none;
  }
  .contact__inner {
    display: flex;
    align-items: center;
  }
  .contact__inner .container {
    width: 100%;
    padding: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  .contact__inner,
  .f_inner {
    padding: 8rem 0;
  }
  #contact .heading-en {
    margin-bottom: 3rem;
  }
  #contact .contact_lead_txt {
    font-size: 4.8rem;
  }
  #contact .column2,#contact .column3,#contact .column4 {
    opacity: .3;
  }
  #footer .swiper-container  {
    height: 36.5vw;
    width: 16.83%;
  }
  #contact .btn {
    width: 37rem;
    margin: 0 auto;
  }
  #contact .contact__inner {
    display: flex;
    align-items: center;
  }
}



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

　   COMMON

--------------------------------------------------------------------------------------------- */
#wrapper {
  overflow: hidden;
}
.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}
.btn {
  color: #fff;
  height: 6.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  width: 29rem;
  border: .2rem solid #fff;
  border-radius: 6.6rem;
  font-size: 2rem;
}
.btn:hover,
.link:hover {
  opacity: 1;
}
.btn:after {
  content: "";
  width: 5.6rem;
  height: 5.6rem;
  background: url(./img/arrow.svg) no-repeat center / 1.2rem var(--mainColor);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: .4rem;
  transition: .3s;
}
.btn:hover:after {
  background-color: var(--subColor);
}
.btn_center {
  margin: 0 auto;
}
.link {
  width: 15rem;
  position: relative;
  display: flex;
  align-items: center;
  height: 4rem;
  font-weight: 700;
}
.link:after {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url(./img/arrow.svg) no-repeat center / 1.5rem var(--mainColor);
  border-radius: 4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: .3s;
}
.link:hover:after {
  background-color: #212121;
}

.heading {
  display: flex;
  flex-direction: column;
}
.heading-en {
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  display: block;
  color: var(--mainColor);
  margin-bottom: .2em;
}

.heading-jp {
  display: block;
  font-family: "nitalago-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  line-height: 1.2;
  color: #fff;
  letter-spacing: .2em;
}

.txt-wrap {
  border-right: 0.08em solid #fff;
}


#page_bottom_link li {
  border-bottom: 2px solid #fff;
}
#page_bottom_link li a {
  display: block;
  position: relative;
  font-weight: 700;
}
#page_bottom_link li a:after {
  content: "";
  background: url(./img/nav-arrow.svg) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}


.works-terms li {
  background: #212121;
  display: inline-flex;
  border-radius: .3rem;
  padding: .5em 1em;
  line-height: 1;
  font-size: 1.2rem;
  margin-bottom: .7rem;
  font-weight: 700;
  margin-right: .5rem;
}
.works-terms li:last-child {
  margin-right: 0;
}
.container {
  position: relative;
  z-index: 3;
}

.mv_obi {
  position: absolute;
  width: 200%;
  bottom: 0;
  left: -50%;
  right: -50%;
  z-index: 2;
}
.mv_obi_inner {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  padding:0 2%;
  overflow: hidden;
}
.mv_obi_inner .mv_flowing {
  white-space: nowrap;
}
.mv_obi_inner .mv_flowing p {
  display: inline-block;
}
@media only screen and ( max-width : 767px ) {
  #wrapper_sp {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .sec {
    padding: 7rem 0;
  }
  .heading {
    margin-bottom: 3.5rem;
    /*margin-left: 1rem;*/
  }
  .heading-en {
    font-size: 1.6rem;
    margin-bottom:.5rem;
  }
  .heading-jp {
    font-size: 3.6rem;
  }
  .btn.large_btn {
    max-width: 26rem;
    height: 6rem;
    font-size: 1.6rem;
  }
  .btn.large_btn:after {
    content: none;
  }
  .btn.large_btn span {
    position: relative;
    padding-right: 2.6rem;
  }
  .btn.large_btn span:after {
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    background: url(./img/arrow.svg) no-repeat center / .65rem var(--mainColor);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
  .link {
    width: 13.2rem;
    height: 2.6rem;
    font-size: 1.6rem;
  }
  .link:after {
    width: 2.6rem;
    height: 2.6rem;
    background-size: .86rem;
  }
  #page_bottom_link {
    margin-bottom: 8rem;
    margin-top: 5rem;
  }
  #page_bottom_link li {
    margin-bottom: 1.6rem;
  }
  #page_bottom_link li:last-child {
    margin-bottom: 0;
  }
  #page_bottom_link li a {
    padding: .8rem 0;
    font-size: 1.6rem;
  }
  #page_bottom_link li a:after {
    right: 1rem;
    width: 2rem;
    height: 2rem;
  }
  .works-terms li {
    font-size: 1rem;
  }
  .mv_obi_inner .mv_flowing img {
    max-width: 120rem;
    width: 120rem;
  }
  .mv_obi_inner .mv_flowing p {
    margin-right: 1rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .sec {
    padding: 10rem 0;
  }
  .heading {
    margin-bottom: 6rem;
  }
  .heading-en {
    font-size: 2.8rem;
  }
  .heading-jp {
    font-size: 6.8rem;
  }
  .btn.large_btn {
    width: 38.8rem;
    height: 7.6rem;
    font-size: 2rem;
  }
  #page_bottom_link {
    margin-bottom: 12rem;
    margin-top: 7rem;
  }
  #page_bottom_link li:nth-child(-n+2) {
    margin-top: 0;
  }
  #page_bottom_link li {
    width: 48.5%;
    margin-top: 2rem;
  }
  #page_bottom_link li a {
    padding: 3rem 0;
    font-size: 2.8rem;
  }
  #page_bottom_link li a:after {
    right: 2rem;
    width: 3.8rem;
    height: 3.8rem;
  }
  .mv_obi_inner .mv_flowing img {
    width: 304.8rem;
  }
  .mv_obi_inner .mv_flowing p {
    margin-right: 3.66vw;
  }
}

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

　    NEWS

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

.pickup-category {
  background: #fff;
  color: var(--subColor);
  font-size: 1.2rem;
  padding: .1em 1em;
  border-radius: 1rem;
  text-align: center;
}
.pickup-category.pickup-category__blog {
  background: #3BA779;
}
.news__list_box a {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 2rem;
  position: relative;
}
.news__list_box:last-child {
  margin-bottom: 0;
}
.news__list_box a:after {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background: url(./img/arrow02.svg) no-repeat center / 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
.news__list_box .pickup_date {
  margin-top: 0;
}
.pickup_date {
  font-weight: 700;
}
.pickup_list__tit {
  font-weight: 700;
}
.news_list__info .pickup_date {
  width: 10rem;
}
.news_list__info .pickup-categories {
  width: calc(100% - 10rem);
  display: flex;
  flex-wrap: wrap;
}
.news_list__info .pickup-categories li {
  margin-right: 1rem;
}
.news_list__info .pickup-categories li:last-child {
  margin-right: 0;
}
.news_list__info .pickup_date {
  font-size: 1.6rem;
}
@media only screen and ( max-width : 767px ) {
  .news__list_box {
    margin-bottom: 2rem;
  }
  .news__list_box a {
    align-items: center;
    padding: 1.5rem 5rem 1.5rem 2rem;
  }
  .news__list_box a:after {
    right: 1.5rem;
  }
  .news__list_box .pickup_date {
    margin-right: 1rem;
  }
  .news__list_box .pickup-category {
    width: 7.4rem;
  }
  .pickup_list__tit {
    font-size: 1.4rem;
    margin: 1rem 0 1.5rem;
  }
  .news_list__item {
    margin-bottom: 5rem;
  }
  .news_list__item:last-child {
    margin-bottom: 0;
  }
  .news_list__item .pickup_list__tit {
    margin: 1rem 0 0;
    font-size: 1.6rem;
  }
  .pickup_date,
  .pickup-category {
    font-size: 1rem;
  }
  .news_list__fig {
    height: 22rem;
    margin-bottom: 2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
 
  .pickup_list__tit {
    font-size: 2rem;
    margin: 1rem 0 2rem;
  }
  #pickup .top-slide__fig {
    margin-bottom: 2.5rem;
  }
  .news_list__fig {
    height: 24.2rem;
    margin-bottom: 2rem;
  }
  .news_list__item {
    width: 30%;
    margin-right: 5%;
    margin-top: 5%;
  }
  .news_list__item:nth-child(3n) {
    margin-right: 0;
  }
  .news_list__item:nth-child(-n+3) {
    margin-top: 0;
  }
}

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

　   pagenavi

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

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

.wp-pagenavi .pages,
.previouspostslink,
.nextpostslink {
  display: none;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  width: 6rem;
  height: 6rem;
  background: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  color: #ccc;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  border: none;
  border-radius: 50%;
}
.wp-pagenavi .page:hover {
  background: var(--mainColor);
  color: #fff;
}
.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 .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: 4rem;
    height: 4rem;
    line-height: 3.5rem;
    margin: 0 .5rem;
    font-size: 2rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .wp-pagenavi {
    margin-top: 10rem;
  }
  .wp-pagenavi .page,
  .wp-pagenavi .current {
    line-height: 5.5rem;
  }
}

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

　   XXX

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

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

