/*===============================
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%;
  padding: 15px;
  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: 1024px) {
  .site-header {
    padding: 15px 30px;
  }
}
.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: 175px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo a img {
    width: 225px;
  }
}
.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: #e55175;
  -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: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #e55175), to(#fce4ec));
  background: linear-gradient(to bottom, #e55175 25%, #fce4ec 100%);
  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;
}
.site-header .container .menu-list .item a {
  font-weight: bold;
}

/*
main
================================*/
.site-main {
  position: relative;
  z-index: 10;
  margin-top: 57.37px;
}
@media screen and (min-width: 1024px) {
  .site-main {
    margin-top: 65.19px;
  }
}
.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: -1px;
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .site-main .sec-title__en {
    font-size: 60px;
  }
}
.site-main__fv {
  position: relative;
}
.site-main__fv:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 73%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #e55175), to(#fce4ec));
  background: linear-gradient(to bottom, #e55175 25%, #fce4ec 100%);
}
.site-main__fv .column {
  position: relative;
  z-index: 10;
}
.site-main__fv .column .contents .catch {
  -moz-text-align-last: center;
       text-align-last: center;
  color: #fff;
}
.site-main__fv .column .contents .catch-sub {
  font-weight: 700;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .site-main__fv .column .contents .catch-sub {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__fv .column .contents .catch-sub {
    font-size: 20px;
  }
}
.site-main__fv .column .contents .catch-main {
  margin-top: 15px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 1.4em;
}
@media screen and (min-width: 768px) {
  .site-main__fv .column .contents .catch-main {
    margin-top: 20px;
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__fv .column .contents .catch-main {
    font-size: 40px;
  }
}
.site-main__fv .column .img {
  margin-top: 25px;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .site-main__fv .column .img {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .site-main__about .column {
    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__about .column .contents {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.site-main__about .column .contents .title {
  line-height: 1.5em;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .site-main__about .column .contents .title {
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__about .column .contents .title {
    font-size: 40px;
  }
}
.site-main__about .column .contents .desc {
  margin-top: 20px;
  line-height: 1.8em;
}
@media screen and (min-width: 1024px) {
  .site-main__about .column .contents .desc {
    margin-top: 30px;
  }
}
.site-main__about .column .contents .desc p:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .site-main__about .column .contents .desc p:not(:first-child) {
    margin-top: 20px;
  }
}
.site-main__about .column .img {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .site-main__about .column .img {
    margin-top: 0;
    width: 50%;
    margin-left: 30px;
  }
}
@media screen and (min-width: 768px) {
  .site-main__about .column .img {
    margin-left: 60px;
  }
}
@media screen and (min-width: 768px) {
  .site-main__parallax .thumbnail {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@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 {
  padding: 15px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
          box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
}
.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: 768px) {
  .site-main__service .service-list .item:nth-child(-n+2) {
    margin-top: 0;
  }
}
.site-main__service .service-list .item .icon img {
  width: 20px;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item .icon img {
    width: 30px;
  }
}
.site-main__service .service-list .item .title {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  margin-left: 10px;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .site-main__service .service-list .item .title {
    margin-left: 15px;
    font-size: 14px;
  }
}
.site-main__company {
  background: #e55175;
}
.site-main__company .sec-title__en {
  color: #fff;
}
.site-main__company .blocks .block {
  padding: 30px;
  background: #fff;
}
@media screen and (min-width: 1024px) {
  .site-main__company .blocks .block {
    padding: 60px;
  }
}
.site-main__company .blocks .block:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .site-main__company .blocks .block .column {
    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__company .blocks .block .column .contents {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.site-main__company .blocks .block .column .contents .title {
  line-height: 1.5em;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -1px;
}
@media screen and (min-width: 768px) {
  .site-main__company .blocks .block .column .contents .title {
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .blocks .block .column .contents .title {
    font-size: 40px;
  }
}
.site-main__company .blocks .block .column .contents .desc {
  margin-top: 15px;
  line-height: 1.8em;
}
@media screen and (min-width: 1024px) {
  .site-main__company .blocks .block .column .contents .desc {
    margin-top: 30px;
  }
}
.site-main__company .blocks .block .column .contents .desc p:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .site-main__company .blocks .block .column .contents .desc p:not(:first-child) {
    margin-top: 20px;
  }
}
.site-main__company .blocks .block .column .img {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .site-main__company .blocks .block .column .img {
    margin-top: 0;
    width: 45%;
    margin-left: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__company .blocks .block .column .img {
    margin-left: 60px;
  }
}
.site-main__company .blocks .block .overview .item {
  border: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .site-main__company .blocks .block .overview .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__company .blocks .block .overview .item:not(:first-child) {
  border-top: none;
}
.site-main__company .blocks .block .overview .item dt, .site-main__company .blocks .block .overview .item dd {
  padding: 10px 15px;
  line-height: 1.5em;
}
.site-main__company .blocks .block .overview .item dt {
  background: #f9f9f9;
}
@media screen and (min-width: 768px) {
  .site-main__company .blocks .block .overview .item dt {
    width: 200px;
  }
}
.site-main__company .blocks .block .overview .item dd {
  border-top: 1px solid #ccc;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .site-main__company .blocks .block .overview .item dd {
    border-top: none;
    border-left: 1px solid #ccc;
    -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: 175px;
}
@media screen and (min-width: 1024px) {
  .site-footer .logo img {
    width: 225px;
  }
}
.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;
}