@charset "UTF-8";
/* -- color --*/
/*-- fonts --*/
.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/*-- default --*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  position: relative;
  line-height: 1.7;
  background: #f5f5f5;
}

@media screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
  }
}
*, div, dt, dd, li, input, select, textarea {
  box-sizing: border-box;
}

caption, th, td {
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

/*-- common --*/
.flex {
  display: flex;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.bold {
  font-weight: 600;
}

.inner {
  width: 92%;
  max-width: 140rem;
  margin: 0 auto;
}

.inner-160 {
  width: 92%;
  max-width: 160rem;
  margin: 0 auto;
}

.google-map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* ------------------------- 
            button
--------------------------- */
.block-btn {
  width: 40%;
  max-width: 29.6rem;
}
.block-btn a {
  font-size: 1.8rem;
  display: block;
  background: #fff;
  border: 0.1rem solid #000;
  padding: 1.8rem 3rem 1.8rem 1.6rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  position: relative;
}
.block-btn a::after {
  content: "";
  width: 1.8rem;
  height: 0.6rem;
  background: url(../img/common/arrow_01.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
.block-btn a:hover::after {
  right: 0.5rem;
}

a.arrow {
  position: relative;
}
a.arrow::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-right: 0.1rem solid #000;
  border-bottom: 0.1rem solid #000;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
}
a.arrow:hover::after {
  right: 0;
}

@media screen and (max-width: 1024px) {
  /* ------------------------- 
              button
  --------------------------- */
  .block-btn {
    width: 45%;
  }
}
@media screen and (max-width: 750px) {
  /* ------------------------- 
              button
  --------------------------- */
  .block-btn {
    width: 49%;
  }
  .block-btn a {
    font-size: 1.4rem;
    padding: 2vw 6vw 2vw 3vw;
  }
  a.arrow::after {
    width: 1rem;
    height: 1rem;
  }
}
.pconly {
  display: block;
}

.sponly {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pconly {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/* ------------------------- 
            header
--------------------------- */
#header {
  width: 30%;
  position: fixed;
  top: 3%;
  right: 5%;
  transition: 0.3s;
  z-index: 9999;
}
#header .head-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .head-menu-wrap {
  width: 74%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .head-menu {
  font-size: 2rem;
}
#header .head-menu li:not(:last-child) {
  margin-bottom: 2rem;
}
#header .head-menu li a {
  position: relative;
}
#header .head-menu li a::after {
  content: "";
  width: 0;
  height: 0.2rem;
  background: #000;
  display: block;
  transition: 0.3s;
}
#header .head-menu li a:hover::after {
  width: 100%;
}
#header .logo {
  width: 20%;
}

/* ------------------------- 
            footer
--------------------------- */
#footer {
  background: #000;
  color: #fff;
}
#footer .ft-contact {
  background: url(../img/common/ft-bg.jpg) no-repeat center center/cover;
  font-weight: 600;
}
#footer .ft-contact a {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6.4rem;
}
#footer .ft-contact a:hover .ft-contact-sub::after {
  right: -0.5rem;
}
#footer .ft-contact .ft-contant-ttl {
  font-size: 2.4rem;
  line-height: 1.4;
}
#footer .ft-contact .ft-contant-ttl .en {
  font-size: 5.2083333333vw;
}
#footer .ft-contact .ft-contact-sub {
  position: relative;
  padding-right: 20rem;
}
#footer .ft-contact .ft-contact-sub::after {
  content: "";
  width: 18rem;
  height: 1rem;
  background: url(../img/common/arrow_02.png) no-repeat center center/cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
#footer .ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 92%;
  max-width: 103rem;
  margin: auto;
  padding: 14rem 0 6rem;
}
#footer .ft-bottom .company-info {
  width: 35%;
}
#footer .ft-bottom .company-info .address {
  margin-top: 4rem;
}
#footer .ft-bottom .site-info {
  width: 60%;
}
#footer .ft-bottom .ft-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5rem;
}
#footer .ft-bottom .ft-menu a {
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}
#footer .ft-bottom .ft-menu a:hover {
  opacity: 0.8;
}
#footer .ft-bottom .ft-btn {
  justify-content: space-between;
}
#footer .ft-bottom .ft-btn .block-btn {
  width: 48%;
}
#footer .ft-bottom .ft-btn .block-btn a {
  color: #fff;
  background: #000;
  border-color: #fff;
}
#footer .ft-bottom .ft-btn .block-btn a::after {
  filter: invert(1);
}
#footer .ft-bottom .copy {
  font-size: 1.4rem;
  margin-top: 7rem;
  text-align: right;
  border-top: 0.1rem solid #fff;
  padding-top: 1rem;
}

/* ------------------------- 
            CTA
--------------------------- */
/* ------------------------- 
        パーツデフォルト
--------------------------- */
h2.sec-ttl {
  font-size: 2.125vw;
  line-height: 1.1;
  display: inline-block;
  padding-right: 6rem;
  position: relative;
}
h2.sec-ttl .en {
  font-size: 6.25vw;
}
h2.sec-ttl::after {
  content: "";
  width: 100%;
  height: 10rem;
  background: url(../img/common/title-brush.png) no-repeat center left/100% auto;
  position: absolute;
  left: -2%;
  top: 40%;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: 0.3s ease-in-out;
  transition-delay: 0.3s;
}
h2.sec-ttl.show::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* ------------------------- 
            404
--------------------------- */
.page-404 .block-btn {
  margin: 6rem auto 0;
}

@media screen and (max-width: 1024px) {
  /* ------------------------- 
          header
  --------------------------- */
  #header {
    width: 100%;
    padding: 2vw 0;
    position: fixed;
    top: 0;
    left: 0;
  }
  #header.open-toggle {
    background: #f5f5f5;
  }
  #header.open-toggle .toggle span:first-of-type {
    top: 50%;
    transform: rotate(35deg) translateY(-50%);
  }
  #header.open-toggle .toggle span:last-of-type {
    top: 50%;
    transform: rotate(-35deg) translateY(-50%);
  }
  #header .head-inner {
    width: 100%;
    padding: 0 3%;
    position: relative;
    top: auto;
    right: auto;
  }
  #header .head-menu-wrap {
    display: none;
    width: 100%;
    height: calc(100vh - 5rem);
    padding: 10vw 4% 0;
    position: absolute;
    top: 5rem;
    left: 0;
    background: url(../img/common/head-bg_sp.jpg) no-repeat center bottom/cover;
  }
  #header .head-menu {
    font-size: 4vw;
  }
  #header .head-menu.sponly {
    display: block;
  }
  #header .head-menu.pconly {
    display: none;
  }
  #header .head-menu li {
    margin-bottom: 3vw;
  }
  #header .head-menu li:not(:last-child) {
    margin-bottom: 3vw;
  }
  #header .head-btn {
    display: flex !important;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 10vw;
  }
  #header .logo {
    width: 8%;
  }
  #header .toggle {
    width: 3rem;
    height: 1rem;
    position: relative;
    display: block;
  }
  #header .toggle span {
    display: block;
    width: 100%;
    height: 0.2rem;
    background: #000;
    position: absolute;
    transition: 0.3s;
  }
  #header .toggle span:first-of-type {
    top: 0;
    left: 0;
  }
  #header .toggle span:last-of-type {
    bottom: 0;
    left: 0;
  }
  /* ------------------------- 
          footer
  --------------------------- */
  #footer .ft-contact a {
    padding: 6.4vw 4vw;
  }
  #footer .ft-contact .ft-contant-ttl {
    font-size: 2.4vw;
  }
  #footer .ft-contact .ft-contact-sub {
    padding-right: 18vw;
  }
  #footer .ft-contact .ft-contact-sub::after {
    width: 12rem;
    background-position: center right;
  }
  #footer .ft-bottom {
    padding: 14vw 0 6vw;
    display: block;
  }
  #footer .ft-bottom .company-info {
    width: 100%;
    text-align: center;
    margin-bottom: 4vw;
  }
  #footer .ft-bottom .company-info .address {
    margin-top: 4vw;
  }
  #footer .ft-bottom .site-info {
    width: 100%;
  }
  #footer .ft-bottom .ft-menu {
    display: none;
  }
  #footer .ft-bottom .copy {
    margin-top: 7vw;
    text-align: center;
  }
  /* ------------------------- 
          CTA
  --------------------------- */
  /* ------------------------- 
          パーツデフォルト
  --------------------------- */
  h2.sec-ttl {
    font-size: 3.4vw;
  }
  h2.sec-ttl .en {
    font-size: 12vw;
  }
  /* ------------------------- 
          404
  --------------------------- */
  .page-404 .block-btn {
    margin: 6vw auto 0;
  }
}
@media screen and (max-width: 750px) {
  /* ------------------------- 
          header
  --------------------------- */
  #header .head-menu-wrap {
    height: calc(100vh - 11vw);
    top: 11vw;
    padding: 10vw 4vw 0;
  }
  #header .head-menu {
    font-size: 9.0666666667vw;
  }
  #header .logo {
    width: 14%;
  }
  #header .head-btn {
    justify-content: space-between;
  }
  #header .head-btn .block-btn {
    width: 49%;
  }
  /* ------------------------- 
          footer
  --------------------------- */
  #footer .ft-contact a {
    padding: 4vw 4vw 6vw;
  }
  #footer .ft-contact .ft-contant-ttl {
    font-size: 4.2666666667vw;
  }
  #footer .ft-contact .ft-contant-ttl .en {
    font-size: 10.6666666667vw;
  }
  #footer .ft-contact .ft-contact-sub {
    font-size: 1.2rem;
    padding-right: 8vw;
    padding-bottom: 2vw;
  }
  #footer .ft-contact .ft-contact-sub::after {
    width: 100%;
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }
  #footer .ft-bottom {
    padding: 20vw 0 6vw;
  }
  #footer .ft-bottom .company-info {
    margin-bottom: 10vw;
  }
  #footer .ft-bottom .copy {
    font-size: 1.2rem;
    padding-top: 6vw;
  }
  /* ------------------------- 
          CTA
  --------------------------- */
  /* ------------------------- 
          パーツデフォルト
  --------------------------- */
  h2.sec-ttl {
    font-size: 1.6rem;
    padding-right: 10vw;
  }
  h2.sec-ttl .en {
    font-size: 16.5333333333vw;
  }
  h2.sec-ttl::after {
    height: 3.5rem;
  }
  /* ------------------------- 
          404
  --------------------------- */
  .page-404 .block-btn {
    margin: 12vw auto 0;
  }
}
#page-under .mainv {
  padding: 20rem 0 18rem;
  background: url(../img/common/page-mainv_pc.png) no-repeat center bottom/cover;
}
#page-under .mainv h1.pagetitle {
  font-size: 1.7708333333vw;
  font-weight: 600;
}
#page-under .mainv h1.pagetitle .en {
  font-size: 6.25vw;
}
#page-under .mainv h1.pagetitle .jp {
  margin-left: 2%;
}
#page-under .page-content {
  padding: 0 0 30rem;
}

@media screen and (max-width: 1024px) {
  #page-under .mainv {
    padding: 18vw 0 10vw;
  }
  #page-under .mainv h1.pagetitle {
    font-size: 3.4vw;
  }
  #page-under .mainv h1.pagetitle .en {
    font-size: 10vw;
  }
  #page-under .mainv h1.pagetitle .jp {
    margin-left: 4%;
  }
  #page-under .page-content {
    padding: 0 0 26vw;
  }
}
@media screen and (max-width: 750px) {
  #page-under .mainv {
    padding: 24vw 0 14vw;
  }
  #page-under .mainv h1.pagetitle {
    font-size: 5.0666666667vw;
    line-height: 1.3;
  }
  #page-under .mainv h1.pagetitle .en {
    font-size: 11.7333333333vw;
    display: block;
  }
  #page-under .mainv h1.pagetitle .jp {
    display: block;
    margin: 0;
  }
  #page-under .page-content {
    padding: 0 0 38vw;
  }
}
#page-under.page-mvnone {
  padding: 31rem 0 20rem;
}
#page-under.page-mvnone .page-content {
  padding: 0;
}

@media screen and (max-width: 1024px) {
  #page-under.page-mvnone {
    padding: 20vw 0;
  }
}
@media screen and (max-width: 750px) {
  #page-under.page-mvnone {
    padding: 30vw 0;
  }
}