@charset "UTF-8";
/* Scss Document */
/* UTILITY
 * ========================================================================== */
.lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

.notosuns {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.notoserif {
  font-family: "Noto Serif JP", _serif;
  font-weight: 400;
}

html,
body {
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  color: #505050;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  width: 100%;
  background-color: white;
}
@media screen and (max-width: 767px) {
  html,
body {
    font-size: 3.8888888889vw;
  }
}

body.fixed {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
body.fixed .page-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(52, 58, 83, 0.8);
  z-index: 998;
  visibility: visible;
  opacity: 1;
}
body .page-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(52, 58, 83, 0.8);
  z-index: -1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  visibility: hidden;
  opacity: 0;
}

h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl, dt, dd, a, figcaption {
  letter-spacing: 1px;
  line-height: 2.111em;
  margin: 0;
  padding: 0;
  color: #4A110D;
}
@media screen and (max-width: 767px) {
  h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl, dt, dd, a, figcaption {
    letter-spacing: 0;
    line-height: 1.999em;
  }
}

figure {
  margin: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

button {
  cursor: pointer;
}

.resize {
  width: 100%;
  height: auto;
}

.responsive {
  max-width: 100%;
  width: auto;
  height: auto;
}

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

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

.pc-br {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-br {
    display: initial;
  }
}

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

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.flex .x-start {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex .x-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex .x-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex .x-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex .x-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flex .y-start {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex .y-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex .y-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex .y-baseline {
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
}
.flex .c-center {
  -ms-flex-line-pack: center;
      align-content: center;
}
.flex .c-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
.flex .c-around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  opacity: 0;
}

/* COMMON
 * ========================================================================== */
a,
button {
  color: #4A110D;
  text-decoration: none;
}
a.scaleup,
button.scaleup {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
a.scaleup:hover,
button.scaleup:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  a.scaleup:hover,
button.scaleup:hover {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
a.opacity,
button.opacity {
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
a.opacity:hover,
button.opacity:hover {
  opacity: 0.6;
}
a.slide,
button.slide {
  display: inline-block;
  -webkit-animation: slideLeft 1s forwards;
          animation: slideLeft 1s forwards;
}
a.slide:hover,
button.slide:hover {
  -webkit-animation: slideRight 0.25s forwards;
          animation: slideRight 0.25s forwards;
}
a.underline,
button.underline {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
a.underline:after,
button.underline:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #4A110D;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  a.underline:after,
button.underline:after {
    bottom: -1.1111111111vw;
    height: 0.5555555556vw;
  }
}
a.underline:hover:after,
button.underline:hover:after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.link-btn {
  width: 364px;
  height: 76px;
  background-color: #4A110D;
  color: white;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .link-btn {
    width: 100%;
    height: 18.3333333333vw;
    margin: 40px auto 0;
  }
}
.link-btn.white a {
  border-color: #D3D3D3;
  color: #fff;
}
.link-btn.white a:before {
  background-color: #4A110D;
}
.link-btn a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .link-btn a {
    font-size: 3.8888888889vw;
    border-radius: 5.5555555556vw;
  }
}
.link-btn a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  right: 1em;
  font-weight: 700;
  -webkit-transition: right 0.2s linear;
  transition: right 0.2s linear;
  color: white;
}
.link-btn a:hover:after {
  right: 0.777em;
}

.page-top {
  width: 52px;
  height: 52px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
}

.page-top a {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(/assets/img/pagetop.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* LAYOUT
 * ========================================================================== */
.page-header {
  width: 100%;
  min-width: 1110px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 0;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
@media screen and (max-width: 767px) {
  .page-header {
    min-width: 320px;
    padding: 0;
  }
}
.page-header.sticky {
  background-color: #4A110D;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.contact .page-header {
  background-color: #4A110D;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.page-main {
  width: 100%;
  min-width: 1110px;
  position: relative;
  margin-top: 193px;
}
@media screen and (max-width: 767px) {
  .page-main {
    min-width: 320px;
    margin-top: 15.2777777778vw;
  }
}
.page-main.toppage {
  background-image: url("/assets/img/mainvisual.jpg");
  background-size: 100% auto;
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .page-main.toppage {
    background-image: url("/assets/img/mainvisual_sp.jpg");
  }
}

.page-footer {
  background-color: #4A110D;
  width: 100%;
  min-width: 1110px;
  position: relative;
  margin-top: 100px;
  color: white;
}
.page-footer a {
  color: white;
}
@media screen and (max-width: 767px) {
  .page-footer {
    min-width: 320px;
    margin-top: 40px;
  }
}

/* PAGE-HEADER
 * ========================================================================== */
.page-header .inner {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-header .inner {
    height: 15.2777777778vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
  }
}
.page-header .inner .logo {
  width: 100%;
  height: 117px;
  padding: 8px 0 0 18px;
  background-image: url("/assets/img/house.jpg");
  background-repeat: no-repeat;
  background-position: bottom right 10%;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-header .inner .logo {
    margin: 0;
    z-index: 999;
    position: relative;
    height: 55px;
    background-size: 129px 38px;
    width: 84.7222222222vw;
  }
}
.page-header .inner .logo span {
  font-size: 14px;
}
.page-header .inner .logo a {
  display: block;
  line-height: 0;
  margin: 12px 0 0 0;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .page-header .inner .logo a {
    width: 163px;
    margin: 13px 0 0 0;
  }
}
.page-header .inner .menu-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu-button {
    background-color: #4A110D;
    width: 15.2777777778vw;
    height: 15.2777777778vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    z-index: 999;
  }
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu-button span {
    display: block;
    width: 8.3333333333vw;
    height: 8.3333333333vw;
    background-image: url("../img/common/menu-open.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.page-header .inner .menu-button.active span {
  background-image: url("../img/common/menu-close.svg");
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu-button.active span {
    background-image: url("../img/common/menu-close.svg");
  }
}
.page-header .inner .menu {
  padding: 0;
  background-color: #4A110D;
}
.page-header .inner .menu .menu_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1000px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .menu_inner {
    width: 100%;
    height: 100vh;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu {
    display: none;
    margin: 0;
    position: fixed;
    top: 15.2777777778vw;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    padding: 0;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    z-index: -1;
    width: 100%;
  }
}
.page-header .inner .menu .list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 635px;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    width: 100%;
  }
}
.page-header .inner .menu .list > li {
  margin-left: 30px;
  position: relative;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li {
    margin: 11.1111111111vw 0 0 0;
    font-size: 3.8888888889vw;
    letter-spacing: 0.111em;
    color: #fff;
    text-align: center;
  }
}
.page-header .inner .menu .list > li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li:last-child {
    margin: 11.1111111111vw 0 0 0;
    font-size: 3.8888888889vw;
    letter-spacing: 0.111em;
    color: #fff;
    text-align: center;
  }
}
.page-header .inner .menu .list > li:before {
  position: absolute;
}
.page-header .inner .menu .list > li a {
  color: #fff;
  display: inline-block;
}
.page-header .inner .menu .list > li .sns {
  position: absolute;
  left: 50%;
  top: 50px;
  margin-left: -100px;
  width: 200px;
  display: none;
}
.page-header .inner .menu .list > li .sns:before {
  content: "";
  display: block;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 20px;
  height: 20px;
  background-color: #4A110D;
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -10px;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li .sns:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li .sns {
    display: block;
    position: static;
    width: auto;
    margin-left: 0;
  }
}
.page-header .inner .menu .list > li .sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  padding: 10px;
  background-color: #4A110D;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li .sns ul {
    background-color: transparent;
    padding: 0;
  }
}
.page-header .inner .menu .list > li .sns ul li {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .list > li .sns ul li {
    font-size: 6.1111111111vw;
    margin-left: 0.777em;
  }
  .page-header .inner .menu .list > li .sns ul li:first-child {
    font-size: 4.4444444444vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page-header .inner .menu .tellink {
  color: white;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .tellink {
    margin-top: 40px;
    text-align: center;
  }
}
.page-header .inner .menu .tellink a {
  color: white;
  font-size: 1.5rem;
}
.page-header .inner .menu .sp-menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-header .inner .menu .sp-menu {
    display: block;
    width: 73.33333333%;
    margin: 5.5555555556vw auto 13.8888888889vw auto;
    background-color: #4A110D;
    list-style: none;
    padding: 5.5555555556vw 6.9444444444vw;
  }
  .page-header .inner .menu .sp-menu li {
    margin-top: 4.1666666667vw;
  }
  .page-header .inner .menu .sp-menu li:first-child {
    margin-top: 0;
  }
  .page-header .inner .menu .sp-menu li a {
    color: #fff;
  }
}
.page-header.fixed .logo {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-header.fixed .logo {
    display: block;
  }
}

/* TOP PAGE
 * ========================================================================== */
.top-01 {
  width: 100%;
  height: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1110px) {
  .top-01 {
    height: 609px;
  }
}
@media screen and (max-width: 767px) {
  .top-01 {
    height: auto;
    display: block;
  }
}
.top-01 .mainvisual {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top-01 .mainvisual {
    width: 100%;
    height: 100vw;
  }
}
.top-01 .mainvisual .catchcopy {
  width: 72px;
  position: absolute;
  top: 40px;
  left: 20%;
}
@media screen and (max-width: 767px) {
  .top-01 .mainvisual .catchcopy {
    width: 11.1111111111vw;
    left: 8%;
    top: 20px;
  }
}

.top-02 {
  padding: 0 0 80px 0;
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  background-image: url(/assets/img/division.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .top-02 {
    text-align: left;
    padding: 0 0 16.6666666667vw 0;
    width: 80%;
    background-image: url(/assets/img/division_sp.svg);
  }
}
@media screen and (max-width: 767px) {
  .top-02 h1 {
    font-size: 5.5555555556vw;
    text-align: left;
  }
}
.top-02 .message {
  color: #505050;
  margin-top: 20px;
}

.top-03 {
  padding: 0 0 80px 0;
  width: 1000px;
  margin: 80px auto 0;
  text-align: center;
  background-image: url(/assets/img/division.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .top-03 {
    text-align: left;
    padding: 0 0 16.6666666667vw 0;
    width: 80%;
    background-image: url(/assets/img/division_sp.svg);
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .top-03 h2 {
    text-align: left;
    font-size: 5.5555555556vw;
  }
}
.top-03 .message {
  color: #505050;
  margin: 20px auto 0;
  text-align: left;
  width: 780px;
}
@media screen and (max-width: 767px) {
  .top-03 .message {
    width: 100%;
  }
}

.top-04 {
  padding: 0 0 0 0;
  width: 1000px;
  margin: 80px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-04 {
    width: 80%;
    padding: 0 0 8.3333333333vw 0;
    margin: 60px auto 0;
  }
}
.top-04 img {
  display: block;
  margin: 30px auto;
  width: 250px;
}
.top-04 .message {
  color: #505050;
  margin: 20px auto 0;
  text-align: center;
  width: 780px;
}
@media screen and (max-width: 767px) {
  .top-04 .message {
    width: 100%;
  }
}

.subpagetitle {
  background-color: #EFEAE1;
  width: 100%;
  height: 140px;
  padding: 43px 0 0;
}
@media screen and (max-width: 767px) {
  .subpagetitle {
    height: 106px;
    padding: 10.2777777778vw 0 0;
  }
}
.subpagetitle .inner {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .subpagetitle .inner {
    width: 90%;
  }
}
.subpagetitle .inner h1 {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .subpagetitle .inner h1 {
    font-size: 5vw;
  }
}

.about-01 {
  padding: 0 0 80px 0;
  width: 1000px;
  margin: 80px auto 0;
  text-align: center;
  background-image: url(/assets/img/division.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .about-01 {
    text-align: left;
    padding: 0 0 16.6666666667vw 0;
    width: 80%;
    background-image: url(/assets/img/division_sp.svg);
    margin: 60px auto 0;
  }
}
.about-01 .message {
  color: #505050;
  margin: 20px auto 0;
}
.about-01 .imagewrap {
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .about-01 .imagewrap {
    width: 100%;
  }
  .about-01 .imagewrap img {
    width: 100%;
  }
}

.about-02 {
  padding: 0 0 80px 0;
  width: 1000px;
  margin: 80px auto 0;
  text-align: center;
  background-image: url(/assets/img/division.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .about-02 {
    text-align: left;
    padding: 0 0 16.6666666667vw 0;
    width: 80%;
    background-image: url(/assets/img/division_sp.svg);
    margin: 60px auto 0;
  }
}
.about-02 .message {
  color: #505050;
  margin: 20px auto 0;
}
.about-02 .imagewrap {
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .about-02 .imagewrap {
    width: 100%;
  }
  .about-02 .imagewrap img {
    width: 100%;
  }
}

.about-03 {
  padding: 0 0 80px 0;
  width: 665px;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .about-03 {
    padding: 0 0 16.6666666667vw 0;
    width: 80%;
    margin: 60px auto 0;
  }
}
.about-03 h2 {
  text-align: center;
}
.about-03 dl {
  border-bottom: 1px solid #D3D3D3;
  color: #505050;
  font-size: 16px;
  padding: 30px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .about-03 dl {
    display: block;
    font-size: 3.8888888889vw;
  }
}
.about-03 dl.sp-hide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .about-03 dl.sp-hide {
    display: none;
  }
}
.about-03 dl.pc-hide {
  display: none;
}
@media screen and (max-width: 767px) {
  .about-03 dl.pc-hide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.about-03 dl dt {
  margin-right: 1em;
  color: #505050;
}
.about-03 dl dd {
  margin-right: 2em;
  color: #505050;
}

.contactbox {
  border-top: 1px solid #4A110D;
  border-bottom: 1px solid #4A110D;
  padding: 60px 0 60px 0;
  width: 1000px;
  margin: 40px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contactbox {
    padding: 16.6666666667vw 0 16.6666666667vw 0;
    width: 90%;
    margin: 20px auto 60px;
  }
}
.contactbox .telnum {
  margin: 20px auto 0;
}
.contactbox .telnum span {
  font-size: 38px;
}
.contactbox .message {
  color: #505050;
  margin: 20px auto 0;
}
.internallink {
  width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .internallink {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
  }
  .internallink li {
    width: 50%;
    text-align: left;
    margin-bottom: 12px;
  }
}

.works .works_wrap {
  padding: 0 0 80px 0;
  width: 1000px;
  margin: 80px auto 0;
  background-image: url(/assets/img/division.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .works .works_wrap {
    text-align: left;
    padding: 0 0 16.6666666667vw 0;
    width: 90%;
    background-image: url(/assets/img/division_sp.svg);
    margin: 20px auto 42px;
  }
}
.works .works_wrap h2 {
  text-align: center;
}
.works .works_wrap .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .works .works_wrap .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.works .works_wrap .inner .photo {
  width: 700px;
}
@media screen and (max-width: 767px) {
  .works .works_wrap .inner .photo {
    width: 100%;
    margin: 0 auto;
  }
  .works .works_wrap .inner .photo img {
    width: 100%;
  }
}
.works .works_wrap .inner .photo .message {
  color: #505050;
  margin: 20px auto 0;
}
.works .works_wrap .inner .other {
  width: 257px;
}
@media screen and (max-width: 767px) {
  .works .works_wrap .inner .other {
    width: 100%;
    margin: 0 auto;
  }
}
.works .works_wrap .inner .other .message {
  color: #505050;
  margin: 20px auto 0;
}
.works .works_wrap .inner .other .wrap {
  background-color: #F2F2F2;
  padding: 44px;
}
@media screen and (max-width: 767px) {
  .works .works_wrap .inner .other .wrap {
    padding: 3.3333333333vw;
  }
}
.works .works_wrap .inner .other .wrap ul {
  list-style-type: none;
}
@media screen and (max-width: 767px) {
  .works .works_wrap .inner .other .wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.works .works_wrap .inner .other .wrap ul li {
  width: 100%;
  margin-bottom: 29px;
}
@media screen and (max-width: 767px) {
  .works .works_wrap .inner .other .wrap ul li {
    margin: 0 8px 0 0;
    max-width: 95px;
  }
}
.works .works_wrap .inner .other .wrap ul li:last-child {
  margin: 0;
}
.works .works_wrap .inner .other .wrap ul li img {
  width: 100%;
}
.works .works_wrap .inner .photo_variable {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .works .works_wrap .inner .photo_variable {
    margin-top: 8.3333333333vw;
  }
}
.works .works_wrap .inner .photo_variable ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .works .works_wrap .inner .photo_variable ul {
    width: 100%;
  }
}
.works .works_wrap .inner .photo_variable ul li {
  width: 196px;
  margin-right: 5px;
  margin-bottom: 5Px;
}
.works .works_wrap .inner .photo_variable ul li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .works .works_wrap .inner .photo_variable ul li:nth-child(5n) {
    margin-right: 4%;
  }
}
@media screen and (max-width: 767px) {
  .works .works_wrap .inner .photo_variable ul li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 2.7777777778vw;
  }
  .works .works_wrap .inner .photo_variable ul li:nth-child(2n) {
    margin-right: 0;
  }
}
.works .works_wrap .inner .photo_variable ul li img {
  width: 100%;
}
.works .swiper-pagination-bullet-active {
  background-color: #4A110D;
}
.works .contactbox {
  margin-top: 70px;
}

.contact .contact-01 {
  padding: 0;
  width: 1000px;
  margin: 80px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact .contact-01 {
    text-align: left;
    padding: 0 0 8.3333333333vw 0;
    width: 80%;
    margin: 16.6666666667vw auto 0;
  }
}
.contact .contact-01 h2 {
  font-size: 35px;
}
@media screen and (max-width: 767px) {
  .contact .contact-01 h2 {
    font-size: 20px;
  }
}
.contact .contact-01 .contactinfo {
  background-color: #EFEAE1;
  padding: 60px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .contact .contact-01 .contactinfo {
    padding: 30px;
    margin: 26px auto 0;
  }
}
.contact .contact-01 .contactinfo .logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact .contact-01 .contactinfo .logo {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.contact .contact-01 .contactinfo .logo img:first-child {
  height: 26px;
  width: 260px;
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .contact .contact-01 .contactinfo .logo img:first-child {
    height: 22px;
    width: 220px;
    margin-right: 1em;
  }
}
.contact .contact-01 .contactinfo .logo img:last-child {
  height: 19px;
  width: 155px;
}
@media screen and (max-width: 767px) {
  .contact .contact-01 .contactinfo .logo img:last-child {
    height: 16px;
    width: 131px;
    margin-top: 20px;
  }
}
.contact .contact-01 .contactinfo .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .contact .contact-01 .contactinfo .number {
    display: block;
    text-align: center;
  }
}
.contact .contact-01 .contactinfo .number .telnum {
  margin: 0 2em 0 0;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .contact .contact-01 .contactinfo .number .telnum {
    margin: 0;
  }
}
.contact .contact-01 .contactinfo .number .telnum span {
  font-size: 38px;
}
@media screen and (max-width: 767px) {
  .contact .contact-01 .contactinfo .number .telnum span {
    font-size: 28px;
  }
}
.contact .contact-01 .contactinfo .number .faxnum {
  letter-spacing: 1px;
}
.contact .contact-01 .contactinfo .number .faxnum span {
  font-size: 38px;
}
@media screen and (max-width: 767px) {
  .contact .contact-01 .contactinfo .number .faxnum span {
    font-size: 28px;
  }
}
.contact .contact-01 .message {
  color: #505050;
  margin: 20px auto 0;
}
.contact .contact-02 {
  padding: 0 0 80px 0;
  width: 1000px;
  margin: 80px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 {
    text-align: left;
    padding: 0 0 16.6666666667vw 0;
    width: 90%;
    margin: 20px auto 0;
  }
}
.contact .contact-02 h2 {
  font-size: 35px;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 h2 {
    font-size: 20px;
    width: 90%;
    margin: 0 auto;
  }
}
.contact .contact-02 .message {
  color: #505050;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 .message {
    width: 90%;
  }
}
.contact .contact-02 .message span {
  color: red;
}
.contact .contact-02 .contactform {
  border: 10px solid #F0E9E1;
  text-align: left;
  margin-top: 60px;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 .contactform {
    padding: 5.5555555556vw;
    margin-top: 30px;
    border: 6px solid #F0E9E1;
  }
}
.contact .contact-02 .contactform dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 800px;
  margin: 30px auto 0;
  padding: 0 0 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 .contactform dl {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.contact .contact-02 .contactform dl dt {
  width: 220px;
}
.contact .contact-02 .contactform dl dt span {
  color: red;
  font-size: 12px;
}
.contact .contact-02 .contactform dl dd {
  font-size: 16px;
  width: 90%;
}
.contact .contact-02 .contactform dl dd input {
  border: none;
  background-color: #F2F2F2;
  padding: 12px;
}
.contact .contact-02 .contactform dl dd input.short {
  width: 262px;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 .contactform dl dd input.short {
    width: 100%;
  }
}
.contact .contact-02 .contactform dl dd input.middium {
  width: 453px;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 .contactform dl dd input.middium {
    width: 100%;
  }
}
.contact .contact-02 .contactform dl dd input.long {
  width: 575px;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 .contactform dl dd input.long {
    width: 100%;
  }
}
.contact .contact-02 .contactform dl dd textarea {
  border: none;
  background-color: #F2F2F2;
  padding: 12px;
  width: 575px;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 .contactform dl dd textarea {
    width: 100%;
  }
}
.contact .contact-02 .contactform dl dd span {
  display: block;
  font-size: 14px;
  color: red;
}
.contact .contact-02 .contactform .privacypolicy {
  margin: 60px auto;
}
.contact .contact-02 .contactform .privacypolicy h3 {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}
.contact .contact-02 .contactform .privacypolicy p {
  border: 1px solid #D3D3D3;
  padding: 30px;
  width: 700px;
  margin: 20px auto 0;
  color: #505050;
  height: 242px;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 .contactform .privacypolicy p {
    width: 100%;
    font-size: 14px;
    padding: 16px;
  }
}
.contact .contact-02 .contactform #form_submit {
  width: 364px;
  height: 76px;
  background-color: #4A110D;
  color: white;
  margin: 60px auto 0;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 .contactform #form_submit {
    width: 100%;
    height: 18.3333333333vw;
    margin: 40px auto 0;
  }
}
.contact .contact-02 .contactform #form_submit:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "";
  position: absolute;
  right: 1em;
  font-weight: 700;
  -webkit-transition: right 0.2s linear;
  transition: right 0.2s linear;
  color: white;
  top: 23px;
}
.contact .contact-02 .contactform #form_submit:hover:after {
  right: 0.777em;
}
.contact .contact-02 .contactform #form_submit input {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  position: relative;
  background-color: transparent;
  border: none;
}
@media screen and (max-width: 767px) {
  .contact .contact-02 .contactform #form_submit input {
    font-size: 3.8888888889vw;
    border-radius: 5.5555555556vw;
  }
}

.access-01 {
  padding: 0 0 80px 0;
  width: 1000px;
  margin: 80px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .access-01 {
    text-align: left;
    padding: 0 0 16.6666666667vw 0;
    width: 80%;
    margin: 60px auto 0;
  }
}
.access-01 .message {
  color: #505050;
  margin: 20px auto 0;
  text-align: left;
}
.access-01 .imagewrap {
  margin: 30px auto 0;
}
.access-01 .imagewrap iframe {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access-01 .imagewrap {
    width: 100%;
  }
  .access-01 .imagewrap img {
    width: 100%;
  }
}

/* フッター */
.page-footer {
  color: white;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .page-footer {
    padding: 20px 0;
  }
}
.page-footer .inner {
  color: white;
}
.page-footer .inner .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-footer .inner .footerlogo {
  width: 260px;
  margin: 0 auto;
  display: block;
}
.page-footer .inner .links {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-footer .inner .links {
    width: 100%;
    display: none;
  }
}
.page-footer .inner p {
  margin: 50px auto 30px;
  color: white;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-footer .inner p:nth-child(1) {
    margin: 0;
  }
}
.page-footer .inner .info {
  width: 1000px;
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-footer .inner .info {
    width: 100%;
  }
}
.page-footer .inner .info li {
  color: white;
  margin: 0;
  padding: 0;
}
.page-footer .inner .info li:nth-child(1) {
  width: 100%;
}
.page-footer .inner .info li:nth-child(2) {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .page-footer .inner .info li:nth-child(2) {
    width: 100%;
  }
}
.page-footer .inner .info li:nth-child(3) {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .page-footer .inner .info li:nth-child(3) {
    width: 100%;
  }
}
.page-footer .inner .copyright {
  font-size: 10px;
}