@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #444444;
  color: #333;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 1.4px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-rendering: optimizeSpeed;
  position: relative;
}

@media screen and (max-width: 768px) {
  body {
    margin-bottom: 60px;
    line-height: 1.6;
  }
}

header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

.inner {
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 20px;
}

.side_navi {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #1e1e1e;
  -webkit-transform: translateX(240px);
          transform: translateX(240px);
  -webkit-transition: all 0.6s 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: all 0.6s 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .side_navi {
    width: 100%;
    height: 60px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
    left: 0;
    top: auto;
    bottom: 0;
  }
}

.side_navi * {
  color: #fff;
}

.side_navi:hover {
  cursor: pointer;
}

.side_navi_inner {
  position: relative;
  height: 100%;
}

.side_navi_inner .navi_border {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  height: 30px;
  margin: auto;
  width: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 1;
  -webkit-transition: all 0.6s 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: all 0.6s 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
}

@media screen and (max-width: 768px) {
  .side_navi_inner .navi_border {
    top: 15px;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.side_navi_inner .navi_border span {
  width: 1px;
  height: 30px;
  background: #fff;
  display: block;
}

.side_navi_inner_ttl {
  position: absolute;
  left: 20px;
  top: 40px;
}

@media screen and (max-width: 768px) {
  .side_navi_inner_ttl {
    top: 20px;
  }
}

.side_navi_inner_ttl .side_navi_inner_ttl_open {
  opacity: 1;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-transition: all 1.2s 1.2s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: all 1.2s 1.2s cubic-bezier(0.4, 0.1, 0.2, 1);
}

@media screen and (max-width: 768px) {
  .side_navi_inner_ttl .side_navi_inner_ttl_open {
    -ms-writing-mode: initial;
    -webkit-writing-mode: initial;
            writing-mode: initial;
  }
}

.side_navi_inner .side_navi_inner_ttl_close {
  position: absolute;
  left: 20px;
  top: 40px;
  opacity: 0;
  -webkit-transition: all 0.6s 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: all 0.6s 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
}

.side_navi_inner .side_navi_inner_ttl_close img {
  width: 17px;
  display: inline-block;
  vertical-align: text-top;
  margin-right: 10px;
}

.side_navi_inner_list {
  padding: 150px 20px 50px;
  opacity: 0;
  -webkit-transition: all 0.4s 0.4s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: all 0.4s 0.4s cubic-bezier(0.4, 0.1, 0.2, 1);
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

@media screen and (max-width: 768px) {
  .side_navi_inner_list {
    -webkit-transform: translateX(initial);
            transform: translateX(initial);
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

.side_navi_inner_list li {
  margin-bottom: 6%;
}

@media screen and (max-width: 768px) {
  .side_navi_inner_list li {
    margin-bottom: 11%;
    text-align: center;
  }
}

.side_navi_inner_list li a {
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .side_navi_inner_list li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .side_navi_inner_list li a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@media screen and (max-width: 768px) {
  .side_navi_inner_list li a {
    font-size: 2vw;
  }
}

@media screen and (max-width: 480px) {
  .side_navi_inner_list li a {
    font-size: 4vw;
  }
}

.side_navi.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.4s 0.4s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: all 0.4s 0.4s cubic-bezier(0.4, 0.1, 0.2, 1);
}

@media screen and (max-width: 768px) {
  .side_navi.open {
    bottom: 0;
    top: auto;
    height: 70vh;
  }
}

.side_navi.open .side_navi_inner_ttl_open {
  opacity: 0;
  -webkit-transition: all 0.6s 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: all 0.6s 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
}

.side_navi.open .side_navi_inner_ttl_close {
  opacity: 1;
  -webkit-transition: all 1.2s 1.2s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: all 1.2s 1.2s cubic-bezier(0.4, 0.1, 0.2, 1);
}

.side_navi.open .side_navi_inner_list {
  opacity: 1;
  -webkit-transition: all 1.2s 1.2s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: all 1.2s 1.2s cubic-bezier(0.4, 0.1, 0.2, 1);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.side_navi.open .navi_border {
  opacity: 0;
  -webkit-transition: all 0.6s 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
  transition: all 0.6s 0.6s cubic-bezier(0.4, 0.1, 0.2, 1);
}

.navi_open_bg {
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -2;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
}

body.open {
  position: fixed;
  width: 100%;
}

body.open .navi_open_bg {
  z-index: 9997;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 1;
}

.body_inner {
  position: relative;
  margin-right: 60px;
}

@media screen and (max-width: 768px) {
  .body_inner {
    margin-right: 0;
  }
}

header .inner {
  max-width: 90%;
  padding: 20px 0;
}

header .header_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .header_flex .header_flex_logo {
  width: 30%;
}

header .header_flex .header_flex_navi {
  width: 70%;
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  header .header_flex .header_flex_navi {
    display: none;
  }
}

header .header_flex .header_flex_navi nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .header_flex .header_flex_navi nav ul li {
  width: 25%;
}

header .header_flex .header_flex_navi nav ul li a {
  color: #fff;
  font-weight: bold;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

header .header_flex .header_flex_navi nav ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

header .header_flex .header_flex_navi nav ul li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

footer .inner {
  max-width: 90%;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  footer .inner {
    padding: 0;
  }
}

footer .ft_top {
  padding: 60px 0;
  background: #2b2d30;
}

@media screen and (max-width: 768px) {
  footer .ft_top {
    padding: 30px 0;
  }
}

footer .ft_top_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  color: #fff;
}

@media screen and (max-width: 768px) {
  footer .ft_top_inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .ft_top_inner p {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-left: 20px;
}

footer .ft_bottom {
  padding: 20px 0;
}

footer .ft_bottom_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  footer .ft_bottom_inner {
    display: block;
  }
}

footer .ft_bottom_inner .copy {
  width: 20%;
  color: #fff;
}

@media screen and (max-width: 768px) {
  footer .ft_bottom_inner .copy {
    width: 100%;
    text-align: center;
  }
}

footer .ft_bottom_inner nav {
  width: 80%;
  max-width: 500px;
}

@media screen and (max-width: 768px) {
  footer .ft_bottom_inner nav {
    display: none;
  }
}

footer .ft_bottom_inner nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .ft_bottom_inner nav ul li {
  width: 25%;
}

footer .ft_bottom_inner nav ul li a {
  color: #fff;
  position: relative;
}

footer .ft_bottom_inner nav ul li a:before {
  content: '';
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
}

footer .ft_bottom_inner nav ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

footer .ft_bottom_inner nav ul li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.box-fixed-bottom {
  position: fixed;
  right: 100px;
  bottom: 50px;
  z-index: 9998;
}

@media screen and (max-width: 768px) {
  .box-fixed-bottom {
    right: 20px;
    bottom: 120px;
  }
}

.cmn_cta {
  background: url(../images/common/cta_bg.jpg) no-repeat center/cover;
}

.cmn_cta a {
  display: block;
  padding: 55px 0;
}

@media screen and (max-width: 768px) {
  .cmn_cta a {
    padding: 5% 0;
  }
}

@media screen and (max-width: 480px) {
  .cmn_cta a {
    padding: 7% 0;
  }
}

.cmn_cta a .cmn_txt {
  display: block;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 30px 50px;
  max-width: 520px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .cmn_cta a .cmn_txt {
    padding: 3% 0;
  }
}

@media screen and (max-width: 480px) {
  .cmn_cta a .cmn_txt {
    padding: 5% 0;
  }
}

.cmn_cta a .cmn_txt img {
  margin: 0 auto;
}

.cmn_cta a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.3;
  background-color: rgba(0, 0, 0, 0.6);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 5s;
  transition: opacity 5s;
}

.fade.view {
  opacity: 1;
}

.mv .inner {
  max-width: 90%;
  padding: 20px 0;
}

.sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}

@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  home                                                   */
@media screen and (max-width: 768px) {
  .home .header_flex_logo {
    display: none;
  }
}

.home .mv {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100vh;
  background: url(../images/top/mv.jpg) no-repeat left bottom/cover;
}

@media screen and (max-width: 1024px) {
  .home .mv {
    height: calc(100vh - 60px);
    background: url(../images/top/mv_sp.jpg) no-repeat center/cover;
  }
}

.home .mv .mv_scroll {
  position: absolute;
  width: 53px;
  height: 128px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .home .mv .mv_scroll {
    height: 113px;
  }
}

@media screen and (max-width: 480px) {
  .home .mv .mv_scroll {
    height: 74px;
  }
}

@-webkit-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}

@keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}

.home .mv .mv_scroll .scroll-btn {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

.home .mv .mv_scroll .scroll-btn > * {
  display: inline-block;
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 2px;
  margin: 0;
}

.home .mv .mv_scroll .scroll-btn > *:hover,
.home .mv .mv_scroll .scroll-btn > *:focus,
.home .mv .mv_scroll .scroll-btn > *.active {
  color: #ffffff;
}

.home .mv .mv_scroll .scroll-btn > *:hover,
.home .mv .mv_scroll .scroll-btn > *:focus,
.home .mv .mv_scroll .scroll-btn > *:active,
.home .mv .mv_scroll .scroll-btn > *.active {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.home .mv .mv_scroll .scroll-btn .mouse {
  position: relative;
  display: block;
  width: 23px;
  height: 43px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid white;
  border-radius: 23px;
}

@media screen and (max-width: 480px) {
  .home .mv .mv_scroll .scroll-btn .mouse {
    width: 15px;
    height: 29px;
  }
}

.home .mv .mv_scroll .scroll-btn .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 59%;
  width: 4px;
  height: 4px;
  margin: -4px 0 0 -4px;
  background: white;
  border-radius: 50%;
  -webkit-animation: ani-mouse 1.5s linear infinite;
  animation: ani-mouse 1.5s linear infinite;
}

.home .mv .mv_scroll .scroll_border {
  width: 1px;
  height: 100px;
  background-color: #fff;
}

.home .concept {
  position: relative;
  padding: 230px 0;
  z-index: 1;
  overflow: hidden;
}

.home .concept .concept_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/concept_bg.jpg) no-repeat center/cover;
  z-index: -1;
}

.home .concept .zoom {
  -webkit-animation: zoom 20s 1;
  animation: zoom 20s 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@media screen and (max-width: 768px) {
  .home .concept {
    padding: 23% 0;
  }
}

@media screen and (max-width: 480px) {
  .home .concept {
    padding: 25% 0;
  }
}

.home .concept * {
  color: #fff;
  -webkit-filter: drop-shadow(0px 0px 5px #999);
          filter: drop-shadow(0px 0px 5px #999);
}

.home .concept h1 {
  text-align: center;
}

.home .concept h1 span {
  display: block;
}

.home .concept h1 .fs_en {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .home .concept h1 .fs_en {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  .home .concept h1 .fs_en {
    font-size: 1.4rem;
  }
}

.home .concept h1 .fs_jp {
  font-size: 3.2rem;
}

@media screen and (max-width: 768px) {
  .home .concept h1 .fs_jp {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  .home .concept h1 .fs_jp {
    font-size: 1.8rem;
  }
}

.home .concept_txt {
  text-align: center;
}

.home .concept_txt img {
  margin: 50px auto 70px;
}

@media screen and (max-width: 768px) {
  .home .concept_txt img {
    margin: 5% auto 7%;
  }
}

@media screen and (max-width: 480px) {
  .home .concept_txt img {
    margin: 7% auto 9%;
  }
}

.home .concept p {
  text-align: center;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .home .concept p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  .home .concept p {
    font-size: 1.4rem;
  }
}

.home .concept_bottom {
  padding: 180px 0 120px;
}

@media screen and (max-width: 768px) {
  .home .concept_bottom {
    padding: 18% 0 12%;
  }
}

@media screen and (max-width: 480px) {
  .home .concept_bottom {
    padding: 20% 0 14%;
  }
}

.home .concept_bottom_txt {
  margin-bottom: 50px;
}

.home .concept_bottom_txt img {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .home .concept_bottom_txt {
    margin-bottom: 5%;
  }
}

@media screen and (max-width: 480px) {
  .home .concept_bottom_txt {
    margin-bottom: 7%;
  }
}

.home .concept_bottom p {
  color: #b2a28b;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .home .concept_bottom p {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  .home .concept_bottom p {
    font-size: 1.4rem;
  }
}

.home .concept_bottom .concept_btn {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .home .concept_bottom .concept_btn {
    margin-top: 5%;
  }
}

@media screen and (max-width: 480px) {
  .home .concept_bottom .concept_btn {
    margin-top: 7%;
  }
}

.home .concept_bottom .concept_btn .btn_brown {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 1.3rem 6rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #b2a28b;
  border: 2px solid #b2a28b;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 480px) {
  .home .concept_bottom .concept_btn .btn_brown {
    width: 100%;
    max-width: 260px;
    padding: 1rem 3rem;
    margin: 0 auto;
  }
}

.home .concept_bottom .concept_btn .btn_brown:hover {
  color: #fff;
  background: #b2a28b;
}

.home .concept_bottom .concept_btn .btn_brown:before {
  position: absolute;
  content: '';
  width: 25px;
  height: 9px;
  background: url(../images/common/btn_arrow_brown.svg) no-repeat center/cover;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.home .service_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .home .service_flex {
    display: block;
  }
}

.home .service_flex_left, .home .service_flex_right {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .home .service_flex_left, .home .service_flex_right {
    width: 100%;
  }
}

.home .service_flex_left {
  padding: 100px 8% 160px 8%;
  background: #fff;
}

@media screen and (max-width: 1050px) {
  .home .service_flex_left {
    padding: 10% 2% 16% 2%;
  }
}

@media screen and (max-width: 768px) {
  .home .service_flex_left {
    padding: 10% 2% 16% 2%;
  }
}

@media screen and (max-width: 480px) {
  .home .service_flex_left {
    padding: 12% 4% 18% 4%;
  }
}

.home .service_flex_left * {
  color: #2b2d30;
}

@media screen and (max-width: 768px) {
  .home .service_flex_left_en {
    max-width: 120px;
  }
}

.home .service_flex_left h2 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .home .service_flex_left h2 {
    font-size: 2.2rem;
    margin-bottom: 4%;
  }
}

@media screen and (max-width: 480px) {
  .home .service_flex_left h2 {
    margin-bottom: 6%;
  }
}

.home .service_flex_left p {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .home .service_flex_left p {
    font-size: 1.6rem;
    margin-top: 5%;
  }
}

@media screen and (max-width: 480px) {
  .home .service_flex_left p {
    font-size: 1.4rem;
    margin-top: 7%;
  }
}

.home .service_flex_left p:nth-of-type(1) {
  margin-top: 0;
}

.home .service_flex_left .btn_flex {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1050px) {
  .home .service_flex_left .btn_flex {
    display: block;
    margin-top: 9%;
  }
}

.home .service_flex_left .btn_flex .service_btn {
  width: 50%;
}

@media screen and (max-width: 1050px) {
  .home .service_flex_left .btn_flex .service_btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px;
    text-align: center;
  }
}

.home .service_flex_left .btn_flex .service_btn a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 1.3rem 6rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #b2a28b;
  border: 2px solid #b2a28b;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  color: #2b2d30;
  width: 95%;
  padding: 1.3rem 3rem;
  border: 1px solid #2b2d30;
  background: none;
}

@media screen and (max-width: 480px) {
  .home .service_flex_left .btn_flex .service_btn a {
    width: 100%;
    max-width: 260px;
    padding: 1rem 3rem;
    margin: 0 auto;
  }
}

.home .service_flex_left .btn_flex .service_btn a:hover {
  color: #fff;
  background: #b2a28b;
}

.home .service_flex_left .btn_flex .service_btn a:before {
  position: absolute;
  content: '';
  width: 25px;
  height: 9px;
  background: url(../images/common/btn_arrow_brown.svg) no-repeat center/cover;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.home .service_flex_left .btn_flex .service_btn a:hover {
  color: #fff;
  background: #2b2d30;
}

@media screen and (max-width: 768px) {
  .home .service_flex_left .btn_flex .flow {
    margin-bottom: 4%;
  }
}

.home .service_flex_left .btn_flex .flow a:before {
  width: 16px;
  height: 16px;
  background: url(../images/common/btn_flow.svg) no-repeat center/cover;
}

.home .service_flex_left .btn_flex .qa a:before {
  width: 16px;
  height: 16px;
  background: url(../images/common/btn_qa.svg) no-repeat center/cover;
}

.home .service_flex_right {
  overflow: hidden;
  background: url(../images/top/service_photo.jpg) no-repeat center/cover;
}

.home .service_flex_right img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  display: none;
}

@media screen and (max-width: 768px) {
  .home .works {
    padding: 18% 0 12%;
  }
}

.home .sp_works_box {
  display: block;
  background: #ddd;
}

@media screen and (max-width: 768px) {
  .home .sp_works_box {
    padding: 0;
    width: 90%;
    margin: 0 auto 50px;
  }
}

.home .works_area {
  position: relative;
}

@media screen and (max-width: 768px) {
  .home .works_area {
    padding: 0 20px 25px;
  }
}

.home .works_area_txt {
  position: absolute;
  width: 100%;
  top: 50%;
  opacity: 0;
  text-align: center;
  z-index: 12;
  -webkit-transform: translate(0, 25px);
          transform: translate(0, 25px);
}

@media screen and (max-width: 768px) {
  .home .works_area_txt {
    position: relative;
    opacity: 1;
    -webkit-transform: translate(0, -25px);
            transform: translate(0, -25px);
  }
}

.home .works_area_txt_box {
  background: rgba(207, 183, 147, 0.8);
  display: inline-block;
  padding: 5px;
}

.home .works_area_txt_box_ttl {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .home .works_area_txt_box_ttl {
    border: 1px solid #2b2d30;
  }
}

.home .works_area_txt_box_ttl span {
  color: #fff;
  display: block;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .home .works_area_txt_box_ttl span {
    color: #2b2d30;
  }
}

.home .works_area_txt_box_ttl span.fs_en {
  font-size: 2.1rem;
}

@media screen and (max-width: 480px) {
  .home .works_area_txt_box_ttl span.fs_en {
    font-size: 1.4rem;
  }
}

.home .works_area_txt_box_ttl span.fs_jp {
  font-size: 1.4rem;
  margin-top: 10px;
}

@media screen and (max-width: 480px) {
  .home .works_area_txt_box_ttl span.fs_jp {
    font-size: 1.1rem;
  }
}

.home .works_area_txt p {
  color: #fff;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .home .works_area_txt p {
    color: #444;
  }
}

.home .works_area:before {
  opacity: 0;
  content: '';
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.home .works_area .more_btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 12;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .home .works_area .more_btn {
    display: none;
  }
}

.home .works_area .more_btn a {
  display: block;
}

.home .works_area .more_btn a:hover {
  opacity: 0.6;
}

.home .works_area:hover .more_btn, .home .works_area:hover:before {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home .works_area:hover .works_area_txt {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 768px) {
  .home .works_area:hover .works_area_txt {
    -webkit-transform: translate(0, -25px);
            transform: translate(0, -25px);
  }
}

.home .company_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .home .company_flex {
    display: block;
  }
}

.home .company_flex_left {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .home .company_flex_left {
    width: 100%;
  }
}

.home .company_flex_right {
  color: #fff;
  background: #444;
  padding: 4% 50px;
  width: 50%;
  max-width: 800px;
  position: absolute;
  right: 8%;
  z-index: 2;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 1050px) {
  .home .company_flex_right {
    position: initial;
  }
}

@media screen and (max-width: 768px) {
  .home .company_flex_right {
    width: 100%;
    padding: 6% 4%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

.home .company_flex_right h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

@media screen and (max-width: 1050px) {
  .home .company_flex_right h2 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .home .company_flex_right h2 {
    font-size: 2rem;
    margin-bottom: 4%;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .home .company_flex_right h2 {
    font-size: 1.8rem;
    margin-bottom: 6%;
  }
}

.home .company_flex_right p {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .home .company_flex_right p {
    font-size: 1.4rem;
    margin-top: 5%;
  }
}

@media screen and (max-width: 480px) {
  .home .company_flex_right p {
    margin-top: 7%;
  }
}

.home .company_flex_right p:nth-of-type(1) {
  margin-top: 0;
}

.home .company_flex_right .company_btn {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .home .company_flex_right .company_btn {
    text-align: center;
  }
}

.home .company_flex_right .company_btn a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 1.3rem 6rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #b2a28b;
  border: 2px solid #b2a28b;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  width: 95%;
  padding: 1.3rem 3rem;
  border: 1px solid #fff;
  background: none;
  max-width: 260px;
}

@media screen and (max-width: 480px) {
  .home .company_flex_right .company_btn a {
    width: 100%;
    max-width: 260px;
    padding: 1rem 3rem;
    margin: 0 auto;
  }
}

.home .company_flex_right .company_btn a:hover {
  color: #fff;
  background: #b2a28b;
}

.home .company_flex_right .company_btn a:before {
  position: absolute;
  content: '';
  width: 25px;
  height: 9px;
  background: url(../images/common/btn_arrow_brown.svg) no-repeat center/cover;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.home .company_flex_right .company_btn a:before {
  background: url(../images/common/btn_arrow_white.svg) no-repeat center/cover;
}

.home .company_flex_right .company_btn a:hover {
  color: #fff;
  background: #b2a28b;
  border: 1px solid #b2a28b;
}

.home .insta {
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .home .insta {
    padding-bottom: 8%;
  }
}

@media screen and (max-width: 480px) {
  .home .insta {
    padding-bottom: 10%;
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  pages                                                   */
.archive .mv, .category .mv, .page .mv, .single .mv, .error404 .mv {
  padding: 5% 0 2% 0;
  background: #b2a28b;
}

@media screen and (max-width: 1050px) {
  .archive .mv, .category .mv, .page .mv, .single .mv, .error404 .mv {
    padding: 10% 0 2% 0;
  }
}

@media screen and (max-width: 768px) {
  .archive .mv, .category .mv, .page .mv, .single .mv, .error404 .mv {
    padding: 0 0 2% 0;
  }
}

.archive .mv h1, .category .mv h1, .page .mv h1, .single .mv h1, .error404 .mv h1 {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .archive .mv h1, .category .mv h1, .page .mv h1, .single .mv h1, .error404 .mv h1 {
    text-align: center;
  }
}

.archive .mv h1 span, .category .mv h1 span, .page .mv h1 span, .single .mv h1 span, .error404 .mv h1 span {
  display: block;
  line-height: 1.4;
}

.archive .mv h1 .fs_jp, .category .mv h1 .fs_jp, .page .mv h1 .fs_jp, .single .mv h1 .fs_jp, .error404 .mv h1 .fs_jp {
  font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
  .archive .mv h1 .fs_jp, .category .mv h1 .fs_jp, .page .mv h1 .fs_jp, .single .mv h1 .fs_jp, .error404 .mv h1 .fs_jp {
    font-size: 1.4rem;
  }
}

.archive .mv h1 .fs_en, .category .mv h1 .fs_en, .page .mv h1 .fs_en, .single .mv h1 .fs_en, .error404 .mv h1 .fs_en {
  font-size: 3.2rem;
  text-transform: lowercase;
}

@media screen and (max-width: 480px) {
  .archive .mv h1 .fs_en, .category .mv h1 .fs_en, .page .mv h1 .fs_en, .single .mv h1 .fs_en, .error404 .mv h1 .fs_en {
    font-size: 2.2rem;
  }
}

.page-template-default #contents #pages {
  padding: 50px 0 120px;
}

@media screen and (max-width: 768px) {
  .page-template-default #contents #pages {
    padding: 5% 0 12%;
  }
}

@media screen and (max-width: 480px) {
  .page-template-default #contents #pages {
    padding: 7% 0 14%;
  }
}

.page-template-default #contents #pages .inner * {
  color: #fff;
}

.page-template-default #contents #pages .inner h2 {
  color: #b2a28b;
  position: relative;
  font-size: 2.6rem;
  padding-left: 21px;
  letter-spacing: 3px;
  margin: 70px 0 30px;
}

@media screen and (max-width: 767px) {
  .page-template-default #contents #pages .inner h2 {
    margin: 50px 0 40px;
  }
}

@media screen and (max-width: 480px) {
  .page-template-default #contents #pages .inner h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin: 30px 0 20px;
  }
}

.page-template-default #contents #pages .inner h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 100%;
  background: #b2a28b;
}

.page-template-default #contents #pages .inner h3 {
  color: #b2a28b;
  font-size: 2rem;
  position: relative;
  letter-spacing: 1.2px;
  margin: 40px 0 20px;
}

@media screen and (max-width: 767px) {
  .page-template-default #contents #pages .inner h3 {
    font-size: 1.6rem;
    margin: 25px 0 15px;
    line-height: 1.4;
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  category                                                   */
.category #contents .flex, .archive #contents .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .category #contents .flex, .archive #contents .flex {
    padding-top: 50px;
  }
}

.category #contents .works_area, .archive #contents .works_area {
  width: 50%;
  position: relative;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .category #contents .works_area, .archive #contents .works_area {
    background: #ddd;
    width: 90%;
    margin: 0 auto 50px;
  }
}

.category #contents .works_area a, .archive #contents .works_area a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 500px;
}

@media screen and (max-width: 768px) {
  .category #contents .works_area a, .archive #contents .works_area a {
    padding: 0;
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .category #contents .works_area a, .archive #contents .works_area a {
    min-height: 260px;
  }
}

.category #contents .works_area_txt, .archive #contents .works_area_txt {
  position: relative;
  opacity: 0;
  text-align: center;
  z-index: 12;
  -webkit-transform: translate(0, 25px);
          transform: translate(0, 25px);
}

@media screen and (max-width: 768px) {
  .category #contents .works_area_txt, .archive #contents .works_area_txt {
    opacity: 1;
    -webkit-transform: translate(0, -25px);
            transform: translate(0, -25px);
  }
}

.category #contents .works_area_txt_box, .archive #contents .works_area_txt_box {
  background: rgba(207, 183, 147, 0.8);
  display: inline-block;
  padding: 5px;
}

.category #contents .works_area_txt_box_ttl, .archive #contents .works_area_txt_box_ttl {
  display: inline-block;
  padding: 10px 40px;
  border: 1px solid #333;
}

.category #contents .works_area_txt_box_ttl span, .archive #contents .works_area_txt_box_ttl span {
  color: #333;
  display: block;
  line-height: 1;
}

.category #contents .works_area_txt_box_ttl span.fs_en, .archive #contents .works_area_txt_box_ttl span.fs_en {
  font-size: 2.1rem;
}

@media screen and (max-width: 480px) {
  .category #contents .works_area_txt_box_ttl span.fs_en, .archive #contents .works_area_txt_box_ttl span.fs_en {
    font-size: 1.4rem;
  }
}

.category #contents .works_area_txt_box_ttl span.fs_jp, .archive #contents .works_area_txt_box_ttl span.fs_jp {
  font-size: 1.4rem;
  margin-top: 10px;
}

@media screen and (max-width: 480px) {
  .category #contents .works_area_txt_box_ttl span.fs_jp, .archive #contents .works_area_txt_box_ttl span.fs_jp {
    font-size: 1.1rem;
  }
}

.category #contents .works_area_txt h3, .archive #contents .works_area_txt h3 {
  color: #333;
  font-size: 1.6rem;
  margin-top: 20px;
  font-weight: bold;
}

.category #contents .works_area .more_btn, .archive #contents .works_area .more_btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 12;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .category #contents .works_area .more_btn, .archive #contents .works_area .more_btn {
    display: none;
  }
}

.category #contents .works_area .more_btn a, .archive #contents .works_area .more_btn a {
  display: block;
}

.category #contents .works_area .more_btn a:hover, .archive #contents .works_area .more_btn a:hover {
  opacity: 0.6;
}

.category #contents .works_area:hover .more_btn, .category #contents .works_area:hover:before, .archive #contents .works_area:hover .more_btn, .archive #contents .works_area:hover:before {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.category #contents .works_area:hover .works_area_txt, .archive #contents .works_area:hover .works_area_txt {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@media screen and (max-width: 768px) {
  .category #contents .works_area:hover .works_area_txt, .archive #contents .works_area:hover .works_area_txt {
    -webkit-transform: translate(0, -25px);
            transform: translate(0, -25px);
  }
}

.category #contents a:hover, .archive #contents a:hover {
  -webkit-transition: 0.7s;
  transition: 0.7s;
  background: rgba(255, 255, 255, 0.4);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  single                                                   */
.single #contents {
  padding: 70px 0 90px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .single #contents {
    padding: 7% 0 9%;
  }
}

@media screen and (max-width: 480px) {
  .single #contents {
    padding: 9% 0 11%;
  }
}

.single #contents .inner {
  max-width: 860px;
  margin: 0 auto;
}

.single #contents h2 {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .single #contents h2 {
    margin-bottom: 5%;
  }
}

@media screen and (max-width: 480px) {
  .single #contents h2 {
    margin-bottom: 7%;
  }
}

.single .related {
  padding-bottom: 180px;
}

@media screen and (max-width: 768px) {
  .single .related {
    padding-bottom: 18%;
  }
}

.single .related h3 {
  text-align: center;
}

.single .related h3 img {
  margin: 0 auto 30px;
}

.single .related_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .single .related_box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .single .related_box li {
    width: 50%;
  }
}

.single .related_box li .hover_img {
  display: block;
  position: relative;
}

.single .related_box li .hover_img img {
  display: block;
  width: 100%;
  -webkit-transition: .3s;
  transition: .3s;
  height: 181px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .single .related_box li .hover_img img {
    height: 122px;
  }
}

.single .related_box li .hover_img figcaption {
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

.single .related_box li .hover_img figcaption .txt_box {
  position: relative;
  width: 100%;
  height: 100%;
}

.single .related_box li .hover_img figcaption .txt_box > p {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.single .related_box li .hover_img:hover figure img {
  -webkit-filter: brightness(60%);
          filter: brightness(60%);
}

.single .related_box li .hover_img:hover figure figcaption {
  opacity: 1;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  about                                                   */
.about #contents .page_navi_bottom {
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .about #contents .page_navi_bottom {
    padding: 5% 0;
  }
}

@media screen and (max-width: 480px) {
  .about #contents .page_navi_bottom {
    padding: 7% 0;
  }
}

.about #contents .page_navi_bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about #contents .page_navi_bottom ul li {
  width: 33%;
  text-align: center;
}

@media screen and (max-width: 736px) {
  .about #contents .page_navi_bottom ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .about #contents .page_navi_bottom ul li:nth-of-type(3) {
    margin-bottom: 0;
  }
}

.about #contents .page_navi_bottom ul li a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 1.3rem 6rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #b2a28b;
  border: 2px solid #b2a28b;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  width: 95%;
  padding: 1.3rem 3rem;
  border: 1px solid #fff;
  background: none;
  max-width: 260px;
}

@media screen and (max-width: 480px) {
  .about #contents .page_navi_bottom ul li a {
    width: 100%;
    max-width: 260px;
    padding: 1rem 3rem;
    margin: 0 auto;
  }
}

.about #contents .page_navi_bottom ul li a:hover {
  color: #fff;
  background: #b2a28b;
}

.about #contents .page_navi_bottom ul li a:before {
  position: absolute;
  content: '';
  width: 25px;
  height: 9px;
  background: url(../images/common/btn_arrow_brown.svg) no-repeat center/cover;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.about #contents .page_navi_bottom ul li a:hover {
  color: #fff;
  background: #b2a28b;
  border: 1px solid #b2a28b;
}

.about #contents .page_navi_bottom ul li:nth-of-type(1) a:before {
  width: 16px;
  height: 16px;
  background: url(../images/common/btn_flow_white.svg) no-repeat center/cover;
}

.about #contents .page_navi_bottom ul li:nth-of-type(2) a:before {
  width: 16px;
  height: 16px;
  background: url(../images/common/btn_works_white.svg) no-repeat center/cover;
}

.about #contents .page_navi_bottom ul li:nth-of-type(3) a:before {
  width: 16px;
  height: 16px;
  background: url(../images/common/btn_qa_white.svg) no-repeat center/cover;
}

.about_top {
  padding: 70px 0 90px;
}

.about_top * {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .about_top {
    padding: 7% 0 9%;
  }
}

@media screen and (max-width: 480px) {
  .about_top {
    padding: 9% 0 11%;
  }
}

.about_top_txt {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .about_top_txt {
    margin-bottom: 5%;
  }
}

@media screen and (max-width: 480px) {
  .about_top_txt {
    margin-bottom: 7%;
  }
}

.about_top_txt h2 {
  font-size: 2.2rem;
}

@media screen and (max-width: 480px) {
  .about_top_txt h2 {
    font-size: 1.8rem;
  }
}

.about_top_txt p {
  text-align: center;
  font-size: 1.6rem;
}

@media screen and (max-width: 480px) {
  .about_top_txt p {
    font-size: 1.4rem;
  }
}

.about_top_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .about_top_flex {
    display: block;
  }
}

.about_top_flex_left, .about_top_flex_right {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .about_top_flex_left, .about_top_flex_right {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .about_top_flex_left table, .about_top_flex_right table {
    margin-top: 30px;
  }
}

.about_top_flex_left table tr th, .about_top_flex_left table tr td, .about_top_flex_right table tr th, .about_top_flex_right table tr td {
  padding: 12px 20px;
  border-top: 1px solid #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
}

@media screen and (max-width: 480px) {
  .about_top_flex_left table tr th, .about_top_flex_left table tr td, .about_top_flex_right table tr th, .about_top_flex_right table tr td {
    padding: 12px 2%;
  }
}

@media screen and (max-width: 768px) {
  .about_top_flex_left table tr th, .about_top_flex_right table tr th {
    width: 30%;
  }
}

.about_top_gmap {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .about_top_gmap {
    margin-top: 5%;
  }
}

@media screen and (max-width: 480px) {
  .about_top_gmap {
    margin-top: 7%;
  }
}

@media screen and (max-width: 480px) {
  .about_top_gmap iframe {
    height: 200px;
  }
}

.about_bottom {
  background: #818181;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .about_bottom {
    padding-bottom: 12%;
  }
}

@media screen and (max-width: 480px) {
  .about_bottom {
    padding-bottom: 14%;
  }
}

.about_bottom * {
  color: #fff;
}

.about_bottom .inner {
  position: relative;
  z-index: 1;
  padding-top: 9%;
}

.about_bottom_txtimg {
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .about_bottom_txtimg {
    top: -14px;
  }
}

.about_bottom_staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 4% 50px;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 480px) {
  .about_bottom_staff {
    padding: 0 4% 50px;
  }
}

.about_bottom_staff_left {
  width: 49%;
}

@media screen and (max-width: 480px) {
  .about_bottom_staff_left {
    width: 100%;
  }
}

.about_bottom_staff_left h2 span {
  display: block;
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .about_bottom_staff_left h2 span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .about_bottom_staff_left h2 span {
    font-size: 1.8rem;
  }
}

.about_bottom_staff_right {
  width: 49%;
}

@media screen and (max-width: 480px) {
  .about_bottom_staff_right {
    width: 100%;
    margin-top: 50px;
  }
  .about_bottom_staff_right img {
    margin: auto;
  }
}

.about_bottom_staff_second {
  padding-top: 50px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-bottom: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  contact                                                   */
.contact #contents {
  color: #fff;
  padding: 90px 0 120px;
}

@media screen and (max-width: 768px) {
  .contact #contents {
    padding: 9% 0 12%;
  }
}

@media screen and (max-width: 480px) {
  .contact #contents {
    padding: 11% 0 14%;
  }
}

.contact #contents .inner {
  max-width: 860px;
}

.contact #contents input, .contact #contents button, .contact #contents textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.contact #contents p a {
  color: #54c2eb;
  text-decoration: underline;
}

.contact #contents p a:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact #contents .txt {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .contact #contents .txt {
    margin-bottom: 5%;
  }
}

@media screen and (max-width: 480px) {
  .contact #contents .txt {
    margin-bottom: 7%;
  }
}

@media screen and (max-width: 480px) {
  .contact #contents table {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .contact #contents table tr {
    display: block;
    width: 100%;
  }
}

.contact #contents table tr th, .contact #contents table tr td {
  padding: 20px 20px;
  border-top: 1px solid #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
}

@media screen and (max-width: 768px) {
  .contact #contents table tr th, .contact #contents table tr td {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .contact #contents table tr th, .contact #contents table tr td {
    padding: 16px 2%;
  }
}

.contact #contents table tr th {
  overflow: hidden;
  width: 30%;
}

@media screen and (max-width: 768px) {
  .contact #contents table tr th {
    width: 100%;
    border-bottom: none;
    text-align: left;
  }
}

.contact #contents table tr th .required {
  display: inline-block;
  color: #fff;
  background: #ce4a4a;
  padding: 2px 10px;
  font-size: 1.2rem;
  float: right;
}

@media screen and (max-width: 768px) {
  .contact #contents table tr th .required {
    float: none;
    margin-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .contact #contents table tr td {
    border-top: none;
    padding-top: 0;
  }
}

.contact #contents table tr td small {
  display: block;
  margin-top: 10px;
}

.contact #contents table tr td input, .contact #contents table tr td textarea {
  background: #fff;
  padding: 10px 10px;
  width: 100%;
  max-width: 314px;
}

@media screen and (max-width: 768px) {
  .contact #contents table tr td input, .contact #contents table tr td textarea {
    max-width: 100%;
  }
}

.contact #contents table tr td textarea {
  max-width: 570px;
}

@media screen and (max-width: 768px) {
  .contact #contents table tr td textarea {
    max-width: 100%;
  }
}

.contact #contents .checkarea {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .contact #contents .checkarea {
    margin-bottom: 5%;
  }
}

.contact #contents .checkarea .checkarea_box {
  margin-top: 20px;
}

.contact #contents .checkarea .mwform-radio-field {
  margin: 0 .5em 0;
}

.contact #contents .checkarea input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}

.contact #contents .checkarea input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}

.contact #contents .checkarea input[type=checkbox] + span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  display: inline-block;
  margin-right: 0.5em;
  font-weight: 400;
  color: #ddd;
}

.contact #contents .checkarea input[type=checkbox]:checked + span:before {
  content: "\f14a";
  font-weight: 400;
}

.contact #contents .btn_area {
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact #contents .btn_area {
    margin-top: 5%;
  }
}

@media screen and (max-width: 480px) {
  .contact #contents .btn_area {
    margin-top: 7%;
  }
}

.contact #contents .btn_area input, .contact #contents .btn_area button {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 1.3rem 6rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #b2a28b;
  border: 2px solid #b2a28b;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
  .contact #contents .btn_area input, .contact #contents .btn_area button {
    width: 100%;
    max-width: 260px;
    padding: 1rem 3rem;
    margin: 0 auto;
  }
}

.contact #contents .btn_area input:hover, .contact #contents .btn_area button:hover {
  color: #fff;
  background: #b2a28b;
}

.contact #contents .btn_area input:before, .contact #contents .btn_area button:before {
  position: absolute;
  content: '';
  width: 25px;
  height: 9px;
  background: url(../images/common/btn_arrow_brown.svg) no-repeat center/cover;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.contact #contents .btn_area input:before, .contact #contents .btn_area button:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  right: auto;
  left: 10px;
}

.contact #contents .mw_wp_form_preview .checkarea {
  display: none;
}

.contact #contents .mw_wp_form_preview table tr td small {
  display: none;
}

.contact #contents .mw_wp_form_preview .btn_area input {
  margin-bottom: 30px;
}

.contact #contents .mw_wp_form_complete .contace-copreat-text a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 1.3rem 6rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #b2a28b;
  border: 2px solid #b2a28b;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 480px) {
  .contact #contents .mw_wp_form_complete .contace-copreat-text a {
    width: 100%;
    max-width: 260px;
    padding: 1rem 3rem;
    margin: 0 auto;
  }
}

.contact #contents .mw_wp_form_complete .contace-copreat-text a:hover {
  color: #fff;
  background: #b2a28b;
}

.contact #contents .mw_wp_form_complete .contace-copreat-text a:before {
  position: absolute;
  content: '';
  width: 25px;
  height: 9px;
  background: url(../images/common/btn_arrow_brown.svg) no-repeat center/cover;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 480px) {
  .contact .cmn_cta .cmn_txt img {
    max-width: 280px;
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  service                                                   */
.service_mv {
  background: url(../images/service/photo01.jpg) no-repeat center/cover;
}

@media screen and (max-width: 768px) {
  .service_mv {
    background: url(../images/service/photo01_sp.jpg) no-repeat center/cover;
  }
}

.service_mv .inner {
  max-width: 100%;
  padding: 0;
}

.service_mv * {
  color: #fff;
}

.service_mv_txt {
  text-align: center;
  padding: 70px 20px;
  background: rgba(0, 0, 0, 0.6);
  mix-blend-mode: luminosity;
}

@media screen and (max-width: 768px) {
  .service_mv_txt {
    padding: 7% 2%;
  }
}

@media screen and (max-width: 480px) {
  .service_mv_txt {
    padding: 9% 4%;
  }
}

.service_mv_txt h2 {
  font-size: 2.8rem;
}

@media screen and (max-width: 480px) {
  .service_mv_txt h2 {
    font-size: 1.8rem;
  }
}

.service_mv_txt h2 span {
  position: relative;
  padding: 0 13px;
}

.service_mv_txt h2 span:before, .service_mv_txt h2 span:after {
  position: absolute;
  content: '';
  width: 9.3px;
  height: 36px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.service_mv_txt h2 span:before {
  left: 0;
  background: url(../images/service/title-img-left.svg) no-repeat center/cover;
}

.service_mv_txt h2 span:after {
  right: 0;
  background: url(../images/service/title-img-right.svg) no-repeat center/cover;
}

.service_mv_txt p {
  text-align: center;
  font-size: 1.6rem;
}

@media screen and (max-width: 480px) {
  .service_mv_txt p {
    font-size: 1.4rem;
  }
}

.service_navi {
  padding-top: 5%;
}

.service_navi .pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 40px;
  max-width: 650px;
  margin: 0 auto;
}

.service_navi .pagenavi li {
  width: 30%;
  max-width: 140px;
}

.service_navi .pagenavi li a {
  color: #fff;
  position: relative;
  display: block;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.service_navi .pagenavi li a:before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border: 6px solid transparent;
  border-top: 7px solid #fff;
}

.service_navi .pagenavi li a:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.service .service_works {
  color: #fff;
  padding: 70px 0 120px;
}

@media screen and (max-width: 768px) {
  .service .service_works {
    padding: 7% 0 12%;
  }
}

@media screen and (max-width: 480px) {
  .service .service_works {
    padding: 9% 0 14%;
  }
}

.service .service_works_txt {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .service .service_works_txt {
    font-size: 1.6rem;
    margin-bottom: 12%;
  }
}

@media screen and (max-width: 480px) {
  .service .service_works_txt {
    margin-bottom: 14%;
  }
}

.service .service_works_img {
  max-width: 740px;
  margin: 0 auto 110px;
}

@media screen and (max-width: 768px) {
  .service .service_works_img {
    margin: 0 auto 11%;
  }
}

@media screen and (max-width: 480px) {
  .service .service_works_img {
    margin: 0 auto 13%;
  }
}

.service .service_works_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service .service_works_flex_box {
  width: 32%;
  padding: 30px 15px;
  background: #2b2d30;
}

@media screen and (max-width: 768px) {
  .service .service_works_flex_box {
    display: block;
    width: 100%;
    margin-bottom: 60px;
  }
}

.service .service_works_flex_box:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.service .service_works_flex_box:nth-of-type(2n) dt {
  padding-left: 0;
}

.service .service_works_flex_box:nth-of-type(1) dt h3 {
  background: url(../images/service/step01.svg) no-repeat 0 0/59px 62px;
}

.service .service_works_flex_box:nth-of-type(2) dt h3 {
  background: url(../images/service/step02.svg) no-repeat 0 0/59px 62px;
}

.service .service_works_flex_box:nth-of-type(3) dt h3 {
  background: url(../images/service/step03.svg) no-repeat 0 0/59px 62px;
}

.service .service_works_flex_box dt h3 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  padding: 10px 10px 10px 54px;
  border-bottom: 1px solid #8b8b8b;
}

@media screen and (max-width: 768px) {
  .service .service_works_flex_box dt h3 {
    font-size: 1.8rem;
  }
}

.service .service_flow {
  background: #2b2d30 url(../images/service/flow_bg.jpg) no-repeat center top/cover;
}

@media screen and (max-width: 768px) {
  .service .service_flow {
    background: #2b2d30 url(../images/service/flow_bg_sp.jpg) no-repeat center top/cover;
  }
}

.service .service_flow_mv {
  padding: 6% 0;
}

@media screen and (max-width: 768px) {
  .service .service_flow_mv {
    padding: 6% 0;
  }
}

@media screen and (max-width: 480px) {
  .service .service_flow_mv {
    padding: 8% 0;
  }
}

.service .service_flow_mv_txt {
  color: #fff;
  text-align: center;
}

.service .service_flow_mv_txt * {
  font-weight: bold;
}

.service .service_flow_mv_txt h2 {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .service .service_flow_mv_txt h2 {
    margin-bottom: 30px;
  }
}

.service .service_flow_mv_txt h2 span {
  display: block;
}

.service .service_flow_mv_txt h2 span.fs_en img {
  max-width: 256px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .service .service_flow_mv_txt h2 span.fs_en img {
    max-width: 156px;
  }
}

.service .service_flow_mv_txt h2 span.fs_jp {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .service .service_flow_mv_txt h2 span.fs_jp {
    font-size: 1.6rem;
  }
}

.service .service_flow_mv_txt p {
  font-size: 1.6rem;
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  .service .service_flow_mv_txt p {
    font-size: 1.4rem;
  }
}

.service .service_flow_mv_txt p small {
  color: #e73e3e;
}

.service .service_flow_list {
  position: relative;
  padding: 0 0 13%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service .service_flow_list li {
  padding: 45px 10px 20px;
  background-repeat: no-repeat;
  background-position: center top;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  background-size: 20px 32px;
}

@media screen and (max-width: 768px) {
  .service .service_flow_list li {
    width: 9%;
    padding: 10% 2% 3%;
    background-size: auto 34px;
  }
}

@media screen and (max-width: 480px) {
  .service .service_flow_list li {
    width: 30px;
    min-height: 300px;
    padding: 46px 1% 3%;
    background-size: auto 26px;
  }
}

.service .service_flow_list li:nth-of-type(1) {
  background-image: url(../images/service/number01.svg);
}

.service .service_flow_list li:nth-of-type(2) {
  background-image: url(../images/service/number02.svg);
}

.service .service_flow_list li:nth-of-type(3) {
  background-image: url(../images/service/number03.svg);
}

.service .service_flow_list li:nth-of-type(4) {
  background-image: url(../images/service/number04.svg);
}

.service .service_flow_list li:nth-of-type(5) {
  background-image: url(../images/service/number05.svg);
}

.service .service_flow_list li:nth-of-type(6) {
  background-image: url(../images/service/number06.svg);
}

.service .service_flow_list li:nth-of-type(7) {
  background-image: url(../images/service/number07.svg);
}

.service .service_flow_list li:nth-of-type(8) {
  background-image: url(../images/service/number08.svg);
}

.service .service_flow_list li:nth-of-type(9) {
  background-image: url(../images/service/number09.svg);
}

.service .service_flow_list li * {
  color: #fff;
}

.service .service_flow_list li h3 {
  position: relative;
  font-size: 2.2rem;
  cursor: pointer;
  display: inline-block;
  padding-top: 42px;
}

@media screen and (max-width: 768px) {
  .service .service_flow_list li h3 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .service .service_flow_list li h3 {
    font-size: 1.6rem;
  }
}

.service .service_flow_list li h3:before {
  -webkit-animation: flash 2s linear infinite;
          animation: flash 2s linear infinite;
  position: absolute;
  content: '';
  width: 5px;
  height: 28px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/service/disc.png) no-repeat center center/cover;
}

@media screen and (min-width: 769px) {
  .service .service_flow_list li h3:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .service .service_flow_list li h3::after {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 1px;
    height: 100%;
    background: #fff;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .service .service_flow_list li h3:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.service .service_flow_list li p {
  font-size: 1.6rem;
  display: none;
  position: absolute;
  top: 0;
  height: 100%;
  background: #333;
  padding: 5% 5% 60px 5%;
  z-index: 100;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .service .service_flow_list li p {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 260px;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    z-index: 9999;
  }
}

@media screen and (max-width: 480px) {
  .service .service_flow_list li p {
    height: auto;
    min-height: 260px;
  }
}

.service .service_flow_list li p .service_flow_close {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 30px;
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
  text-align: center;
  cursor: pointer;
  color: #e73e3e;
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  .service .service_flow_list li p {
    font-size: 1.4rem;
  }
}

@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

.service .service_qa {
  padding: 70px 0 90px;
}

@media screen and (max-width: 768px) {
  .service .service_qa {
    padding: 7% 0 9%;
  }
}

@media screen and (max-width: 480px) {
  .service .service_qa {
    padding: 9% 0 11%;
  }
}

.service .service_qa * {
  color: #fff;
}

.service .service_qa .inner {
  max-width: 840px;
}

.service .service_qa h2 {
  text-align: center;
  margin-bottom: 70px;
}

.service .service_qa h2 span {
  display: block;
}

.service .service_qa h2 span.fs_en img {
  max-width: 210px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .service .service_qa h2 span.fs_en img {
    max-width: 156px;
  }
}

.service .service_qa h2 span.fs_jp {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .service .service_qa h2 span.fs_jp {
    font-size: 1.6rem;
  }
}

.service .service_qa .accordion_area .accordion_one {
  border-bottom: 1px solid #ccc;
}

.service .service_qa .accordion_area .accordion_one:nth-of-type(1) {
  border-top: 1px solid #ccc;
}

.service .service_qa .accordion_area .accordion_one:nth-of-type(1) .ac_inner {
  display: block;
}

.service .service_qa .accordion_area .accordion_one .ac_header {
  padding: 20px;
  position: relative;
  z-index: +1;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

.service .service_qa .accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

.service .service_qa .accordion_area .accordion_one .ac_header .i_box:before, .service .service_qa .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}

.service .service_qa .accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #ccc;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.service .service_qa .accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #ccc;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  -webkit-transition: .3s;
  transition: .3s;
}

.service .service_qa .accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}

.service .service_qa .accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 0 2rem 1.5rem 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 480px) {
  .service .service_qa .accordion_area .accordion_one .ac_inner {
    padding: 15px 0;
  }
}

@media screen and (max-width: 736px) {
  .service .service_qa .accordion_area .accordion_one .ac_header {
    padding: 1.5rem 2rem 1.5rem 1.0rem;
  }
  .service .service_qa .accordion_area .accordion_one .ac_header .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
  .service .service_qa .accordion_area .accordion_one .ac_header .i_box:before {
    width: 15px;
  }
  .service .service_qa .accordion_area .accordion_one .ac_header .i_box:after {
    height: 15px;
    right: 7px;
  }
  .service .service_qa .accordion_area .accordion_one .ac_inner {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  }
}

.service .service_qa .p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}

.service .service_qa .p-faq__headinner p.p-faq__q-txt {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-top: 0;
}

@media screen and (max-width: 736px) {
  .service .service_qa .p-faq__headinner p.p-faq__q-txt {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .service .service_qa .p-faq__headinner p.p-faq__q-txt {
    font-size: 1.6rem;
  }
}

.service .service_qa .p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}

.service .service_qa .p-faq__bodyinner p.p-faq__a-txt {
  font-size: 1.6rem;
  margin-top: 0;
}

@media screen and (max-width: 480px) {
  .service .service_qa .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 736px) {
  .service .service_qa .p-faq__bodyinner {
    padding-left: 25px;
  }
  .service .service_qa .p-faq__bodyinner::before {
    font-size: 14px;
  }
  .service .service_qa .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 14px;
  }
}

.service .page_navi_bottom {
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .service .page_navi_bottom {
    padding: 5% 0;
  }
}

@media screen and (max-width: 480px) {
  .service .page_navi_bottom {
    padding: 7% 0;
  }
}

.service .page_navi_bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service .page_navi_bottom ul li {
  width: 33%;
  text-align: center;
}

@media screen and (max-width: 736px) {
  .service .page_navi_bottom ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .service .page_navi_bottom ul li:nth-of-type(3) {
    margin-bottom: 0;
  }
}

.service .page_navi_bottom ul li a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 1.3rem 6rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #b2a28b;
  border: 2px solid #b2a28b;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  width: 95%;
  padding: 1.3rem 3rem;
  border: 1px solid #fff;
  background: none;
  max-width: 260px;
}

@media screen and (max-width: 480px) {
  .service .page_navi_bottom ul li a {
    width: 100%;
    max-width: 260px;
    padding: 1rem 3rem;
    margin: 0 auto;
  }
}

.service .page_navi_bottom ul li a:hover {
  color: #fff;
  background: #b2a28b;
}

.service .page_navi_bottom ul li a:before {
  position: absolute;
  content: '';
  width: 25px;
  height: 9px;
  background: url(../images/common/btn_arrow_brown.svg) no-repeat center/cover;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.service .page_navi_bottom ul li a:hover {
  color: #fff;
  background: #b2a28b;
  border: 1px solid #b2a28b;
}

.service .page_navi_bottom ul li:nth-of-type(1) a:before {
  width: 16px;
  height: 8px;
  background: url(../images/common/btn_works.svg) no-repeat center/cover;
}

.service .page_navi_bottom ul li:nth-of-type(2) a:before {
  width: 16px;
  height: 14px;
  background: url(../images/common/btn_home.svg) no-repeat center/cover;
}

.service .page_navi_bottom ul li:nth-of-type(3) a:before {
  width: 17px;
  height: 16px;
  background: url(../images/common/btn_about.svg) no-repeat center/cover;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  404                                                   */
.error404 #contents {
  text-align: center;
  padding: 90px 0 120px;
}

@media screen and (max-width: 768px) {
  .error404 #contents {
    padding: 9% 0 12%;
  }
}

@media screen and (max-width: 480px) {
  .error404 #contents {
    padding: 11% 0 14%;
  }
}

.error404 #contents .error-disc {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .error404 #contents .error-disc {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .error404 #contents .error-disc {
    font-size: 1.6rem;
  }
}

.error404 #contents .btn {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 1.3rem 6rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #b2a28b;
  border: 2px solid #b2a28b;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 480px) {
  .error404 #contents .btn {
    width: 100%;
    max-width: 260px;
    padding: 1rem 3rem;
    margin: 0 auto;
  }
}

.error404 #contents .btn:hover {
  color: #fff;
  background: #b2a28b;
}

.error404 #contents .btn:before {
  position: absolute;
  content: '';
  width: 25px;
  height: 9px;
  background: url(../images/common/btn_arrow_brown.svg) no-repeat center/cover;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
/*# sourceMappingURL=style.css.map */