@charset "UTF-8";
/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

html, body {
  overflow: hidden; /* デフォルトのスクロールバーを非表示 */
}

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;
  color: #212121;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

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;
  letter-spacing: 1px;
  color: #212121;
  font-family: "Zen Kaku Gothic New", sans-serif;
  overflow: auto;
  height: 100%;
}

body {
  position: relative;
  z-index: 100;
  font-size: clamp(0.813rem, 0.75rem + 0.27vw, 1rem);
  background: #fff;
}

.wrap {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin-inline: auto;
}

.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;
  }
}

.sclNone {
  overflow: hidden;
}

/*===============================
layout
================================*/
/*
header
================================*/
.site-header {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.site-header .container {
  padding: 30px;
  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 {
  width: 150px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo {
    width: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    display: none;
  }
}
.site-header .container .hbg img {
  width: 40px;
  height: 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: 50px;
  }
}

/*
main
================================*/
.site-main {
  margin-top: 88px;
}
@media screen and (min-width: 1024px) {
  .site-main {
    margin-top: 86.3px;
  }
}
.site-main__hero .hero-img-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  overflow: hidden;
  max-height: 700px;
  aspect-ratio: 4/3;
}
.site-main__hero .hero-img-swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-main__news {
  padding: 50px 0;
}
.site-main__news .title {
  text-align: center;
  font-size: clamp(1.063rem, 0.896rem + 0.71vw, 1.563rem);
}
.site-main__news .news-list {
  overflow-y: auto;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid #ccc;
  max-height: 300px;
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list {
    padding: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__news .news-list .item:not(:first-child) {
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list .item:not(:first-child) {
    margin-top: 30px;
    padding-top: 25px;
  }
}
.site-main__news .news-list .item dt, .site-main__news .news-list .item dd {
  line-height: 1.4em;
}
.site-main__news .news-list .item dt {
  color: #aaa;
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list .item dt {
    width: auto;
  }
}
.site-main__news .news-list .item dd {
  margin-top: 5px;
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list .item dd {
    margin-top: 0;
    margin-left: 30px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.site-main__about {
  background: #f7f7f7;
}
@media screen and (min-width: 1024px) {
  .site-main__about .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__about .column .img {
    width: 50%;
  }
}
.site-main__about .column .text {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .site-main__about .column .text {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 50px;
  }
}
.site-main__about .column .text .title {
  font-size: clamp(1.25rem, 0.833rem + 1.78vw, 2.5rem);
  line-height: 1.6em;
}
.site-main__about .column .text .desc {
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .site-main__about .column .text .desc {
    margin-top: 20px;
  }
}
.site-main__about .column .text .desc p {
  line-height: 1.6em;
}
.site-main__about .column .text .desc p:not(:first-child) {
  margin-top: 15px;
}
@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;
  }
}
.site-main__service .service-list .item {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item {
    margin-top: 25px;
    width: calc(50% - 17.5px);
    margin-right: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .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(-n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__service .service-list .item:nth-child(-n+4) {
    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: 1024px) {
  .site-main__service .service-list .item:nth-child(2n) {
    margin-right: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__service .service-list .item:nth-child(4n) {
    margin-right: 0;
  }
}
.site-main__service .service-list .item .title {
  text-align: center;
  padding: 15px 0;
  background: #212121;
  color: #fff;
}
.site-main__company {
  background: #f7f7f7;
}
.site-main__company .overview-list .item {
  padding-bottom: 15px;
  border-bottom: 2px solid #212121;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 30px;
  }
}
.site-main__company .overview-list .item:not(:first-child) {
  margin-top: 13px;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview-list .item:not(:first-child) {
    margin-top: 26px;
  }
}
.site-main__company .overview-list .item dt, .site-main__company .overview-list .item dd {
  line-height: 1.6em;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview-list .item dt {
    width: 20%;
  }
}
.site-main__company .overview-list .item dd {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview-list .item dd {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.site-main__company .overview-list .item dd ul li {
  position: relative;
  padding-left: 15px;
}
.site-main__company .overview-list .item dd ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.site-main__company .overview-list .item dd ul li:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview-list .item dd ul li:not(:first-child) {
    margin-top: 15px;
  }
}
.site-main__company .overview-list .item dd ul li span {
  margin-top: 5px;
  display: block;
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview-list .item dd ul li span {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview-list .item dd ul li span {
    font-size: 13px;
  }
}
.site-main__contact .desc {
  margin-top: -5px;
  line-height: 1.6em;
}
.site-main__contact .contact-btn {
  margin-top: clamp(1.875rem, 1.25rem + 2.67vw, 3.75rem);
}
.site-main__contact .contact-btn a {
  -moz-text-align-last: center;
       text-align-last: center;
  display: block;
  width: 100%;
  background: #212121;
  color: #fff;
  padding: 25px 0;
  font-size: clamp(1.25rem, 1.042rem + 0.89vw, 1.875rem);
}
@media screen and (min-width: 1024px) {
  .site-main__contact .contact-btn a {
    padding: 50px 0;
  }
}
.site-main__contact .contact-btn a span {
  margin-top: 15px;
  font-size: clamp(0.875rem, 0.792rem + 0.36vw, 1.125rem);
  display: block;
}

/*
footer
================================*/
.site-footer {
  background: #212121;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .site-footer .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.site-footer .column .logo {
  width: 150px;
}
@media screen and (min-width: 1024px) {
  .site-footer .column .logo {
    width: 200px;
  }
}
.site-footer .column .menu-list {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .site-footer .column .menu-list {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.site-footer .column .menu-list .item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .site-footer .column .menu-list .item:not(:first-child) {
    margin-top: 0;
    margin-left: 50px;
  }
}
.site-footer .column .menu-list .item a {
  color: #fff;
}
.site-footer .cp {
  font-family: "Inter", serif;
  letter-spacing: 0;
  font-size: 12px;
}

/*
drawer
================================*/
.drawer {
  position: fixed;
  z-index: 120;
  top: -100%;
  left: 0;
  width: 100%;
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
}
@media screen and (min-width: 1024px) {
  .drawer {
    display: none;
  }
}
.drawer .list .item {
  border-top: 1px solid #212121;
}
.drawer .list .item a {
  background: #fff;
  display: block;
  padding: 20px 0;
  text-align: center;
}

.is-drawer {
  top: 90px;
}

/*
title-style
================================*/
.title-style1 {
  margin-bottom: clamp(1.875rem, 1.25rem + 2.67vw, 3.75rem);
}
.title-style1__en {
  font-size: clamp(1.563rem, 1.042rem + 2.22vw, 3.125rem);
  font-family: "Inter", serif;
  letter-spacing: 0;
}
.title-style1__ja {
  margin-top: 10px;
  font-size: clamp(0.938rem, 0.833rem + 0.44vw, 1.25rem);
}

/*
space
================================*/
.pad-tb {
  padding: clamp(3.125rem, 2.083rem + 4.44vw, 6.25rem) 0;
}

.pad-t {
  padding-top: clamp(3.125rem, 2.083rem + 4.44vw, 6.25rem);
}

.pad-b {
  padding-bottom: clamp(3.125rem, 2.083rem + 4.44vw, 6.25rem);
}

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

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/*
font
================================*/
.ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.en {
  font-family: "Inter", serif;
}