/*===============================
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: 500;
  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: 15px;
  }
}

.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%;
  border-bottom: 1px solid #ccc;
  padding: 15px;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .site-header {
    padding: 15px 25px;
  }
}
.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: 225px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo a img {
    width: 300px;
  }
}
.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: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
  background: #333;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 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;
  color: #fff;
  font-weight: 700;
}
.site-header .container .is-drawer {
  opacity: 1;
  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;
  }
}
.site-header .container .menu-list .item:not(:first-child) {
  margin-left: 30px;
}

/*
main
================================*/
.site-main {
  position: relative;
  z-index: 10;
  margin-top: 56.63px;
}
@media screen and (min-width: 1024px) {
  .site-main {
    margin-top: 65.16px;
  }
}
.site-main .sec-title {
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .site-main .sec-title {
    margin-bottom: 60px;
  }
}
.site-main .sec-title__en {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .site-main .sec-title__en {
    font-size: 50px;
  }
}
.site-main .sec-title__ja {
  margin-top: 10px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .site-main .sec-title__ja {
    margin-top: 15px;
    font-size: 18px;
  }
}
.site-main__fv .catch__en {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .site-main__fv .catch__en {
    font-size: 50px;
  }
}
.site-main__fv .catch__ja {
  margin-top: 10px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .site-main__fv .catch__ja {
    margin-top: 20px;
    font-size: 18px;
  }
}
.site-main__fv .cover {
  position: relative;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .site-main__fv .cover {
    aspect-ratio: initial;
    height: 500px;
  }
}
.site-main__fv .cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .site-main__about .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__about .column .title {
  margin-top: -7px;
  line-height: 1.5em;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .site-main__about .column .title {
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__about .column .title {
    width: auto;
    margin-right: 80px;
  }
}
.site-main__about .column .desc {
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .site-main__about .column .desc {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.site-main__about .column .desc p {
  line-height: 1.8em;
}
.site-main__about .column .desc p:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .site-main__about .column .desc p:not(:first-child) {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__about .column .desc p:not(:first-child) {
    margin-top: 20px;
  }
}
.site-main__service {
  background: #f7f7f7;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__service .service-list .item {
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
          box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item {
    padding: 40px;
    width: calc(50% - 15px);
    margin-right: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__service .service-list .item {
    width: calc(50% - 30px);
    margin-right: 60px;
  }
}
.site-main__service .service-list .item:nth-child(2) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item:nth-child(2) {
    margin-top: 0;
    margin-right: 0;
  }
}
.site-main__service .service-list .item .title {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item .title {
    font-size: 25px;
    margin-bottom: 30px;
  }
}
.site-main__service .service-list .item .img {
  position: relative;
  aspect-ratio: 16/9;
}
.site-main__service .service-list .item .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-main__company .overview-list dl {
  border-top: 1px solid #ccc;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview-list dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0;
  }
}
.site-main__company .overview-list dl:last-child {
  border-bottom: 1px solid #ccc;
}
.site-main__company .overview-list dl dt, .site-main__company .overview-list dl dd {
  line-height: 1.5em;
}
.site-main__company .overview-list dl dt {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview-list dl dt {
    width: 150px;
  }
}
.site-main__company .overview-list dl dd {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .site-main__company .overview-list dl dd {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.site-main__news {
  background: #f7f7f7;
}
.site-main__news .news-list {
  overflow-y: auto;
  border: 1px solid #000;
  max-height: 200px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .site-main__news .news-list {
    max-height: 300px;
  }
}
.site-main__news .news-list .item {
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .site-main__news .news-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list .item {
    padding: 20px;
  }
}
.site-main__news .news-list .item:not(:first-child) {
  border-top: 1px solid #000;
}
@media screen and (min-width: 768px) {
  .site-main__news .news-list .item .date {
    width: auto;
  }
}
.site-main__news .news-list .item .title {
  margin-top: 10px;
  line-height: 1.5em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .site-main__news .news-list .item .title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    margin-left: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__news .news-list .item .title {
    margin-left: 60px;
  }
}

/*
footer
================================*/
.site-footer .logo img {
  width: 225px;
}
@media screen and (min-width: 1024px) {
  .site-footer .logo img {
    width: 300px;
  }
}
.site-footer .address {
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .site-footer .address {
    margin-top: 20px;
  }
}
.site-footer .cp {
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .site-footer .cp {
    font-size: 13px;
  }
}

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

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

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

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

.center {
  text-align: center;
}

.right {
  text-align: right;
}