@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Black.woff") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Bold.woff") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Medium.woff") format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff") format("truetype");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Barlow-Regular.woff") format("truetype");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Barlow-Medium.woff") format("truetype");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Barlow-SemiBold.woff") format("truetype");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Barlow-Bold.woff") format("truetype");
}
/*-- utilityフォルダの中の_index.scss --*/
@media screen and (max-width: 767px) {
  .u-br-sp-none {
    display: none;
  }
}

.u-br-sp-block {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-br-sp-block {
    display: block;
  }
}

@media screen and (max-width: 1080px) {
  .u-br-tb-none {
    display: none;
  }
}

.u-br-tb-block {
  display: none;
}
@media screen and (max-width: 1080px) {
  .u-br-tb-block {
    display: block;
  }
}

@media screen and (max-width: 1080px) {
  .u-br-tbNone-spBlock {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-br-tbNone-spBlock {
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .u-br-pcNone {
    display: none;
  }
}

.u-inline-block {
  display: inline-block;
}

@media screen and (max-width: 1080px) {
  .u-inline-block__tb {
    display: inline-block;
  }
}

@media only screen and (min-width: 768px) {
  .u-inline-block__spnone {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .u-inline-block__sp {
    display: inline-block;
  }
}

.u-mt-25 {
  margin-top: 25px;
}

.u-mt-43 {
  margin-top: 43px;
}
@media screen and (max-width: 767px) {
  .u-mt-43 {
    margin-top: 24px;
  }
}

.u-mt-34-50 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .u-mt-34-50 {
    margin-top: 34px;
  }
}

.u-mt-30-50 {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .u-mt-30-50 {
    margin-top: 30px;
  }
}

/*                reset
======================================================= */
*:where(:not(iframe, canvas, img, svg, video, sup):not(svg *)) {
  all: unset;
  display: revert;
}

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

* {
  box-sizing: border-box;
}

body {
  color: #1f2024;
  background-color: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  line-height: 1.3;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}

a[href^=tel]:active {
  /* ここにクリック時のスタイルを指定します */
}
@media only screen and (min-width: 1081px) {
  a[href^=tel]:active {
    pointer-events: none;
  }
  a[href^=tel]:active:hover {
    cursor: auto;
    pointer-events: none;
  }
}

/*                leyout
======================================================= */
#wrapper {
  overflow: hidden;
}

/*                テキスト装飾
======================================================= */
.text_right,
.alignright {
  text-align: right;
}

.text_left,
.alignleft {
  text-align: left;
}

.text_center,
.aligncenter {
  text-align: center;
}

.underline {
  text-decoration: underline;
}

/*                table
======================================================= */
table {
  width: 100%;
  border-collapse: separate;
  border-collapse: collapse;
  border-spacing: 0;
}

table tr td,
table tr th {
  text-align: left;
  padding: 0px;
}

/*                ヘッダー・サイド・フッター
======================================================= */
/*                header
======================================================= */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

@media screen and (max-width: 1080px) {
  html.sp_menu_open {
    position: relative;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
  }
  html.sp_menu_open::before {
    content: "";
    inset: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
  }
  html.sp_menu_open .l-hd {
    background-color: #39b382;
  }
  html.sp_menu_open .l-hd__logo-img {
    display: none;
  }
  html.sp_menu_open .l-hd__logo-white {
    display: block;
    opacity: 1;
    width: 100%;
  }
}/*# sourceMappingURL=common.css.map */