/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
}

body {
  line-height: 1;
}

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

button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

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

blockquote,
q {
  quotes: none;
}

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

table, td, th {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

/*===============================
base
================================*/
html {
  font-weight: 700;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

body {
  position: relative;
  z-index: 100;
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 14px;
  }
}

.wrap {
  width: calc(100% - 50px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .wrap {
    width: calc(100% - 100px);
  }
}

.palmtop {
  display: block !important;
}
@media screen and (min-width: 1024px) {
  .palmtop {
    display: none !important;
  }
}

.laptop {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .laptop {
    display: block !important;
  }
}

/*===============================
layout
================================*/
/*
header
================================*/
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 25px;
  background: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
          box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.site-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-header .container .logo a img {
  width: 125px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo a img {
    width: 150px;
  }
}
.site-header .container .hbg {
  position: relative;
  z-index: 120;
  width: 30px;
  height: 10px;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    display: none;
  }
}
.site-header .container .hbg .line {
  position: absolute;
  z-index: 120;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  -webkit-transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: background 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease;
  transition: transform 0.4s ease, background 0.4s ease, -webkit-transform 0.4s ease;
}
.site-header .container .hbg .line:last-child {
  bottom: 0;
}
.site-header .container .is-hbg .line {
  background: #fff;
}
.site-header .container .is-hbg .line:first-child {
  -webkit-transform: translateY(3.5px) rotate(45deg);
          transform: translateY(3.5px) rotate(45deg);
}
.site-header .container .is-hbg .line:last-child {
  -webkit-transform: translateY(-3.5px) rotate(-45deg);
          transform: translateY(-3.5px) rotate(-45deg);
}
.site-header .container .drawer {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
  background: #333;
  pointer-events: none;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease;
}
@media screen and (min-width: 1024px) {
  .site-header .container .drawer {
    display: none;
  }
}
.site-header .container .drawer .drawer-menu {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-header .container .drawer .drawer-menu .menu:not(:first-child) {
  margin-top: 40px;
}
.site-header .container .drawer .drawer-menu .menu a {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.site-header .container .is-drawer {
  top: 0;
  pointer-events: auto;
}
.site-header .container .menu-list {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header .container .menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .menu-list .item:not(:first-child) {
    margin-left: 40px;
  }
}
.site-header .container .menu-list .item a {
  font-weight: bold;
}

/*
main
================================*/
.site-main {
  position: relative;
  z-index: 10;
  margin-top: 58.56px;
}
@media screen and (min-width: 1024px) {
  .site-main {
    margin-top: 64.28px;
  }
}
.site-main .sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
  .site-main .sec-title {
    margin-bottom: 50px;
  }
}
.site-main .sec-title__ja {
  font-size: 22px;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .site-main .sec-title__ja {
    font-size: 30px;
  }
}
.site-main .sec-title__en {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
  margin-left: 15px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .site-main .sec-title__en {
    margin-left: 25px;
    font-size: 20px;
  }
}
.site-main__fv .fv-swiper {
  pointer-events: none;
}
.site-main__fv .swiper-slide .service-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 15px;
  background: #333;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .site-main__fv .swiper-slide .service-title {
    padding: 20px;
  }
}
.site-main__fv .swiper-slide .service-title .service-num {
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 1024px) {
  .site-main__fv .swiper-slide .service-title .service-num {
    font-size: 16px;
  }
}
.site-main__fv .swiper-slide .service-title__ja {
  margin-top: 10px;
  font-weight: 900;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .site-main__fv .swiper-slide .service-title__ja {
    font-size: 18px;
  }
}
.site-main__news {
  background: #f7f7f7;
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list .item {
    width: calc(33.3% - 33.3px);
    margin-right: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list .item:nth-child(3n) {
    margin-right: 0;
  }
}
.site-main__news .news-list .item .thumb {
  position: relative;
  aspect-ratio: 1200/800;
}
.site-main__news .news-list .item .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-main__news .news-list .item .info {
  margin-top: 15px;
}
.site-main__news .news-list .item .title {
  margin-top: 8px;
  line-height: 1.5em;
}
.site-main__service .desc {
  margin-top: -5px;
  line-height: 1.8em;
}
.site-main__service .service-list {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__service .service-list {
    margin-top: 50px;
  }
}
.site-main__service .service-list .item {
  padding: 25px;
  border-radius: 5px;
  border: 3px solid #333;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item {
    width: calc(50% - 12.5px);
    margin-right: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .site-main__service .service-list .item {
    width: calc(25% - 18.75px);
  }
}
.site-main__service .service-list .item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  .site-main__service .service-list .item:nth-child(2n) {
    margin-right: 25px;
  }
}
@media screen and (min-width: 1200px) {
  .site-main__service .service-list .item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .site-main__service .service-list .item:nth-child(-n+4) {
    margin-top: 0;
  }
}
.site-main__service .service-list .item .icon {
  text-align: center;
}
.site-main__service .service-list .item .icon img {
  width: 60px;
}
.site-main__service .service-list .item .title {
  margin: 15px 0 10px;
  text-align: center;
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item .title {
    margin: 20px 0 15px;
  }
}
.site-main__service .service-list .item .service-desc {
  line-height: 1.6em;
}
.site-main__message {
  position: relative;
  background: #333;
  color: #fff;
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-main__message:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/message-bg.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom left;
  opacity: 0.075;
}
.site-main__message .desc {
  line-height: 1.8em;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .site-main__message .desc {
    letter-spacing: 0;
  }
}
.site-main__message .desc p:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .site-main__message .desc p:not(:first-child) {
    margin-top: 35px;
  }
}
.site-main__message .catch {
  margin-top: 25px;
  line-height: 1.4em;
  font-size: 20px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .site-main__message .catch {
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__message .catch {
    margin-top: 35px;
    font-size: 40px;
  }
}
.site-main__company .overview dl {
  padding: 15px;
  line-height: 1.5em;
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview dl {
    padding: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__company .overview dl:nth-child(odd) {
  background: #f6f6f6;
}
.site-main__company .overview dl:nth-child(even) {
  background: #fcfcfc;
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview dl dt {
    width: 150px;
  }
}
.site-main__company .overview dl dd {
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}

/*
footer
================================*/
.site-footer {
  background: #f7f7f7;
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-footer .logo img {
  width: 125px;
}
@media screen and (min-width: 1024px) {
  .site-footer .logo img {
    width: 150px;
  }
}
.site-footer .cp {
  margin-top: 50px;
}

/*===============================
module
================================*/
/*
space
================================*/
.pad-tb {
  padding: 50px 0;
}
@media screen and (min-width: 1024px) {
  .pad-tb {
    padding: 100px 0;
  }
}

.pad-t {
  padding-top: 50px;
}
@media screen and (min-width: 1024px) {
  .pad-t {
    padding-top: 100px;
  }
}

.mar-t {
  margin-top: 50px;
}
@media screen and (min-width: 1024px) {
  .mar-t {
    margin-top: 100px;
  }
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}