@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/* ======================================================================
 common style index
・reset
・setting
・mixin
・base
・sprite
・utility
・component
・layout
・z-index
====================================================================== */
/* ======================================================================
 reset
====================================================================== */
html {
  overflow-y: scroll;
}

body {
  line-height: 1;
  color: #000;
}

/* html5doctor.com Reset Stylesheet v1.6.1
  Last Updated: 2010-09-17 Author: Richard Clark - http://richclarkdesign.com Twitter: @rich_clark */
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details,
dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup,
html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section,
small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* YUI 3.4.1 (build 4118) Copyright 2011 Yahoo! Inc. All rights reserved.
Licensed under the BSD License. http://yuilibrary.com/license/ */
/* ======================================================================
 setting
====================================================================== */
/* ======================================================================
 base
====================================================================== */
html {
  font-size: calc(10/750*100vw);
  position: relative;
  overflow-x: hidden;
}

@media (min-width: 969px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 1280px) and (min-width: 969px) {
  html {
    zoom: .8;
  }
}
body {
  position: relative;
  background: #fff;
  color: #2B2B2E;
  font-family: "FOT-筑紫ゴシック Pr5 R", sans-serif;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem;
  color: #2B2B2E;
}
body.js_page_trans {
  opacity: 1;
}

html, body {
  width: 100%;
  height: 100%;
}

.page {
  width: 100%;
  margin: 0 auto;
}

/* border-box */
* {
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* h1 - h6 */
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

/* a */
a {
  color: #2B2B2E;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #2B2B2E;
  text-decoration: none;
  opacity: .7;
}
a:active {
  color: #2B2B2E;
  text-decoration: none;
}

a[href^="tel"] {
  color: #2B2B2E;
}

/* Text Highlight */
/* button */
button {
  display: block;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

/* input */
input, textarea, select {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  border-image: none;
  background: transparent;
  font-family: inherit !important;
  border-radius: 0;
  appearance: none;
}
input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #2B2B2E;
}

/* placeholder */
input:placeholder-shown, textarea:placeholder-shown {
  color: #2B2B2E;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #2B2B2E;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #2B2B2E;
  opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #2B2B2E;
  opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #2B2B2E;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #2B2B2E;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #2B2B2E;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: #2B2B2E;
  opacity: 1;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #2B2B2E;
  opacity: 1;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: #2B2B2E;
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100%;
}

/* ======================================================================
 sprite
====================================================================== */
/* =================================
 hoge
================================= */
/* =================================
 hoge
================================= */
/* =================================
 hoge
================================= */
/* ======================================================================
 utility
====================================================================== */
/* =================================
 layout
================================= */
.cf:after {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  height: 0;
  content: '\0020';
}

@media screen and (min-width: 1025px) {
  .u_pc {
    display: block;
  }

  .u_sp {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .u_pc {
    display: none;
  }

  .u_sp {
    display: block;
  }
}
.u_fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.u_body_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* =================================
 text pt
================================= */
.u_txt_1 {
  font-size: 1em;
  line-height: 1;
  letter-spacing: .1em;
}

.u_txt_2 {
  font-size: 1em;
  line-height: 1;
  letter-spacing: .1em;
}

.u_txt_3 {
  font-size: 1em;
  line-height: 1;
  letter-spacing: .1em;
}

.u_txt_4 {
  font-size: 1em;
  line-height: 1;
  letter-spacing: .1em;
}

.u_txt_5 {
  font-size: 1em;
  line-height: 1;
  letter-spacing: .1em;
}

.u_txt_6 {
  font-size: 1em;
  line-height: 1;
  letter-spacing: .1em;
}

/* =================================
 text weight
================================= */
.u_lighter {
  font-weight: lighter;
}

.u_bold {
  font-weight: bold;
}

/* =================================
 text marker
================================= */
.u_marker_1_1 {
  background: linear-gradient(to bottom, #ff6 0%, #ff6 100%);
}

.u_marker_1_2 {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, #ff6 100%);
}

/* =================================
 box-shadow
================================= */
.u_box_shadow_1 {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* =================================
 gradation
================================= */
.u_gradient_1 {
  background: linear-gradient(180deg, #a9e9f3 0%, #a9e9f3 10%, #2d9dae 25%, #2d9dae 37%, #2d9dae 50%, #2d9dae 83%, #bdf5fd 100%);
}

/* =================================
 animation
================================= */
/* =================================
 hoge
================================= */
/* ======================================================================
 component
====================================================================== */
/* =================================
 title
================================= */
/* =================================
 buttons
================================= */
/* =================================
 icon
================================= */
/* =================================
 alerts
================================= */
/* =================================
 pager
================================= */
.c_pager_num {
  padding: 50px 0 100px;
}
.c_pager_num .inner {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c_pager_num .inner .current {
  background: #333;
  color: #fff;
}
.c_pager_num .inner .page-numbers {
  border: 1px solid #333;
  text-align: center;
  padding: 10px;
  margin: 0 10px;
}
@media screen and (max-width: 968px) {
  .c_pager_num .inner .page-numbers {
    text-align: center;
    padding: 11px 13px;
    margin: 0 5px;
  }
}
.c_pager_num .inner .page-numbers:hover {
  background: #333;
  color: #fff;
}
.c_pager_num .inner .page-numbers.dots {
  border: none;
}
.c_pager_num .inner .page-numbers.dots:hover {
  background: #fff;
  color: #000;
}

.c_pager_prev_next {
  max-width: 1330px;
  padding: 0 15px;
  width: 100%;
  margin: 100px auto 0;
}
.c_pager_prev_next ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 968px) {
  .c_pager_prev_next ul {
    display: block;
  }
}
.c_pager_prev_next ul li {
  margin: 0 20px;
}
@media screen and (max-width: 968px) {
  .c_pager_prev_next ul li {
    margin: 20px 0;
  }
}
.c_pager_prev_next ul a {
  font-size: 18px;
  background: #6b6967;
  color: #fff;
  padding: 5px 30px;
  border-radius: 4px;
  display: block;
}
@media screen and (max-width: 968px) {
  .c_pager_prev_next ul a {
    padding: 15px 30px;
    text-align: center;
  }
}

/* =================================
 table
================================= */
/* =================================
 forms
================================= */
/* =================================
 list
================================= */
/* =================================
 item
================================= */
/* =================================
 hoge
================================= */
.arrow {
  display: inline-block;
  position: relative;
  padding: 10px 25px 10px 0;
}
.arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: -11px;
  bottom: 0;
  right: -7%;
  margin: auto;
  width: 25px;
  height: 10px;
  border-bottom: 1px solid #000;
  transition: .5s ease;
}
.arrow:hover::after, .arrow:hover::before {
  right: -12%;
}
.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -7%;
  margin: auto;
  width: 7px;
  height: 5px;
  border-top: 1px solid #000;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  transition: .5s ease;
}
.arrow.white::before {
  border-top: 1px solid #fff;
}
.arrow.white::after {
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 968px) {
  .h-sp {
    display: none !important;
  }

  .br-sp {
    display: block;
  }
}
@media screen and (min-width: 969px) {
  .h-pc {
    display: none !important;
  }

  .br-pc {
    display: block;
  }
}
.accordion-ttl {
  position: relative;
}

.accordion-ttl::after {
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  right: 4rem;
  transition: all 0.3s;
  transform: translateY(-50%);
}

.accordion-ttl.is-close::after {
  background-image: url(../img/common/sp/ico-plus.svg);
  transition: all 0.3s;
}

.accordion-ttl.is-open::after {
  background-image: url(../img/common/sp/ico-minus.svg);
  transition: all 0.3s;
}

.inner {
  max-width: 1330px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.l_content {
  margin-top: 175px;
}

.l_breadcrumbs {
  background-color: #B3B3B3;
  padding: 6px;
  position: fixed;
  z-index: 99;
  top: 120px;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
}
.l_breadcrumbs .breadcrumbs {
  max-width: 1480px;
  margin: 0 auto;
}
.l_breadcrumbs .breadcrumbs span, .l_breadcrumbs .breadcrumbs a {
  font-size: 13px;
  line-height: calc(34/16);
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 300;
}
.l_breadcrumbs.fixed {
  top: 80px;
}

.d-flex {
  display: flex;
}

@media screen and (max-width: 968px) {
  .l_content {
    margin-top: 22rem;
  }

  .l_breadcrumbs {
    background-color: #B3B3B3;
    margin-top: 0;
    padding: 2rem 3rem;
    top: 8rem;
  }
  .l_breadcrumbs .breadcrumbs span, .l_breadcrumbs .breadcrumbs a {
    font-size: 2.4rem;
    line-height: calc(36/24);
  }
  .l_breadcrumbs.fixed {
    top: 8rem;
  }
}
.title {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.sub-ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: calc(32/20);
  color: #988575;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: .4rem;
}

.sub-ttl2 {
  font-size: 18px;
  font-weight: 500;
  line-height: calc(28/18);
  color: #6B6967;
  margin-top: 20px;
}

.intro-txt {
  color: #2B2B2E;
  font-size: 15px;
  line-height: calc(28/15);
  font-weight: 400;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  background-color: #988575;
  font-size: 15px;
  line-height: 2.6;
  min-width: 220px;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  margin-top: 35px;
  margin-bottom: 50px;
}
@media screen and (min-width: 969px) {
  .btn {
    height: 4rem;
  }
}

.mw-1030 {
  max-width: 1030px;
}

.btn-outline {
  margin-top: 25px;
  margin-bottom: 0;
  line-height: calc(40/15);
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  border-radius: 5px;
  border: 1px solid #fff;
  transition: all 0.25s ease-in-out;
  color: #fff;
}
.btn-outline:hover {
  background-color: #988575;
  border: 1px solid #988575;
  color: #fff;
}

.btn-bg {
  background-color: #988575;
  border-color: #988575;
  color: #fff !important;
}

.mw-990 {
  max-width: 990px;
}

.mw-1030 {
  max-width: 1030px;
}

.mw-1330 {
  max-width: 1330px;
}

.mw-1920 {
  max-width: 1950px;
}

.mw-1280 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.mw-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.mw-1180 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.mw-1810 {
  max-width: 1810px;
}

#modelhouse-nav {
  margin-top: 70px;
}
#modelhouse-nav .modelhouse-list {
  display: flex;
}
#modelhouse-nav .modelhouse-list .modelhouse-items:nth-child(1) {
  background: url(../img/competition/competition_04.jpg) no-repeat;
  background-size: cover;
}
#modelhouse-nav .modelhouse-list .modelhouse-items:nth-child(2) {
  background: url(../img/competition/competition_05.jpg) no-repeat;
  background-size: cover;
}
#modelhouse-nav .modelhouse-list .modelhouse-items:nth-child(3) {
  background: url(../img/competition/competition_06.jpg) no-repeat;
  background-size: cover;
}
#modelhouse-nav .modelhouse-list .modelhouse-items {
  position: relative;
  width: 33.333%;
  height: 380px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
#modelhouse-nav .modelhouse-list .modelhouse-items .modalhouse-link {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  padding: 0 0 4.5% 6%;
  letter-spacing: 3px;
}
#modelhouse-nav .modelhouse-list .modelhouse-items .modalhouse-link .h3_style {
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  padding-bottom: 10px;
  color: #fff;
}
#modelhouse-nav .modelhouse-list .modelhouse-items .modalhouse-link .txt {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}

.t_list-gallery {
  display: flex;
  gap: 50px;
}
.t_list-gallery a {
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.t_list-gallery li {
  position: relative;
  width: calc(100%/3);
}
.t_list-gallery .gallery-box-list-new {
  position: absolute;
  top: 0;
  background: #988575;
  left: 0;
  color: white;
  padding: 18px 11px;
  line-height: 1;
  z-index: 1;
  font-size: 12px;
  line-height: calc(14.4/12);
  font-weight: 500;
}
.t_list-gallery .ttl-en {
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  line-height: calc(20.4/17);
  font-weight: 500;
  text-align: center;
  color: #2B2B2E;
  margin-top: 30px;
  margin-bottom: 20px;
}
.t_list-gallery .ttl-jp {
  font-size: 21px;
  line-height: calc(32/21);
  font-weight: 500;
  text-align: center;
  color: #2B2B2E;
  margin-bottom: 20px;
  margin-top: 30px;
}
.t_list-gallery .txt {
  font-size: 15px;
  line-height: calc(28/15);
  font-weight: 400;
  color: #2B2B2E;
}

.btn-gallery {
  text-align: center;
  margin-top: 65px;
}
.btn-gallery .btn-outline-pri {
  border: 1px solid #988575;
  width: 100%;
  text-align: center;
  max-width: 600px;
  letter-spacing: 4px;
  color: #988575;
  padding: 15px 80px;
  display: inline-block;
  font-size: 15px;
  line-height: calc(18/15);
  font-weight: 400;
  border-radius: 4px;
}

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

.txt-left {
  text-align: left !important;
}

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

@media screen and (max-width: 968px) {
  .inner {
    padding: 0 4rem;
  }

  .title {
    font-size: 4.2rem;
    margin-bottom: 2rem;
  }

  .sub-ttl {
    font-size: 3rem;
    letter-spacing: 0.05em;
  }

  .sub-ttl2 {
    font-size: 2.5rem;
    margin-top: 3.5rem;
  }

  .intro-txt {
    margin-top: 3.5rem;
    font-size: 2.6rem;
    line-height: calc(40/26);
  }

  .btn {
    font-size: 2.2rem;
    min-width: 32rem;
    border-radius: .4rem;
    margin-top: 3.5rem;
    margin-bottom: 5rem;
  }

  #modelhouse-nav {
    margin-top: 10rem;
    padding: 9.5rem;
    background-color: #2B2B2E;
  }
  #modelhouse-nav .modelhouse-list {
    flex-wrap: wrap;
  }
  #modelhouse-nav .modelhouse-list .modelhouse-items {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    background: none !important;
  }
  #modelhouse-nav .modelhouse-list .modelhouse-items:last-child {
    margin-bottom: 0;
  }
  #modelhouse-nav .modelhouse-list .modelhouse-items .modalhouse-link {
    padding: 0 0 2rem 0;
    letter-spacing: .6rem;
    height: 33.2rem;
    align-items: center;
  }
  #modelhouse-nav .modelhouse-list .modelhouse-items .modalhouse-link .h3_style {
    font-size: 3.6rem;
    line-height: 4rem;
    padding-bottom: 1rem;
  }
  #modelhouse-nav .modelhouse-list .modelhouse-items .modalhouse-link .txt {
    font-size: 2.4rem;
  }
  #modelhouse-nav .modelhouse-list .modelhouse-items .ttl {
    display: block;
    font-size: 3.2rem;
    font-weight: 500;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
  }
  #modelhouse-nav .modelhouse-list .modelhouse-items .txt2 {
    font-size: 2.2rem;
    line-height: calc(32/22);
  }
  #modelhouse-nav .modelhouse-list .modelhouse-items:nth-child(1) .modalhouse-link {
    background: url(../img/competition/competition_04.jpg) no-repeat;
    background-size: cover;
  }
  #modelhouse-nav .modelhouse-list .modelhouse-items:nth-child(2) .modalhouse-link {
    background: url(../img/competition/competition_05.jpg) no-repeat;
    background-size: cover;
  }
  #modelhouse-nav .modelhouse-list .modelhouse-items:nth-child(3) .modalhouse-link {
    background: url(../img/competition/competition_06.jpg) no-repeat;
    background-size: cover;
  }

  .btn-outline {
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 2rem;
    line-height: calc(43/20);
    font-weight: 400;
    border-radius: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .t_list-gallery {
    gap: 0;
    flex-wrap: wrap;
  }
  .t_list-gallery li {
    width: 100%;
  }
  .t_list-gallery li + li {
    margin-top: 5rem;
  }
  .t_list-gallery .gallery-box-list-new {
    padding: 3rem 2rem;
    font-size: 2rem;
    line-height: calc(24/20);
    font-weight: 500;
  }
  .t_list-gallery .ttl-en {
    font-size: 2.4rem;
    line-height: calc(28.8/24);
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  .t_list-gallery .ttl-jp {
    font-size: 3.2rem;
    line-height: calc(64/32);
    font-weight: 500;
    margin-bottom: 2rem;
    margin-top: 3rem;
  }
  .t_list-gallery .txt {
    font-size: 2.4rem;
    line-height: calc(36/24);
    font-weight: 400;
  }

  .btn-gallery {
    margin-top: 4rem;
  }
  .btn-gallery .btn-outline-pri {
    max-width: 100%;
    padding: 2rem 4rem;
    font-size: 2.6rem;
    line-height: calc(31/26);
    font-weight: 400;
    background-color: #988575;
    color: #fff;
    letter-spacing: 0;
  }
}
.english {
  font-family: "Urbanist", sans-serif;
}

.japan {
  font-family: "FOT-筑紫ゴシック Pr5 R", sans-serif;
}

.p-0 {
  padding: 0 !important;
}

.border {
  border-top: 1px solid #6B6967;
}

@media screen and (max-width: 968px) {
  .border {
    border-top: 0.1rem solid #6B6967;
  }
}
.btn2 {
  background-color: #6B6967;
  line-height: 1.5;
  border-radius: 0;
  padding: 1.5rem;
  height: auto;
  position: relative;
  width: 100%;
}
.btn2 .japan {
  font-size: 2.8rem;
}
.btn2 .english {
  font-size: 2.2rem;
}
.btn2::after {
  position: absolute;
  content: '›';
  font-size: 3.6rem;
  right: 3rem;
  top: 25%;
}

@media screen and (max-width: 968px) {
  .according {
    margin-bottom: 2rem;
  }
  .according .according-button {
    background-color: #988575;
    padding: 1.5rem 3rem;
  }
  .according .according-button .text {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 3rem;
    position: relative;
  }
  .according .according-button .text::after {
    position: absolute;
    content: '+';
    font-size: 4rem;
    right: 0;
    bottom: -0.5rem;
  }
  .according .according-button.is-open .text::after {
    content: '-';
  }
  .according .according-cont {
    display: none;
  }
  .according .according-cont .content-ttl {
    display: block;
    font-size: 3rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 2rem;
    line-height: calc(44/30);
    letter-spacing: 0.05em;
  }
  .according .according-cont .txt {
    font-size: 2.6rem;
    line-height: calc(52/26);
    text-align: justify;
  }
}
.cs-btn-gray {
  background-color: gray;
  color: #ffffff !important;
}

.slider-over {
  overflow-x: hidden;
}

.slider-wrapper {
  position: relative;
  margin: 0 auto;
  overflow-x: hidden;
}
@media screen and (max-width: 968px) {
  .slider-wrapper {
    padding-top: 6rem;
  }
}
.slider-wrapper .slider-gallery-wrapper {
  position: relative;
  overflow: visible;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 968px) {
  .slider-wrapper .slider-gallery-wrapper {
    overflow-x: hidden;
  }
}
.slider-wrapper .slick-active {
  background-color: #4C4948 !important;
}
.slider-wrapper .slick-slide {
  width: 1000px;
  height: auto;
  margin: 0 17.5px;
  opacity: .2;
}
.slider-wrapper .slick-slide.slick-active {
  opacity: 1;
}
.slider-wrapper .slick-slide .zoom-img {
  height: 700px;
  width: 100%;
}
.slider-wrapper .slick-dots li button:before {
  display: none;
}
.slider-wrapper .slick-dots li {
  height: 3px;
  background-color: #D1CCC7;
}
.slider-wrapper .slick-dots li .d-item {
  width: 100%;
  height: 3px;
}
.slider-wrapper .slider-gallery .slick-list {
  overflow: visible;
}
.slider-wrapper .slider-gallery .slick-slide .zoom-img {
  object-fit: cover;
}
.slider-wrapper .slider-gallery .slick-active {
  background-color: #F2F2F2 !important;
}
.slider-wrapper .slider_dots_wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1015px;
}
.slider-wrapper .slider_dots_wrapper .slick-slide {
  margin: 0 7.5px;
}
.slider-wrapper .slider_dots_wrapper .slick-dots {
  bottom: -55px;
}
.slider-wrapper .slider_dots_wrapper .slick-dots .slick-slide {
  opacity: 1;
}
.slider-wrapper .slider_dots_wrapper .slick-dots .slick-active {
  background-color: #D1CCC7 !important;
}
.slider-wrapper .slider_dots_wrapper .slick-dots .slick-active.slick-current {
  background-color: #4C4948 !important;
}
.slider-wrapper .slider_dots_wrapper .slick-dots.slick-dots_small .slick-track {
  transform: translate3d(0, 0, 0) !important;
}
.slider-wrapper .slider_nav_wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
}
.slider-wrapper .slider-nav .slick-active {
  opacity: 0.7;
}
.slider-wrapper .slider-nav .slick-active.slick-current {
  opacity: 1 !important;
}
.slider-wrapper .slider-nav .slick-slide .zoom-img {
  object-fit: cover;
}
.slider-wrapper .slider-nav.slick-dots_small .slick-track {
  transform: translate3d(0, 0, 0) !important;
}

#quality-nav {
  padding-top: 100px;
  padding-bottom: 160px;
}
#quality-nav .d-flex {
  justify-content: center;
  margin: 0 -25px;
}
#quality-nav .list-item {
  margin: 0 25px;
  width: 300px;
}
#quality-nav .list-item .mincho-b {
  padding: 17.5px;
  background: url(../img/construction/bg_link.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  width: 100%;
  text-align: center;
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 15px;
}

.h2_ttl {
  font-size: 20px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  font-weight: 300;
  padding-bottom: 10px;
  gap: 10px;
}
.h2_ttl .english {
  font-size: 28px;
}
.h2_ttl span:nth-child(2) {
  display: inline-block;
  margin-bottom: 6px;
}

.b-border {
  border-bottom: 1px solid #6B6967;
}

.effect-btn {
  padding: 22px 15px;
  background: url(../img/doublecheck/bg_link.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  border-radius: .5rem;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.25s ease-in-out;
}

.h3_ttl {
  font-size: 24px;
  color: #988575;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: calc(32/24);
  margin-top: 35px;
}

.bg-gray {
  background-color: #EFEFEF;
}

.bg-white {
  background-color: #fff;
}

.h4_ttl {
  font-size: 21px;
  color: #988575;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: calc(28/21);
  margin-bottom: 10px;
}

.txt {
  font-size: 15px;
  line-height: calc(28/15);
  letter-spacing: 0.025rem;
  text-align: justify;
  color: #6B6967;
  margin-bottom: 30px;
}

@media screen and (max-width: 968px) {
  .txt {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    letter-spacing: .4rem;
  }

  .h3_ttl {
    font-size: 3.6rem;
    margin-top: 3rem;
  }

  .h4_ttl {
    font-size: 3.6rem;
    margin-bottom: 1rem;
  }

  .h2_ttl {
    font-size: 3rem;
    padding-bottom: 1.5rem;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .h2_ttl .english {
    font-size: 4.2rem;
  }

  .b-border {
    border-bottom: .1rem solid #6B6967;
  }

  .effect-btn {
    padding: 2.261rem 1.5rem;
    font-size: 2.6rem;
    line-height: 1.4;
    background: url(../img/doublecheck/bg_link_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 968px) {
  .p-sp-0 {
    padding: 0;
  }
}

.lh-0 {
  line-height: 0;
}

@media (min-width: 968.5px) {
  .slider-wrapper .slider-gallery-wrapper .slick-prev, .slider-wrapper .slider-gallery-wrapper .slick-next {
    opacity: 0 !important;
  }
  .slider-wrapper .slider-nav {
    margin-top: 95px;
  }
  .slider-wrapper .slider-nav .slick-list {
    margin: 0 -7px;
  }
  .slider-wrapper .slider-nav .item {
    width: 204.98px !important;
    margin: 7px;
  }
  .slider-wrapper .slider-nav .item .zoom-img {
    height: 144px;
    width: 100%;
  }
}
@media screen and (max-width: 968px) {
  .slider-wrapper .slider-gallery-wrapper .slick-next, .slider-wrapper .slider-gallery-wrapper .slick-prev {
    width: 2.4rem;
    height: 4rem;
    z-index: 998;
  }
  .slider-wrapper .slider-gallery-wrapper .slick-next::before, .slider-wrapper .slider-gallery-wrapper .slick-prev::before {
    content: '';
  }
  .slider-wrapper .slider-gallery-wrapper .slick-next {
    right: 5.4rem;
  }
  .slider-wrapper .slider-gallery-wrapper .slick-prev {
    left: 5.4rem;
  }
  .slider-wrapper .slider-gallery-wrapper .slick-list {
    padding: 0 4rem;
  }
  .slider-wrapper .slider-gallery-wrapper .slick-slide {
    width: 67rem;
    margin: 0;
  }
  .slider-wrapper .slider-gallery-wrapper .slick-slide .zoom-img {
    height: 44rem;
    object-fit: cover;
  }
  .slider-wrapper .slick-dots {
    display: none;
  }
  .slider-wrapper .slider-nav {
    margin: 3rem auto;
    width: 67rem;
    gap: 3.5rem;
    justify-content: flex-start;
  }
  .slider-wrapper .slider-nav .item {
    min-width: 20rem;
    margin: 0;
  }
  .slider-wrapper .slider-nav .item .zoom-img {
    height: 12rem;
  }
  .slider-wrapper .slider-nav .slick-slide {
    margin: 0 1.5rem;
  }
  .slider-wrapper .slider-nav .slick-list {
    margin: 0 -1.5rem;
  }

  #quality-nav {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  #quality-nav .d-flex {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  #quality-nav .list-item {
    margin: 2rem 0;
    width: 52rem;
  }
  #quality-nav .list-item .mincho-b {
    padding: 1.85rem 2rem;
    font-size: 3rem;
  }
}
.bg-ef {
  background-color: #EFEFEF;
}

.company_service {
  padding: 130px 0;
}
.company_service .main_col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.company_service .group_col {
  width: calc(33.333% - 20px);
  text-align: center;
  background-color: #ffffff;
}
.company_service .img_col {
  position: relative;
  line-height: 0;
}
.company_service .img_col .w-100 {
  width: 100%;
}
.company_service .img_col::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.company_service .txt-des {
  font-size: 21px;
  line-height: calc(55/21);
  letter-spacing: 5px;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  position: absolute;
  z-index: 99;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 968px) {
  .company_service {
    padding: 7rem 0 0 0;
    background-color: transparent;
  }
  .company_service .group_col {
    width: 100%;
    background-color: #EFEFEF;
    margin-bottom: 4rem;
  }
}
.intro-cpn {
  padding-top: 165px;
  padding-bottom: 190px;
}
.intro-cpn .inner .intro-content .title {
  margin-bottom: 30px;
}

@media screen and (max-width: 968px) {
  .intro-cpn {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }
  .intro-cpn .inner .intro-content .title {
    margin-bottom: 4rem;
  }
}
.ar-ttl-cpn {
  font-size: 28px;
  line-height: calc(49/28);
  font-weight: 300;
  color: #2B2B2E;
  margin-bottom: 10px;
}
.ar-ttl-cpn span.japan {
  font-size: 20px;
  line-height: calc(32/20);
  font-weight: 500;
  color: #988575;
}

@media screen and (max-width: 968px) {
  .ar-ttl {
    font-size: 4.2rem;
    line-height: calc(56/42);
    font-weight: 300;
    margin-bottom: 2rem;
    margin-top: 2.5rem;
  }
  .ar-ttl span.japan {
    font-size: 3rem;
    line-height: calc(56/30);
    font-weight: 500;
    display: block;
  }
}
@media screen and (min-width: 969px) {
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .mb-lg-0 {
    margin-bottom: 0;
  }
}
.text-right {
  text-align: right;
}

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

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_loader
================================= */
.l_loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #f6ff8f;
  z-index: 1;
}
.l_loader .loader {
  display: none;
  height: 100%;
  position: relative;
  z-index: 2;
}
.l_loader .loader .content {
  display: inline-table;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
}
.l_loader .loader .content .logo_img {
  display: block;
  margin: 0 auto;
  width: 50px;
  height: auto;
}
.l_loader .loader .content .txt {
  margin: 20px 0 0;
  font-size: 1.8em;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "hiragino kaku gothic pro", "メイリオ", Meiryo, "游ゴシック", YuGothic, Verdana, sans-serif;
  font-weight: bold;
}
.l_loader .loader .content .txt span {
  display: inline-block;
  -webkit-animation: loading 0.7s infinite alternate;
  -moz-animation: loading 0.7s infinite alternate;
  animation: loading 0.7s infinite alternate;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* =================================
 l_content_size
================================= */
.l_content_size_sp_1 {
  padding: 0 4.6875%;
}
@media screen and (min-width: 1025px) {
  .l_content_size_sp_1 {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.l_content_size_pc_1 {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l_content_size_pc_1 {
    width: auto;
    padding: 0 4.6875%;
  }
}

/* =================================
 l_container
================================= */
.l_container {
  position: relative;
}

/* =================================
 l_header
================================= */
/* =================================
 l_header_sp
================================= */
/* =================================
 l_menu_sp
================================= */
/* =================================
 l_breadcrumbs
================================= */
/* =================================
 l_main_visual
================================= */
/* =================================
 l_content
================================= */
/* =================================
 l_main
================================= */
/* =================================
 l_side
================================= */
/* =================================
 l_footer
================================= */
/* =================================
 l_hoge
================================= */
/* ======================================================================
 layout p_top
====================================================================== */
/* =================================
 l_container_top
================================= */
.l_container_top {
  position: relative;
}

/* =================================
 l_header_top
================================= */
/* =================================
 l_header_sp_top
================================= */
/* =================================
 l_main_visual_top
================================= */
/* =================================
 l_content_top
================================= */
/* =================================
 l_main_top
================================= */
/* =================================
 l_side_top
================================= */
/* =================================
 l_footer_top
================================= */
/* =================================
 l_hoge_top
================================= */
/* ======================================================================
 z-index
====================================================================== */
.l_loader {
  z-index: 1000;
}

.l_menu_sp {
  z-index: 999;
}

.l_header {
  z-index: 998;
}

.l_header_sp {
  z-index: 998;
}

.c_btn_p_top {
  z-index: 997;
}

.l_side {
  z-index: 996;
}

/* =================================
 p_top
================================= */
.l_menu_sp_top {
  z-index: 999;
}

.l_header_top {
  z-index: 998;
}

.l_header_sp_top {
  z-index: 998;
}

.c_btn_p_top_top {
  z-index: 997;
}

.l_side_top {
  z-index: 996;
}

/*==================================================

Main Header
==================================================*/
#main-header {
  box-sizing: border-box;
  letter-spacing: 1px;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: 1s ease;
  box-shadow: 0 0 2px #eee;
  height: 120px;
}
#main-header .viewport-l {
  max-width: 1920px;
  padding-left: 50px;
  padding-right: 50px;
}
#main-header.hide {
  background: rgba(255, 255, 255, 0.9);
}

#menu {
  display: none;
}

#main-header .logo img {
  max-width: 118px;
  transition: .5s ease;
  vertical-align: middle;
}

#main-header .logo {
  float: left;
  line-height: 120px;
  transition: .5s ease;
  position: relative;
}
#main-header .logo .logo-large {
  transition: all 0.5s ease;
}
#main-header .logo .logo-small {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
#main-header .logo.on-small .logo-large {
  opacity: 0;
}
#main-header .logo.on-small .logo-small {
  opacity: 1;
}

#main-header nav ul {
  float: right;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  transition: .5s ease;
  margin-top: 15px;
}

#main-header nav ul li {
  box-sizing: border-box;
}

#main-header nav ul li a {
  position: relative;
  display: inline-block;
}

#main-header nav ul li a {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
}

#main-header nav ul li i {
  font-size: 25px;
}

#main-header.hide {
  height: 80px;
  transition: .5s ease;
}

#main-header.hide ul {
  height: 80px;
}

#main-header.hide .logo {
  line-height: 80px;
  transition: .2s ease;
}

#main-header.hide .logo img {
  max-width: 100px;
  transition: .5s ease;
}

#main-header.hide nav ul {
  margin-top: 0;
}

@media screen and (min-width: 969px) {
  #main-header nav ul li a::after {
    position: absolute;
    bottom: -7px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #555;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
  }

  #main-header nav ul li a:hover::after {
    transform: scale(1, 1);
  }

  #main-header nav ul li.active a::after {
    position: absolute;
    bottom: -7px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #555;
    transform: scale(1, 1);
    transform-origin: center top;
    transition: transform .3s;
  }

  #main-header nav ul li + li {
    margin-left: 35px;
  }

  #main-header nav ul {
    height: 120px;
  }
}
@media screen and (min-width: 969px) and (max-width: 1200px) {
  #main-header .viewport-l {
    padding-left: 30px;
    padding-right: 30px;
  }

  #main-header nav ul li + li {
    margin-left: 20px;
  }

  #main-header nav ul li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 968px) {
  #main-header {
    height: 8rem;
  }
  #main-header .viewport-l {
    padding-left: 3rem;
    padding-right: 0;
  }

  #main-header .logo .logo-small {
    top: -1rem;
  }

  /*----------------- Global navigation -----------------*/
  #menu {
    height: 8rem;
    width: 8rem;
    padding-top: 3rem;
    cursor: pointer;
    display: block;
    background: #333;
    transition: all .3s;
    float: right;
    position: absolute;
    z-index: 11;
    top: 0;
    right: 0;
  }

  #menu span {
    height: 0.3rem;
    width: 4rem;
    background: #fff;
    display: block;
    margin: 0 auto;
    position: relative;
    top: 20%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .5s;
    transition: all .5s;
  }

  #menu span:before, #menu span:after {
    content: '';
    height: 0.3rem;
    width: 4rem;
    background: #fff;
    display: block;
    position: absolute;
    -webkit-transition: all .5s;
    transition: all .5s;
  }

  #menu span:before {
    top: -1.6rem;
  }

  #menu span:after {
    top: 1.6rem;
  }

  body.menu-visible #menu span {
    background: transparent;
  }

  body.menu-visible #menu span:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
  }

  body.menu-visible #menu span:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
  }

  #obfuscator {
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    visibility: hidden;
    -webkit-transition-property: background-color;
    transition-property: background-color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }

  body.menu-visible #obfuscator {
    visibility: visible;
  }

  body.menu-visible #global-navi {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  #global-navi {
    min-width: initial;
    width: 56rem;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    background: #333;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    overflow-y: auto;
    z-index: 11;
    margin: 0;
    padding-top: 15rem;
  }

  body.menu-visible #global-navi {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  #main-header .logo {
    line-height: 8rem;
  }

  #main-header .logo img {
    max-width: 42rem;
  }

  #main-header {
    box-shadow: none;
  }

  #main-header nav ul {
    float: none;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 90%;
  }

  #main-header nav ul li {
    width: 100%;
  }

  #main-header nav ul li a {
    width: 100%;
    color: #fff;
    text-align: left;
    padding: 4rem 2rem;
    border-bottom: rgba(255, 255, 255, 0.3) 1px solid;
    display: block;
    box-sizing: border-box;
    font-size: 3rem;
  }

  .ico-ip {
    height: 8rem;
    width: 8rem;
    cursor: pointer;
    display: block;
    background: #666;
    transition: all .3s;
    float: right;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 8rem;
  }
  .ico-ip .ico-ip-link {
    display: block;
    text-align: center;
    padding-top: 1.6rem;
  }
  .ico-ip .ico-ip-link img {
    max-width: 2.4rem;
  }

  #main-header.hide {
    height: 8rem;
  }

  #main-header.hide ul {
    height: 8rem;
  }

  #main-header.hide .logo {
    line-height: 8rem;
  }

  #main-header.hide .logo img {
    max-width: 32rem;
    transition: .5s ease;
  }

  #main-header.hide nav ul {
    margin-top: 0;
  }
}
.l_footer .footer-top {
  padding-top: 120px;
  padding-bottom: 20px;
  background-color: #EFEFEF;
  padding-left: 30px;
  padding-right: 30px;
}
.l_footer .footer-top ul li a {
  font-size: 13px;
  line-height: calc(23/13);
  font-weight: 400;
  color: #6B6967;
  text-indent: 7px;
}
.l_footer .footer-top .footer-top-ct {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.l_footer .footer-top .footer-top-ct .item .ft-ttl {
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
  color: #6B6967;
}
.l_footer .footer-top .footer-top-ct .item .ft-ttl + ul {
  border-top: 0.5px solid #6B6967;
  padding-top: 10px;
  margin-top: 5px;
}
.l_footer .footer-top .footer-top-cc ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 145px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 0.5px solid #6B6967;
  border-bottom: 0.5px solid #6B6967;
  margin-top: 30px;
}
.l_footer .footer-top-cb {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding-top: 20px;
}
.l_footer .footer-top-cb .img {
  width: 39px;
  margin-left: 20px;
}
.l_footer .footer-bottom {
  background-color: #333;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 55px;
  padding-left: 15px;
  padding-right: 15px;
}
.l_footer .footer-bottom .container {
  display: flex;
  justify-content: space-between;
}
.l_footer .footer-bottom .container .footer-bottom-l .logo {
  width: 322px;
}
.l_footer .footer-bottom .container .footer-bottom-l .logo .logo-link {
  display: block;
}
.l_footer .footer-bottom .container .footer-bottom-l .fbl-txt {
  margin-left: 68px;
}
.l_footer .footer-bottom .container .footer-bottom-l .fbl-txt .fl-ttl {
  font-size: 15px;
  line-height: calc(28/15);
  font-weight: 500;
  margin-bottom: 5px;
}
.l_footer .footer-bottom .container .footer-bottom-l .fbl-txt .fl-txt {
  font-size: 13px;
  line-height: calc(21/13);
  font-weight: 300;
}
.l_footer .footer-bottom .container .footer-bottom-r {
  color: gray;
}
.l_footer .footer-bottom .container .footer-bottom-r .fr-ttl {
  font-size: 15px;
  line-height: calc(33/15);
  font-weight: 400;
  text-align: center;
}
.l_footer .footer-bottom .container .footer-bottom-r ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid gray;
}
.l_footer .footer-bottom .container .footer-bottom-r ul li {
  width: 50%;
  text-align: center;
  border-top: 1px solid gray;
  font-size: 13px;
  line-height: calc(26/13);
  font-weight: 400;
}
.l_footer .footer-bottom .a-link {
  color: #fff;
}
.l_footer .copyright {
  background-color: #6B6967;
  color: #fff;
  font-size: 10px;
  line-height: calc(17.5/10);
  font-weight: 400;
  text-align: center;
  padding: 10px 15px;
}
@media screen and (min-width: 969px) and (max-width: 1199px) {
  .l_footer .footer-top .footer-top-ct .item {
    min-width: 20%;
  }
}
@media screen and (min-width: 969px) {
  .l_footer .accordion-ttl::after, .l_footer .accordion-ttl::before {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1800px) {
  .l_footer .footer-top .footer-top-ct {
    gap: 30px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 968px) {
  .l_footer .footer-top {
    padding-top: 7rem;
    padding-bottom: 5rem;
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
  }
  .l_footer .footer-top ul li a {
    font-size: 2.6rem;
    line-height: calc(23/13);
    font-weight: 400;
  }
  .l_footer .footer-top .footer-top-ct {
    gap: 0;
  }
  .l_footer .footer-top .footer-top-ct .item {
    width: 100%;
  }
  .l_footer .footer-top .footer-top-ct .item .ft-ttl {
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: 500;
    padding: 2rem 6rem;
    border-top: 0.3rem solid #d6d6d6;
    display: block;
  }
  .l_footer .footer-top .footer-top-ct .item .ft-ttl + ul {
    border-top: 0 solid transparent;
    padding: 0 6rem;
    margin-top: 0;
    margin-bottom: 2rem;
    display: none;
  }
  .l_footer .footer-top .footer-top-ct .item:last-child .ft-ttl {
    border-bottom: 0.3rem solid #d6d6d6;
  }
  .l_footer .footer-top .footer-top-cc ul {
    flex-wrap: wrap;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0 solid transparent;
    border-bottom: 0 solid transparent;
    margin-top: 0;
  }
  .l_footer .footer-top .footer-top-cc ul li {
    font-size: 2.6rem;
    line-height: 1.5;
    font-weight: bold;
    padding: 2rem 6rem;
    border-bottom: 0.3rem solid #d6d6d6;
    width: 100%;
  }
  .l_footer .footer-top-cb {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    padding-top: 5rem;
  }
  .l_footer .footer-top-cb .img {
    width: 11.96rem;
    margin-left: 0;
    order: 1;
  }
  .l_footer .footer-top-cb .arrow {
    order: 2;
    padding-right: 0;
    font-size: 2.5rem;
    line-height: calc(29/24);
    font-weight: 500;
    font-family: "Urbanist", sans-serif;
  }
  .l_footer .footer-top-cb .arrow::after, .l_footer .footer-top-cb .arrow::before {
    display: none;
  }
  .l_footer .footer-bottom {
    padding: 6rem 6.5rem 5.7rem;
  }
  .l_footer .footer-bottom .container {
    flex-direction: column;
  }
  .l_footer .footer-bottom .container .footer-bottom-l .logo {
    width: auto;
    text-align: center;
    border-bottom: 0.2rem solid #686868;
    padding-bottom: 3rem;
    margin: 0 1rem 3rem;
  }
  .l_footer .footer-bottom .container .footer-bottom-l .logo img {
    width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }
  .l_footer .footer-bottom .container .footer-bottom-l .fbl-txt {
    margin-left: 0;
  }
  .l_footer .footer-bottom .container .footer-bottom-l .fbl-txt .fl-ttl {
    font-size: 2.8rem;
    line-height: calc(50/28);
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
  }
  .l_footer .footer-bottom .container .footer-bottom-l .fbl-txt .fl-txt {
    font-size: 2.4rem;
    line-height: calc(37/24);
    font-weight: 300;
    text-align: center;
  }
  .l_footer .footer-bottom .container .footer-bottom-r {
    margin-top: 5rem;
  }
  .l_footer .footer-bottom .container .footer-bottom-r .fr-ttl {
    font-size: 2.8rem;
    line-height: calc(59/28);
    font-weight: 400;
    text-align: center;
  }
  .l_footer .footer-bottom .container .footer-bottom-r ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 0.2rem solid gray;
    margin-left: 8rem;
    margin-right: 8rem;
  }
  .l_footer .footer-bottom .container .footer-bottom-r ul li {
    width: 50%;
    text-align: center;
    border-top: 1px solid gray;
    font-size: 2.2rem;
    line-height: calc(47/22);
    font-weight: 400;
  }
  .l_footer .copyright {
    font-size: 1.4rem;
    line-height: calc(24.5/14);
    font-weight: 400;
    padding: 3rem 3rem 10rem;
  }
}

#pageTop {
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 999;
}

#pageTop a {
  display: block;
  width: 50px;
  height: 50px;
}

.list-ico-side {
  position: fixed;
  top: 40%;
  z-index: 999;
  right: -135px;
}
.list-ico-side ul li {
  position: relative;
}
.list-ico-side ul li .list-side-link {
  display: flex;
  align-items: center;
  width: 195px;
  transition: all 0.5s ease-in-out;
}
.list-ico-side ul li .list-side-link:hover {
  opacity: 1;
  transform: translateX(-135px);
}
.list-ico-side ul li .list-side-link.request {
  background-color: #6B6967;
}
.list-ico-side ul li .list-side-link .r-icon {
  width: 60px;
  height: 60px;
  text-align: center;
  padding-top: 25px;
}
.list-ico-side ul li .list-side-link .r-icon img {
  width: 21px;
}
.list-ico-side ul li .list-side-link .r-content .rc-ttl {
  font-size: 9px;
  line-height: calc(11/9);
  font-weight: 300;
  color: #fff;
}
.list-ico-side ul li .list-side-link .r-content .rc-txt {
  font-size: 14px;
  line-height: calc(16.8/14);
  font-weight: 300;
  color: #fff;
}
.list-ico-side ul li .list-side-link.appoinment {
  background-color: #A8A194;
}
.list-ico-side ul li .list-side-link.appoinment .r-icon img {
  width: 16px;
}
.list-ico-side ul li .list-side-link.iphone {
  background-color: #988575;
}
.list-ico-side ul li .list-side-link.iphone .r-icon img {
  width: 10px;
}

.list-side-sp {
  display: none;
}

@media screen and (max-width: 968px) {
  #pageTop {
    position: fixed;
    bottom: 1.5rem;
    right: 2rem;
    z-index: 999;
  }
  #pageTop a {
    width: 7rem;
    height: 7rem;
  }

  .list-ico-side {
    display: none !important;
  }

  .list-side-sp {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 999;
    display: block !important;
  }
  .list-side-sp ul {
    display: flex;
  }
  .list-side-sp ul .list-side-link {
    height: 7.6rem;
    font-size: 2.6rem;
    line-height: calc(45.5/26);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .list-side-sp ul .list-side-link.request {
    background-color: rgba(152, 133, 117, 0.9);
  }
  .list-side-sp ul .list-side-link.visit {
    background-color: rgba(107, 105, 103, 0.9);
  }
  .list-side-sp ul .list-side-link .r-content {
    border-bottom: 0.2rem solid #fff;
    letter-spacing: 1rem;
    white-space: nowrap;
  }
}

.line_link{
	    display: block;
    margin: 2rem;
    padding: 2rem 4rem;
    border: 1px solid;
    width: fit-content;
}

/*# sourceMappingURL=style.css.map */
