/*===============================
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: normal;
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 1px;
}

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%;
}
.site-header .container {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .site-header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.site-header .container .logo {
  display: inline-block;
  padding: 15px;
  border-radius: 0 0 10px 0;
  background: #fff;
}
.site-header .container .logo img {
  width: 200px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo img {
    width: 300px;
  }
}
.site-header .container .menu-list {
  display: none;
}
@media screen and (min-width: 1024px) {
  .site-header .container .menu-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    border-radius: 0 0 0 10px;
    padding: 0 30px;
  }
}
.site-header .container .menu-list .item {
  position: relative;
}
.site-header .container .menu-list .item:not(:first-child) {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #ccc;
}
.site-header .container .menu-list .item a {
  font-weight: bold;
}
.site-header .container .hbg {
  position: absolute;
  z-index: 150;
  top: 0;
  right: 0;
  width: 67.84px;
  height: 67.84px;
  background: #e37421;
  border-radius: 0 0 0 10px;
  pointer-events: auto;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    display: none;
  }
}
.site-header .container .hbg .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.site-header .container .hbg .inner .line-wrap {
  position: relative;
  width: 35px;
  height: 20px;
}
.site-header .container .hbg .inner .line-wrap .line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header .container .hbg .inner .line-wrap .line:first-child {
  top: 0;
}
.site-header .container .hbg .inner .line-wrap .line:nth-child(2) {
  top: 9px;
}
.site-header .container .hbg .inner .line-wrap .line:last-child {
  bottom: 0;
}
.site-header .container .is-hbg {
  background: #fff;
}
.site-header .container .is-hbg .inner .line-wrap .line {
  background: #e37421;
}
.site-header .container .is-hbg .inner .line-wrap .line:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.site-header .container .is-hbg .inner .line-wrap .line:nth-child(2) {
  opacity: 0;
}
.site-header .container .is-hbg .inner .line-wrap .line:last-child {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}
.site-header .container .drawer {
  position: fixed;
  z-index: 140;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e37421;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .site-header .container .drawer {
    display: none;
  }
}
.site-header .container .drawer .drawer-list {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-header .container .drawer .drawer-list .item:not(:first-child) {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #fff;
}
.site-header .container .drawer .drawer-list .item a {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
.site-header .container .is-drawer {
  opacity: 1;
  pointer-events: auto;
}

/*
main
================================*/
.site-main__fv {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url("images/fv-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .site-main__fv {
    height: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .site-main__fv {
    height: 700px;
  }
}
.site-main__fv .catch {
  position: absolute;
  z-index: 15;
  bottom: 0;
  left: 0;
  font-weight: 900;
  padding: 15px 15px 15px 25px;
  background: #fff;
  line-height: 1.5em;
  font-size: 25px;
  border-radius: 0 20px 0 0;
}
@media screen and (min-width: 768px) {
  .site-main__fv .catch {
    font-size: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__fv .catch {
    font-size: 45px;
  }
}
@media screen and (min-width: 1200px) {
  .site-main__fv .catch {
    font-size: 55px;
  }
}
.site-main__fv .catch span {
  color: #e37421;
}
.site-main__about {
  background: #e37421;
}
.site-main__about .title {
  position: relative;
  -moz-text-align-last: center;
       text-align-last: center;
  color: #fff;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.site-main__about .title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #fff;
}
.site-main__about .title__sub {
  font-weight: bold;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .site-main__about .title__sub {
    font-size: 20px;
  }
}
.site-main__about .title__sub span {
  position: relative;
  display: inline-block;
}
.site-main__about .title__sub span:before, .site-main__about .title__sub span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  width: 3px;
  height: 20px;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .site-main__about .title__sub span:before, .site-main__about .title__sub span:after {
    height: 25px;
  }
}
.site-main__about .title__sub span:before {
  left: -15px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
@media screen and (min-width: 1024px) {
  .site-main__about .title__sub span:before {
    left: -20px;
  }
}
.site-main__about .title__sub span:after {
  right: -13px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media screen and (min-width: 1024px) {
  .site-main__about .title__sub span:after {
    right: -18px;
  }
}
.site-main__about .title__main {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.4em;
}
@media screen and (min-width: 1024px) {
  .site-main__about .title__main {
    font-size: 35px;
  }
}
.site-main__about .desc {
  text-align: center;
  line-height: 1.7em;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .site-main__about .desc {
    font-size: 18px;
  }
}
.site-main__about .img-list {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .site-main__about .img-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__about .img-list .item {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .site-main__about .img-list .item {
    width: calc(33.3% - 16.6px);
    margin-top: 0;
    margin-right: 25px;
  }
}
.site-main__about .img-list .item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .site-main__about .img-list .item:nth-child(3n) {
    margin-right: 0;
  }
}
.site-main__service .title {
  position: relative;
  -moz-text-align-last: center;
       text-align-last: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.site-main__service .title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #e37421;
}
.site-main__service .title__sub {
  font-weight: bold;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .site-main__service .title__sub {
    font-size: 20px;
  }
}
.site-main__service .title__sub span {
  position: relative;
  display: inline-block;
  color: #e37421;
}
.site-main__service .title__sub span:before, .site-main__service .title__sub span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  width: 3px;
  height: 20px;
  background: #e37421;
}
@media screen and (min-width: 1024px) {
  .site-main__service .title__sub span:before, .site-main__service .title__sub span:after {
    height: 25px;
  }
}
.site-main__service .title__sub span:before {
  left: -15px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
@media screen and (min-width: 1024px) {
  .site-main__service .title__sub span:before {
    left: -20px;
  }
}
.site-main__service .title__sub span:after {
  right: -13px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media screen and (min-width: 1024px) {
  .site-main__service .title__sub span:after {
    right: -18px;
  }
}
.site-main__service .title__main {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.4em;
}
@media screen and (min-width: 1024px) {
  .site-main__service .title__main {
    font-size: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .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: 25px;
}
@media screen and (min-width: 1024px) {
  .site-main__service .service-list .item {
    width: calc(50% - 25px);
    margin-right: 50px;
  }
}
.site-main__service .service-list .item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .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(2n) {
    margin-right: 0;
  }
}
.site-main__service .service-list .item__img {
  position: relative;
  aspect-ratio: 2/1;
  background: #ccc;
  border-radius: 10px;
  overflow: hidden;
}
.site-main__service .service-list .item__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-main__service .service-list .item__title {
  margin-top: -21.5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item__title {
    margin-top: -25px;
  }
}
.site-main__service .service-list .item__title span {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 15px;
  background: #e37421;
  color: #fff;
  font-weight: bold;
  border-radius: 100vh;
  width: 250px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item__title span {
    font-size: 20px;
  }
}
.site-main__company {
  background: #fdf3ed;
}
.site-main__company .title {
  position: relative;
  -moz-text-align-last: center;
       text-align-last: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.site-main__company .title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #e37421;
}
.site-main__company .title__sub {
  font-weight: bold;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .site-main__company .title__sub {
    font-size: 20px;
  }
}
.site-main__company .title__sub span {
  position: relative;
  display: inline-block;
  color: #e37421;
}
.site-main__company .title__sub span:before, .site-main__company .title__sub span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  width: 3px;
  height: 20px;
  background: #e37421;
}
@media screen and (min-width: 1024px) {
  .site-main__company .title__sub span:before, .site-main__company .title__sub span:after {
    height: 25px;
  }
}
.site-main__company .title__sub span:before {
  left: -15px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
@media screen and (min-width: 1024px) {
  .site-main__company .title__sub span:before {
    left: -20px;
  }
}
.site-main__company .title__sub span:after {
  right: -13px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media screen and (min-width: 1024px) {
  .site-main__company .title__sub span:after {
    right: -18px;
  }
}
.site-main__company .title__main {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.4em;
}
@media screen and (min-width: 1024px) {
  .site-main__company .title__main {
    font-size: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.site-main__company .overview .item {
  border: 1px solid #ccc;
  margin-top: 10px;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview .item {
    margin-top: 25px;
    width: calc(50% - 12.5px);
    margin-right: 25px;
  }
}
.site-main__company .overview .item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview .item:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .overview .item:nth-child(2n) {
    margin-right: 0;
  }
}
.site-main__company .overview .item dt, .site-main__company .overview .item dd {
  line-height: 1.5em;
  padding: 10px 15px;
}
.site-main__company .overview .item dt {
  font-weight: bold;
  background: #f7f7f7;
}
.site-main__company .overview .item dd {
  border-top: 1px solid #ccc;
}
.site-main__news {
  background: #f7f7f7;
}
.site-main__news .title {
  position: relative;
  -moz-text-align-last: center;
       text-align-last: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.site-main__news .title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #e37421;
}
.site-main__news .title__sub {
  font-weight: bold;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .site-main__news .title__sub {
    font-size: 20px;
  }
}
.site-main__news .title__sub span {
  position: relative;
  display: inline-block;
  color: #e37421;
}
.site-main__news .title__sub span:before, .site-main__news .title__sub span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  width: 3px;
  height: 20px;
  background: #e37421;
}
@media screen and (min-width: 1024px) {
  .site-main__news .title__sub span:before, .site-main__news .title__sub span:after {
    height: 25px;
  }
}
.site-main__news .title__sub span:before {
  left: -15px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
@media screen and (min-width: 1024px) {
  .site-main__news .title__sub span:before {
    left: -20px;
  }
}
.site-main__news .title__sub span:after {
  right: -13px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
@media screen and (min-width: 1024px) {
  .site-main__news .title__sub span:after {
    right: -18px;
  }
}
.site-main__news .title__main {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.4em;
}
@media screen and (min-width: 1024px) {
  .site-main__news .title__main {
    font-size: 35px;
  }
}
.site-main__news .news-list .item {
  padding: 15px;
  border-radius: 10px;
  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;
}
@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: 25px;
  }
}
.site-main__news .news-list .item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .site-main__news .news-list .item .info {
    width: auto;
    margin-right: 25px;
  }
}
.site-main__news .news-list .item .info__date {
  margin-right: 10px;
}
.site-main__news .news-list .item .info__cat {
  background: #e37421;
  color: #fff;
  display: inline-block;
  padding: 3px;
}
.site-main__news .news-list .item__title {
  font-weight: bold;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .site-main__news .news-list .item__title {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/*
footer
================================*/
.site-footer {
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-footer .logo img {
  width: 200px;
}
@media screen and (min-width: 1024px) {
  .site-footer .logo img {
    width: 300px;
  }
}
.site-footer .cp {
  margin-top: 50px;
  font-size: 11px;
  letter-spacing: 0;
}

/*===============================
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;
}