@charset "UTF-8";
:root {
  --layer-modal: 300;
  --layer-header: 150;
  --layer-drawer: 100;
  --layer-frontMost: 10;
  --layer-front: 5;
  --layer-back: -5;
  --layer-backMost: 10;
}

:root {
  --color-white: #fff;
  --color-black: #222;
  --color-gray-300: #eee;
  --color-gray-500: #aaa;
  --color-gray-700: #555;
  --color-main: #e46f2c;
  --color-accent: #2d9bea;
}

/* ----------------------------------------------------------------------------------------------------
foundation
---------------------------------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: max(100vw, 360px);
  min-height: 100dvh;
  font-size: 15px;
  line-height: 1.75;
}

a,
span {
  display: inline-block;
}

@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ----------------------------------------------------------------------------------------------------
layout
---------------------------------------------------------------------------------------------------- */
/* container
----------------------------------------------------------------------*/
.l-container {
  margin-inline: auto;
  width: min(100%, 1040px);
}

.l-inner {
  padding-inline: 20px;
}

/* ----------------------------------------------------------------------------------------------------
component
---------------------------------------------------------------------------------------------------- */
/* heading
---------------------------------------------------------------------- */
.c-heading {
  position: relative;
  padding-bottom: 14px;
  border-bottom: 1px solid #ededed;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}
.c-heading::before {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 120px;
  height: 3px;
  background-color: var(--color-main);
}

.c-subHeading {
  position: relative;
  padding-left: 13px;
  border-left: 4px solid var(--color-main);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

/* ----------------------------------------------------------------------------------------------------
project
---------------------------------------------------------------------------------------------------- */
/* セクション
---------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------
utility
---------------------------------------------------------------------------------------------------- */
/* 表示
---------------------------------------------------------------------- */
@media screen and (min-width: 60rem) {
  .u-sp {
    display: none;
  }
}

.u-pc {
  display: none;
}
@media screen and (min-width: 60rem) {
  .u-pc {
    display: initial;
  }
}

/* 制御
---------------------------------------------------------------------- */
/* テキストをコピー不可にする */
.u-noCopy {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}/*# sourceMappingURL=common.css.map */