@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

/*iosのフォームボタンリセット*/
input[type=submit],
input[type=button],
input[type=reset] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus,
input[type=reset]::focus {
  outline-offset: -2px;
}

/*変数設定用*/
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

a {
  pointer-events: auto;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

li {
  list-style: none;
}

a {
  color: #666666;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a:hover p:hover {
  opacity: 0.7;
}
a:hover img:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  font-size: 62.5%;
  color: #000;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 1.3rem 5rem;
  display: flex;
  justify-content: space-between;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  header {
    padding: 2.6666666667vw 5.3333333333vw;
  }
}
header .headlogo {
  max-width: 15.1rem;
}
@media screen and (max-width: 767px) {
  header .headlogo {
    max-width: 40vw;
  }
}
header .nav__List {
  display: flex;
  align-items: center;
}
header .nav__Item {
  margin-left: 4rem;
}
header .nav__Item a {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
}
header .nav__Item.-contact a {
  background: #54a5ac;
  padding: 1.7rem 4rem;
  display: inline-block;
  border: 0.1rem solid #54a5ac;
  transition: 0.6s;
}
header.-scr {
  background: #54a5ac;
}
header.-scr .nav__Item.-contact a {
  background: #fff;
  color: #54a5ac;
}
header.not_home {
  background: #54a5ac;
}
header.not_home .nav__Item.-contact a {
  background: #fff;
  color: #54a5ac;
}

.navToggle {
  position: fixed;
  right: 5.3333333333vw;
  top: 2.6666666667vw;
  width: 8vw;
  height: 8vw;
  cursor: pointer;
  z-index: 10000;
  text-align: center;
  transition: 0.3s;
}
.navToggle span {
  display: block;
  position: absolute;
  width: 9.6vw;
  height: 0.8vw;
  border-radius: 1.3333333333vw;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.navToggle span:nth-child(1) {
  top: 0;
}
.navToggle span:nth-child(2) {
  top: 3.7333333333vw;
}
.navToggle span:nth-child(3) {
  bottom: 0;
}
.navToggle.-open span:nth-child(1) {
  top: 4vw;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.navToggle.-open.-open span:nth-child(2) {
  display: none;
}
.navToggle.-open.-open span:nth-child(3) {
  top: 4vw;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-content {
  width: 100%;
  height: 100%;
  padding: 4vw 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  transition: all 0.7s;
  transform: translateX(100%);
  background: #54a5ac;
  background-size: cover;
  z-index: 2000;
}
.menu-content.-open {
  transform: translateX(0);
}
.menu-content__Inner {
  max-width: 80%;
  margin: auto;
}
.menu-content .nav__List {
  padding: 26.6666666667vw 0;
}
.menu-content .nav__Item {
  margin-bottom: 5.3333333333vw;
}
.menu-content .nav__Item a {
  font-size: 4.2666666667vw;
  font-weight: bold;
  color: #fff;
}
.menu-content .nav__Item:last-child {
  margin-bottom: 0;
}

.btn {
  max-width: 32.7rem;
  width: 100%;
  display: block;
  margin: auto;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 2.7rem 0;
  text-align: center;
  transition: 0.6s;
}
@media screen and (max-width: 767px) {
  .btn {
    max-width: 80%;
    font-size: 3.7333333333vw;
    padding: 5.3333333333vw 0;
  }
}
.btn:hover {
  opacity: 1;
}
.btn.-green {
  border: 0.1rem solid #54a5ac;
  background-color: #54a5ac;
  background-image: url("./../img/icon_arrow_white.png");
  background-position: center right 2rem;
  background-size: 4rem;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .btn.-green {
    background-position: center right 5.3333333333vw;
    background-size: 10.6666666667vw;
  }
}
.btn.-green:hover {
  background: #fff;
  color: #54a5ac;
  background-image: url("./../img/icon_arrow_green.png");
  background-repeat: no-repeat;
  background-position: center right 2rem;
  background-size: 4rem;
}
@media screen and (max-width: 767px) {
  .btn.-green:hover {
    background-position: center right 5.3333333333vw;
    background-size: 10.6666666667vw;
  }
}
.btn.-gray {
  border: 0.1rem solid #fff;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url("./../img/icon_arrow_white.png");
  background-position: center right 2rem;
  background-size: 4rem;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .btn.-gray {
    background-position: center right 5.3333333333vw;
    background-size: 10.6666666667vw;
  }
}
.btn.-gray:hover {
  background: #fff;
  color: #54a5ac;
  background-image: url("./../img/icon_arrow_green.png");
  background-repeat: no-repeat;
  background-position: center right 2rem;
  background-size: 4rem;
}
@media screen and (max-width: 767px) {
  .btn.-gray:hover {
    background-position: center right 5.3333333333vw;
    background-size: 10.6666666667vw;
  }
}
.btn.-bdwhite {
  border: 0.1rem solid #fff;
  background-image: url("./../img/icon_arrow_white.png");
  background-position: center right 2rem;
  background-size: 4rem;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .btn.-bdwhite {
    background-position: center right 5.3333333333vw;
    background-size: 10.6666666667vw;
  }
}
.btn.-bdwhite:hover {
  background: #fff;
  color: #54a5ac;
  background-image: url("./../img/icon_arrow_green.png");
  background-repeat: no-repeat;
  background-position: center right 2rem;
  background-size: 4rem;
}
@media screen and (max-width: 767px) {
  .btn.-bdwhite:hover {
    background-position: center right 5.3333333333vw;
    background-size: 10.6666666667vw;
  }
}

.commonTtl {
  text-align: center;
  color: #fff;
}
.commonTtl__En {
  font-size: 3.6rem;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  padding: 2.5rem 0;
  position: relative;
  display: block;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .commonTtl__En {
    font-size: 6.4vw;
    padding: 5.3333333333vw 0;
  }
}
.commonTtl__En:before {
  width: 6.9rem;
  height: 6.9rem;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  background: url("./../img/img_ttl_bg.png");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .commonTtl__En:before {
    width: 16vw;
    height: 16vw;
  }
}

.bottomContact {
  background: url("./../img/img_bottom_contact.jpg");
  background-size: cover;
  padding: 6.2rem 0 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .bottomContact {
    padding: 8vw 0;
    background: url("./../img/img_bottom_contact_sp.jpg");
    background-size: cover;
  }
}
.bottomContact .commonTtl__En {
  color: #000;
}
.bottomContact .commonTtl__En:before {
  background-image: url("./../img/img_ttl_bg_green.png");
}
.bottomContact .commonTtl__Jp {
  color: #000;
  letter-spacing: 0.2em;
}
.bottomContact__Txt {
  font-size: 1.4rem;
  text-align: center;
  line-height: 2.285em;
  margin: 3.5rem auto 5.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .bottomContact__Txt {
    font-size: 3.2vw;
    margin: 5.3333333333vw auto 5.3333333333vw;
    text-align: left;
  }
}
.bottomContact__Flex {
  display: flex;
  justify-content: space-between;
  max-width: 70rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .bottomContact__Flex {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .bottomContact__Flex .btn:last-child {
    margin-top: 4vw;
  }
}

footer {
  position: relative;
  background: #fff;
  padding-top: 5.4rem;
}
@media screen and (max-width: 767px) {
  footer {
    padding-top: 8vw;
  }
}
footer .footer__Flex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  footer .footer__Flex {
    display: block;
    padding-bottom: 8vw;
  }
}
footer .footer__Logo {
  max-width: 15.1rem;
}
@media screen and (max-width: 767px) {
  footer .footer__Logo {
    max-width: 40vw;
  }
}
footer .footer__Menu {
  width: calc(100% - 26rem);
  display: flex;
}
@media screen and (max-width: 767px) {
  footer .footer__Menu {
    margin-top: 8vw;
    width: 100%;
    display: block;
  }
}
footer .footer__Menu-List {
  margin-right: 6.3rem;
}
@media screen and (max-width: 767px) {
  footer .footer__Menu-List {
    margin-right: 0;
  }
}
footer .footer__Menu-List:nth-child(2) {
  margin-right: 11.6rem;
}
@media screen and (max-width: 767px) {
  footer .footer__Menu-List:nth-child(2) {
    margin-right: 0;
  }
}
footer .footer__Menu-Item {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  footer .footer__Menu-Item {
    margin-bottom: 5.3333333333vw;
  }
}
footer .footer__Menu-Item a {
  font-size: 1.4rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  footer .footer__Menu-Item a {
    margin-bottom: 3.7333333333vw;
  }
}
footer .footer__Menu-Item ul {
  padding-left: 2.5rem;
  margin-top: 1rem;
}
footer .footer__Menu-Item ul .footer__Menu-Item {
  margin-bottom: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  footer .footer__Menu-Item ul .footer__Menu-Item {
    margin-bottom: 1.3333333333vw;
  }
}
footer .footer__Menu-Item ul .footer__Menu-Item:before {
  position: absolute;
  left: -2.2em;
  top: 1rem;
  content: "";
  width: 1.2rem;
  height: 0.1rem;
  background: #000;
}
@media screen and (max-width: 767px) {
  footer .footer__Menu-Item ul .footer__Menu-Item:before {
    width: 3.2vw;
  }
}
footer .copy {
  text-align: center;
  background: #303030;
  color: #fff;
  font-size: 1.2rem;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.05em;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  footer .copy {
    font-size: 3.2vw;
    padding: 4vw 0;
  }
}

.breadcrumb {
  margin: 9.6rem auto 1.5rem;
  display: flex;
  align-items: center;
  max-width: 120rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    position: relative;
    z-index: 10;
    width: 90%;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .breadcrumb {
    margin: 13.3333333333vw auto 4vw;
  }
}
.breadcrumb li {
  font-size: 1.2rem;
  color: #000;
  margin-right: 1rem;
  padding-right: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .breadcrumb li {
    font-size: 3.2vw;
    margin-right: 2.6666666667vw;
    padding-right: 2.6666666667vw;
  }
}
.breadcrumb li:before {
  position: absolute;
  right: -0.5rem;
  top: calc(50% - 0.75em);
  content: ">";
}
@media screen and (max-width: 767px) {
  .breadcrumb li:before {
    right: -1.3333333333vw;
  }
}
.breadcrumb li:last-child {
  margin-right: 0;
  padding-right: 0;
}
.breadcrumb li:last-child:before {
  display: none;
}
.breadcrumb li a {
  font-size: 1.2rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .breadcrumb li a {
    font-size: 3.2vw;
  }
}

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

.vsp {
  display: none;
}
@media screen and (max-width: 767px) {
  .vsp {
    display: block;
  }
}

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.container {
  max-width: 120rem;
  margin: auto;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    width: 89.3333333333vw;
  }
}

.lazy {
  opacity: 0;
  transition: all 1s ease-in-out;
}
.lazy.on {
  opacity: 1;
}

.lazy_bottom {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
.lazy_bottom.on {
  -webkit-transform: none;
  transform: none;
}

.lazy_right {
  -webkit-transform: translateX(3rem);
  transform: translateX(3rem);
}
.lazy_right.on {
  -webkit-transform: none;
  transform: none;
}

.lazy_left {
  -webkit-transform: translateX(-3rem);
  transform: translateX(-3rem);
}
.lazy_left.on {
  -webkit-transform: none;
  transform: none;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 13rem;
}
@media screen and (max-width: 767px) {
  #page-top {
    max-width: 8rem;
  }
}

.frontMv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background: url("./../img/img_mv.jpg");
  background-size: cover;
}
.frontMv__Box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .frontMv__Box {
    width: 100%;
  }
}
.frontMv__Box-Logo {
  width: 12.4rem;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 767px) {
  .frontMv__Box-Logo {
    width: 33.0666666667vw;
    margin: 0 auto 10.6666666667vw;
  }
}
.frontMv__Box-Catch {
  text-align: center;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.6em;
}
@media screen and (max-width: 767px) {
  .frontMv__Box-Catch {
    font-size: 3.2vw;
  }
}

.bgWrap {
  position: relative;
  padding-top: 100vh;
}

.frontAbout__Bg {
  padding: 15rem 0 16rem;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  .frontAbout__Bg {
    padding: 13.3333333333vw 0;
  }
}
.frontAbout__Flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .frontAbout__Flex {
    display: block;
    margin-bottom: 13.3333333333vw;
  }
}
.frontAbout__Fl {
  width: 43.3rem;
}
@media screen and (max-width: 767px) {
  .frontAbout__Fl {
    width: 100%;
  }
}
.frontAbout__Fr {
  width: 67.7rem;
}
@media screen and (max-width: 767px) {
  .frontAbout__Fr {
    width: 100%;
  }
}
.frontAbout__Ttl {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  .frontAbout__Ttl {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
}
.frontAbout__Txt {
  font-size: 1.4rem;
  line-height: 2.28em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .frontAbout__Txt {
    font-size: 3.7333333333vw;
  }
}

.whiteWrap {
  background: #fff;
}

.advantage {
  background: #54a5ac;
  padding: 8.5rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .advantage {
    padding: 13.3333333333vw 0;
  }
}
.advantage__List {
  max-width: 106.5rem;
  margin: 8rem auto 6rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .advantage__List {
    display: block;
    max-width: 100%;
    margin: 13.3333333333vw auto;
  }
}
.advantage__Item {
  width: 30.9%;
}
@media screen and (max-width: 767px) {
  .advantage__Item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .advantage__Item:nth-child(2) {
    margin: 5.3333333333vw 0;
  }
}
.advantage__Number {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .advantage__Number {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.advantage__Number:before {
  content: "";
  flex-grow: 1;
  border-bottom: 0.1rem solid #fff;
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .advantage__Number:before {
    margin-right: 4vw;
  }
}
.advantage__Number:after {
  content: "";
  flex-grow: 1;
  border-bottom: 0.1rem solid #fff;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .advantage__Number:after {
    margin-left: 4vw;
  }
}
.advantage__Subttl {
  text-align: center;
  font-size: 2rem;
  line-height: 1.8em;
  color: #fff;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .advantage__Subttl {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
}
.advantage__Txt {
  font-size: 1.4rem;
  color: #fff;
  line-height: 2.285em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .advantage__Txt {
    font-size: 3.7333333333vw;
  }
}

.service {
  padding: 8.5rem 0 12rem;
  background: url("./../img/img_front_service_bg.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 13.3333333333vw 0;
  }
}
.service__List {
  display: flex;
  justify-content: space-between;
  margin: 5rem auto 6rem;
}
@media screen and (max-width: 767px) {
  .service__List {
    display: block;
    margin: 13.3333333333vw 0;
  }
}
.service__List.-column3 .service__Item {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .service__List.-column3 .service__Item {
    width: 100%;
  }
}
.service__List.-column3 .service__Item:nth-child(2) {
  margin: 0 2%;
}
@media screen and (max-width: 767px) {
  .service__List.-column3 .service__Item:nth-child(2) {
    margin: 0 0 5.3333333333vw;
  }
}
.service__List.-column3 .service__Item .service__Thum {
  height: 8.5rem;
}
@media screen and (max-width: 767px) {
  .service__List.-column3 .service__Item .service__Thum {
    height: 13.3333333333vw;
  }
}
.service__Item {
  width: 48.6%;
  background: #fff;
  border-top: 0.6rem solid #54a5ac;
  padding: 4.5rem 3.5rem;
  box-shadow: 0px 20px 25px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .service__Item {
    padding: 8vw 5.3333333333vw;
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .service__Item:last-child {
    margin-bottom: 0;
  }
}
.service__Thum {
  max-width: 16rem;
  height: 15.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 767px) {
  .service__Thum {
    height: 26.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .service__Thum img {
    height: 100%;
  }
}
.service__Subttl {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .service__Subttl {
    font-size: 4.8vw;
    letter-spacing: 0.1em;
    margin-bottom: 5.3333333333vw;
  }
}
.service__Txt {
  font-size: 1.4rem;
  line-height: 2.285em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .service__Txt {
    font-size: 3.7333333333vw;
  }
}
.service.-under {
  background: none;
  padding: 6rem 0 9.5rem;
}
@media screen and (max-width: 767px) {
  .service.-under {
    padding: 13.3333333333vw 0;
  }
}
.service.-under .commonTtl__En {
  color: #000;
}
.service.-under .commonTtl__En:before {
  background-image: url("./../img/img_ttl_bg_green.png");
}
.service.-under .commonTtl__Jp {
  color: #000;
}
.service.-under .service__List {
  margin-bottom: 0;
}

.works {
  padding: 7.5rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 13.3333333333vw 0;
  }
}
.works .commonTtl__En {
  color: #54a5ac;
}
.works .commonTtl__En:before {
  background-image: url("./../img/img_ttl_bg_green.png");
}
.works .commonTtl__Jp {
  color: #000;
}
.works__Cat {
  margin: 5rem auto 3.5rem;
}
@media screen and (max-width: 767px) {
  .works__Cat {
    margin: 8vw auto;
  }
}
.works__Cat-List {
  display: flex;
  align-items: center;
  justify-content: center;
}
.works__Cat-Item {
  margin: 0 1.35rem;
}
@media screen and (max-width: 767px) {
  .works__Cat-Item {
    margin: 0 2.6666666667vw;
  }
}
.works__Cat-Item.-active {
  border-bottom: 0.1rem solid #000;
}
.works__Cat-Item a {
  font-size: 1.2rem;
  color: #000;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .works__Cat-Item a {
    font-size: 3.2vw;
  }
}
.works__List {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6.8rem;
}
@media screen and (max-width: 767px) {
  .works__List {
    display: block;
    margin-top: 8vw;
  }
}
.works__List.-mt0 {
  margin-top: 0;
}
.works__Item {
  width: 31.75%;
  margin: 0 0 5.6rem;
}
@media screen and (max-width: 767px) {
  .works__Item {
    width: 100%;
    margin: 0 0 5.3333333333vw;
  }
}
.works__Item:nth-child(3n+2) {
  margin: 0 2.375% 5.6rem;
}
@media screen and (max-width: 767px) {
  .works__Item:nth-child(3n+2) {
    margin: 0 0 5.3333333333vw;
  }
}
.works__Thum {
  margin-bottom: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .works__Thum {
    margin: 0 0 2.6666666667vw;
  }
}
.works__Thum:before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: calc(100% - 4rem);
  height: 2rem;
  background: url(./../img/img_focus_before.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .works__Thum:before {
    top: 2.6666666667vw;
    left: 2.6666666667vw;
    width: calc(100% - 5.3333333333vw);
    height: 5.3333333333vw;
  }
}
.works__Thum:after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: calc(100% - 4rem);
  height: 2rem;
  background: url(./../img/img_focus_after.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .works__Thum:after {
    bottom: 2.6666666667vw;
    left: 2.6666666667vw;
    width: calc(100% - 5.3333333333vw);
    height: 5.3333333333vw;
  }
}
.works__Category {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .works__Category {
    margin-bottom: 2.6666666667vw;
  }
}
.works__Category span {
  color: #999;
  font-size: 1rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .works__Category span {
    font-size: 2.6666666667vw;
    margin-right: 2.6666666667vw;
  }
}
.works__Subttl {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .works__Subttl {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.works__Txt {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.66em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .works__Txt {
    font-size: 3.2vw;
  }
}
.works .dlbtn {
  line-height: 1;
  background: #54a5ac;
  color: #fff;
  transition: 0.6s;
  padding: 2rem;
  text-align: center;
  display: block;
  max-width: 25rem;
  margin: 2rem auto 0;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  border: 0.1rem solid #54a5ac;
}
@media screen and (max-width: 767px) {
  .works .dlbtn {
    max-width: 80%;
    font-size: 3.7333333333vw;
    padding: 5.3333333333vw 0;
    margin: 5.3333333333vw auto 0;
  }
}
.works .dlbtn:hover {
  background: #fff;
  opacity: 1;
  color: #54a5ac;
}
.works.-under {
  padding: 6.5rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .works.-under {
    padding: 13.3333333333vw 0;
  }
}
.works.-under .commonTtl__En {
  color: #000;
}
.works.-under .commonTtl__En:before {
  background-image: url("./../img/img_ttl_bg_green.png");
}
.works.-under .commonTtl__Jp {
  color: #000;
}

.frontBnr {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .frontBnr {
    padding-bottom: 13.3333333333vw;
  }
}
.frontBnr__Flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .frontBnr__Flex {
    display: block;
  }
}
.frontBnr__Anchor {
  width: 48.5%;
  padding: 9rem 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .frontBnr__Anchor {
    width: 100%;
    padding: 13.3333333333vw 0;
  }
}
.frontBnr__Anchor:before {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 0;
  height: 0;
  content: "";
  border: 1.5rem solid transparent;
  border-right: 1.5rem solid #fff;
  border-bottom: 1.5rem solid #fff;
}
@media screen and (max-width: 767px) {
  .frontBnr__Anchor:before {
    right: 2.6666666667vw;
    bottom: 2.6666666667vw;
    border: 2.6666666667vw solid transparent;
    border-right: 2.6666666667vw solid #fff;
    border-bottom: 2.6666666667vw solid #fff;
  }
}
.frontBnr__Anchor.-company {
  background: url("./../img/img_bnr_company.jpg");
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .frontBnr__Anchor.-company {
    margin-bottom: 2.6666666667vw;
  }
}
.frontBnr__Anchor.-faq {
  background: url("./../img/img_bnr_faq.jpg");
  background-size: cover;
}

.company {
  padding: 6.5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 13.3333333333vw 0;
  }
}
.company .commonTtl__En {
  color: #000;
}
.company .commonTtl__En:before {
  background-image: url("./../img/img_ttl_bg_green.png");
}
.company .commonTtl__Jp {
  color: #000;
}
.company__Wrap {
  max-width: 80rem;
  margin: 4rem auto 6rem;
}
@media screen and (max-width: 767px) {
  .company__Wrap {
    margin: 10.6666666667vw auto;
    max-width: 100%;
  }
}
.company__Table {
  width: 100%;
}
.company__Table tr {
  border-bottom: 0.1rem solid #ccc;
}
.company__Table-Th {
  width: 28rem;
  font-size: 1.4rem;
  line-height: 2.14em;
  vertical-align: top;
  padding: 1.5rem 0 1.5rem 3rem;
}
@media screen and (max-width: 767px) {
  .company__Table-Th {
    display: block;
    width: 100%;
    font-size: 4.2666666667vw;
    padding: 4vw 0 0;
    font-weight: bold;
  }
}
.company__Table-Td {
  width: calc(100% - 28rem);
  font-size: 1.4rem;
  line-height: 2.14em;
  letter-spacing: 0.05em;
  padding: 1.5rem 5.5rem 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .company__Table-Td {
    display: block;
    width: 100%;
    font-size: 3.7333333333vw;
    padding: 1.3333333333vw 0 4vw;
  }
}
.company__Map {
  max-width: 80rem;
  margin: auto;
  height: 0;
  overflow: hidden;
  padding-bottom: 38.25%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company__Map {
    max-width: 100%;
    padding-bottom: 56.25%;
  }
}
.company__Map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.company__Address {
  text-align: center;
  font-size: 1.4rem;
  margin-top: 4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .company__Address {
    font-size: 3.2vw;
    margin-top: 5.3333333333vw;
  }
}

.faq {
  padding: 6.5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 13.3333333333vw 0;
  }
}
.faq .commonTtl__En {
  color: #000;
}
.faq .commonTtl__En:before {
  background-image: url("./../img/img_ttl_bg_green.png");
}
.faq .commonTtl__Jp {
  color: #000;
}
.faq__Wrap {
  padding: 6.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .faq__Wrap {
    padding: 8vw 0;
  }
}
.faq__Dl {
  padding: 3rem 2rem;
  border-bottom: 0.1rem solid #ccc;
}
@media screen and (max-width: 767px) {
  .faq__Dl {
    padding: 5.3333333333vw 0;
  }
}
.faq__Dt {
  padding-left: 4.3rem;
  font-size: 2rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq__Dt {
    padding: 0 8vw;
    font-size: 4.2666666667vw;
  }
}
.faq__Dt:before {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 2.6rem;
  height: 2.6rem;
  line-height: 2.6rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  content: "Q";
  background: #54a5ac;
  color: #fff;
  border-radius: 30rem;
}
@media screen and (max-width: 767px) {
  .faq__Dt:before {
    font-size: 3.2vw;
  }
}
.faq__Dt:after {
  position: absolute;
  right: 0;
  top: 0.25rem;
  width: 2rem;
  height: 2rem;
  content: "";
  background: url("./../img/icon_plus.png");
  background-size: cover;
}
.faq__Dt.-op:after {
  background: url("./../img/icon_mynus.png");
  background-size: cover;
  height: 0.2rem;
  top: 1.25rem;
}
.faq__Dd {
  margin-top: 1.7rem;
  background: #f4fafb;
  letter-spacing: 0.05em;
  line-height: 1.71em;
  padding: 2.5rem 3rem 2.5rem 6rem;
  font-size: 1.4rem;
  position: relative;
  display: none;
}
@media screen and (max-width: 767px) {
  .faq__Dd {
    padding: 5.3333333333vw 5.3333333333vw 5.3333333333vw 16vw;
    font-size: 3.7333333333vw;
  }
}
.faq__Dd:before {
  position: absolute;
  left: 2rem;
  top: 2.5rem;
  width: 2.6rem;
  height: 2.6rem;
  line-height: 2.6rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  content: "A";
  background: #000;
  color: #fff;
  border-radius: 30rem;
}
@media screen and (max-width: 767px) {
  .faq__Dd:before {
    font-size: 3.2vw;
  }
}

.contact {
  padding: 6.5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 13.3333333333vw 0;
  }
}
.contact .commonTtl__En {
  color: #000;
}
.contact .commonTtl__En:before {
  background-image: url("./../img/img_ttl_bg_green.png");
}
.contact .commonTtl__Jp {
  color: #000;
}
.contact__Wrap {
  padding: 6.5rem 0 0;
  max-width: 71.5rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .contact__Wrap {
    max-width: 100%;
    padding: 8vw 0 0;
  }
}
.contact__Wrap table {
  width: 100%;
}
.contact__Wrap tr {
  padding-bottom: 3rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .contact__Wrap tr {
    padding-bottom: 5.3333333333vw;
  }
}
.contact__Wrap th {
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 1.5rem;
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact__Wrap th {
    font-size: 4.2666666667vw;
    font-weight: bold;
    padding-bottom: 4vw;
  }
}
.contact__Wrap th span {
  color: #ff0000;
}
@media screen and (max-width: 767px) {
  .contact__Wrap th br {
    display: none;
  }
}
.contact__Wrap td {
  display: block;
  width: 100%;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .contact__Wrap td {
    font-size: 4.2666666667vw;
  }
}
.contact__Wrap td input[type=text] {
  font-size: 1.6rem;
  width: 100%;
  padding: 1.8rem;
  border: 0.1rem solid #ccc;
  background: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .contact__Wrap td input[type=text] {
    padding: 4vw;
  }
}
.contact__Wrap td textarea {
  font-size: 1.6rem;
  width: 100%;
  padding: 1.8rem;
  border: 0.1rem solid #ccc;
  background: #f2f2f2;
  min-height: 44.3rem;
}
@media screen and (max-width: 767px) {
  .contact__Wrap td textarea {
    padding: 4vw;
  }
}
.contact__Wrap td .selectwrap {
  background: url(./../img/icon_select_arrow.png);
  background-size: 1.5rem;
  background-position: right 2.5rem center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .contact__Wrap td .selectwrap {
    background-size: 4vw;
    background-position: right 6.6666666667vw center;
  }
}
.contact__Wrap td .selectwrap select {
  -webkit-appearance: none;
  appearance: none;
  font-size: 1.6rem;
  width: 100%;
  padding: 1.8rem;
  border: 0.1rem solid #ccc;
  background: none;
}
@media screen and (max-width: 767px) {
  .contact__Wrap td .selectwrap select {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw;
  }
}
.contact__Wrap td .comment {
  margin-bottom: 1.5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .contact__Wrap td .comment {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.contact__Wrap .submit_wrap .send_btn {
  max-width: 32.7rem;
  width: 100%;
  display: block;
  margin: auto;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 2.7rem 0;
  text-align: center;
  transition: 0.6s;
  border: 0.1rem solid #54a5ac;
  background-color: #54a5ac;
  background-image: url(./../img/icon_arrow_white.png);
  background-position: center right 2rem;
  background-size: 4rem;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .contact__Wrap .submit_wrap .send_btn {
    max-width: 80%;
    font-size: 3.7333333333vw;
    padding: 5.3333333333vw 0;
  }
}
.contact__Wrap .submit_wrap .send_btn:hover {
  background: #fff;
  color: #54a5ac;
  background-image: url("./../img/icon_arrow_green.png");
  background-repeat: no-repeat;
  background-position: center right 2rem;
  background-size: 4rem;
}
@media screen and (max-width: 767px) {
  .contact__Wrap .submit_wrap .send_btn:hover {
    background-position: center right 5.3333333333vw;
    background-size: 10.6666666667vw;
  }
}
.contact__Wrap .mw_wp_form_confirm td .selectwrap {
  background: none;
}
.contact__Wrap .thanks h2 {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  line-height: 1.6em;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__Wrap .thanks h2 {
    font-size: 4.2666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.contact__Wrap .thanks h3 {
  font-size: 1.6rem;
  line-height: 2.28em;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contact__Wrap .thanks h3 {
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}

.singleworksWrap {
  margin: 8rem auto 6rem;
}
@media screen and (max-width: 767px) {
  .singleworksWrap {
    margin: 13.3333333333vw 0;
  }
}
.singleworksWrap__Ttl {
  font-size: 2.4rem;
  color: #000;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Ttl {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
}
.singleworksWrap__Flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Flex {
    margin-bottom: 8vw;
    display: block;
  }
}
.singleworksWrap__Main {
  width: calc(100% - 45rem);
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Main {
    width: 100%;
  }
}
.singleworksWrap__Main-Thum {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Main-Thum {
    margin-bottom: 5.3333333333vw;
  }
}
.singleworksWrap__Main-Detail h2 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
  background: #000;
  letter-spacing: 0.05em;
  padding: 1.2rem 3rem 1.2rem 4rem;
  position: relative;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Main-Detail h2 {
    padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 10.6666666667vw;
    font-size: 4.2666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.singleworksWrap__Main-Detail h2:before {
  position: absolute;
  left: 1rem;
  top: 0;
  width: 1rem;
  background: #fff;
  content: "";
  height: 100%;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Main-Detail h2:before {
    width: 2.6666666667vw;
    left: 2.6666666667vw;
  }
}
.singleworksWrap__Main-Detail h3 {
  font-size: 1.8rem;
  font-weight: 600;
  padding-bottom: 1.2rem;
  border-bottom: 0.1rem solid #000;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Main-Detail h3 {
    margin-bottom: 5.3333333333vw;
    padding-bottom: 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.singleworksWrap__Main-Detail p {
  font-size: 1.4rem;
  color: #545454;
  line-height: 1.71em;
  letter-spacing: 0.1em;
  margin-bottom: 3.3rem;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Main-Detail p {
    margin-bottom: 5.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.singleworksWrap__Side {
  width: 40rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Side {
    width: 100%;
    margin-top: 8vw;
  }
}
.singleworksWrap__Side-Table {
  width: 100%;
}
.singleworksWrap__Side-Table-Th {
  width: 14.4rem;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Side-Table-Th {
    width: 100%;
    display: block;
    font-weight: bold;
    font-size: 3.7333333333vw;
    padding-bottom: 2.6666666667vw;
  }
}
.singleworksWrap__Side-Table-Td {
  width: calc(100% - 14.4rem);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Side-Table-Td {
    width: 100%;
    display: block;
    font-size: 3.7333333333vw;
    padding-bottom: 8vw;
  }
}
.singleworksWrap__Side-Table-Td a {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-right: 1em;
  color: #000;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .singleworksWrap__Side-Table-Td a {
    font-size: 3.7333333333vw;
  }
}