@charset "UTF-8";
/*---------------------------------------------
 font
---------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* ***********************************
 *
 *    CSS Reset & Base
 *
 * *********************************** */
/* Reset margin, padding, border
 * *********************************** */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography
 * *********************************** */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a,
a:visited {
  color: inherit;
}

/* Layout
 * *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/* Elements
 * *********************************** */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
}

blockquote,
q {
  quotes: none;
}

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

/*----------------------------------
	common
----------------------------------*/
body {
  color: #343434;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: normal;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #e84729;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.pcOnly {
  display: none;
}

.spOnly {
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .pcOnly {
    display: block;
  }
  .spOnly {
    display: none;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*----------------------------------
	footer
----------------------------------*/
/* ly_footer
----------------------------------*/
.ly_footer {
  /*background-color: val.$site-color;*/
  background-color: #333;
  padding: 30px 15px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .ly_footer {
    padding: 40px 20px;
    font-size: 1.4rem;
  }
}
/*----------------------------------
	中ページ共通
----------------------------------*/
main {
  display: block;
  /*ie11用*/
}

/*ふわっ
===================================*/
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

@media print {
  .fadeUpTrigger {
    opacity: 1;
  }
}
/*----------------------------------
	home
----------------------------------*/
/* .bl_hero
----------------------------------*/
.bl_hero {
  display: flex;
  /*justify-content: flex-end;*/
  justify-content: center;
  align-items: center;
  height: 300px;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-position: center;
}

.bl_hero_logo {
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.5);
  text-align: right;
  max-width: 60%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .bl_hero {
    height: 695px;
  }
  .bl_hero_logo {
    padding: 25px 30px;
    max-width: 100%;
  }
}
/* common
----------------------------------*/
.ly_common_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* .u_title
----------------------------------*/
.u_title {
  font-size: 6.4vw;
  font-weight: 700;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .u_title {
    font-size: 3.5rem;
    margin-bottom: 50px;
  }
}
/* .bl_message
----------------------------------*/
.bl_message {
  padding: 40px 0;
}

.bl_message_title {
  font-size: 4.8vw;
  font-weight: 700;
  margin-bottom: 30px;
}

.bl_message_inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.bl_message_txt {
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
}

.bl_message_name {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: right;
  margin-top: 3rem;
}

@media screen and (min-width: 768px) {
  .bl_message {
    padding: 80px 0;
  }
  .bl_message_title {
    font-size: 3.5rem;
    margin-bottom: 50px;
  }
  .bl_message_txt {
    font-size: 2rem;
    text-align: left;
  }
  .bl_message_name {
    font-size: 2rem;
  }
}
/* .bl_service
----------------------------------*/
.bl_service {
  padding: 40px 0;
}

.bl_service_box_wrap {
  display: grid;
  row-gap: 80px;
}

.bl_service_pict {
  margin-bottom: 40px;
}

.bl_service_txt {
  text-align: left;
}

.bl_service_title {
  border-left: 5px solid #ccc;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px 0 5px 10px;
  margin-bottom: 20px;
}

.bl_service_contents {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.bl_service_site a {
  color: #45A1CF;
}

.bl_service_site a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .bl_service {
    padding: 80px 0;
  }
  .bl_service_box {
    display: flex;
    column-gap: 50px;
  }
  .bl_service_pict {
    margin-bottom: 0;
  }
}
/* .bl_company
----------------------------------*/
.bl_company {
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .bl_company {
    padding: 80px 0;
  }
}
.bl_company_info table {
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  line-height: 1.6;
  font-size: 1.6rem;
  border: 1px solid #D9D9D9;
}
.bl_company_info table th {
  display: block;
  padding: 5px;
  text-align: center;
  font-weight: 500;
  background-color: #f1f1f1;
}
.bl_company_info table td {
  display: block;
  padding: 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .bl_company_info table {
    margin: 0 auto 50px;
  }
  .bl_company_info table th {
    width: 200px;
    display: table-cell;
    padding: 10px 20px;
    border: 1px solid #D9D9D9;
  }
  .bl_company_info table td {
    display: table-cell;
    padding: 10px 20px;
    text-align: left;
    border: 1px solid #D9D9D9;
  }
}/*# sourceMappingURL=style.css.map */