@charset "UTF-8";
html {
  font-size: 62.5%;
  /*10px*/
}

body {
  font-size: 1.6rem;
  color: #333;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  background-color: #fff;
  font-weight: 400;
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  /* 日の出オレンジ */
  letter-spacing: 0.05em;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #333;
}

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

li {
  list-style: none;
}

.wrapper {
  padding: 120px 8%;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.active {
  opacity: 1;
  transform: translateY(0);
}

/*header*/
header {
  width: 100%;
  height: 80px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 999;
  background-color: #fff;
  /* headerをflexで整える */
}
@media screen and (max-width: 768px) {
  header {
    height: 75px;
    display: flex;
    align-items: center;
    max-width: 100vw;
  }
}
header .headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
header .site_title a {
  font-size: 2rem;
  font-weight: bold;
  margin-left: 44px;
}
@media screen and (max-width: 768px) {
  header .site_title a {
    font-size: 1.8rem;
    margin-left: 18px;
  }
}

.title_break {
  display: block;
  /*２列で表示*/
}
@media screen and (max-width: 768px) {
  .title_break {
    display: inline;
    padding-left: 3px;
  }
}

.menu {
  /* メニューのスタイル */
  display: flex;
}
.menu li {
  font-size: 1.8rem;
  padding: 0 27px;
  border-right: solid 1px #333;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .menu li {
    font-size: 1.8rem;
    border-right: none;
    padding: 60px 0 0 20px;
    width: 100%;
  }
}
.menu li.nav_last {
  border-right: none;
}

ul.submenu {
  display: none;
  /* 初期状態では非表示*/
  transition: max-height 0.3s ease-out;
  position: absolute;
  /* サブメニューを親要素に対して配置 */
  left: 0;
  top: 100%;
  background: #fff;
  opacity: 0.8;
  width: 157px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  /* 他の要素の上に表示 */
  list-style: none;
  padding-inline-start: 0;
}
ul.submenu:hover {
  opacity: 1;
}

li.submenu_list {
  padding: 0;
  text-align: center;
  font-size: 1.8rem;
  margin: 0;
  border-right: none;
  display: block;
}

.break {
  display: block;
  /*submenu_listで２列で表示*/
}
@media screen and (max-width: 768px) {
  .break {
    display: inline;
  }
}

.submenu_link {
  display: flex;
  align-items: center;
  text-align: left;
  text-decoration: none;
  color: #333;
  padding: 5px 5px 5px 40px;
  position: relative;
}
.submenu_border .submenu_link {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
.submenu_link::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #313131;
  border-right: 3px solid #313131;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 10px;
  bottom: 0;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

li.submenu_list:hover,
.submenu_link:hover {
  background: #cad2db;
}

.submenu_link:hover::before {
  left: 15px;
}

.menu li:hover .submenu {
  /* PC版：ホバー時にサブメニュー表示 */
  display: block;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  margin-right: 18px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    display: block;
  }
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #333;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger span:nth-child(2) {
  position: absolute;
  top: 50%;
}
.hamburger span:nth-child(3) {
  position: absolute;
  top: 90%;
}

/* ハンバーガーメニューを囲むコンテナ */
.hamburger_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 100;
}

/* "MENU" ラベル */
.menu_label {
  display: none;
  font-size: 0.8rem;
  color: #333;
  position: absolute;
  top: 25px;
  left: 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .menu_label {
    display: flex;
  }
}

/* × に変化 */
.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  /* ナビゲーションを画面外に配置（デフォルト非表示） */
  .navLinks {
    position: absolute;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    z-index: 99;
  }
  /* ナビゲーション内のメニュー */
  ul.menu {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
  }
  .submenu_list:last-child .submenu_link {
    border-bottom: 1px solid #ddd;
  }
  .submenu_border .submenu_link {
    border-bottom: none;
    padding-bottom: 0;
  }
  /* メニュー表示時 */
  .navLinks.active {
    right: 0;
  }
  li.nav_last {
    margin: 180px 0 0 0;
  }
  ul ul.submenu {
    display: block;
    /* スマホでは常に表示 */
    display: block !important;
    /* スマホでは常に表示 */
    width: 100%;
    background: none;
    margin: 0 0 10px 20px;
    /* インデントを調整 */
    box-shadow: none;
  }
  li li.submenu_list {
    display: block;
    text-align: left;
    padding: 8px 0;
  }
  .toggle {
    display: block;
    padding: 5px 10px;
  }
  .submenu_link {
    display: block;
    padding: 5px 10px 5px 30px;
  }
  .menu li:hover .submenu {
    display: block;
  }
  .submenu_link::before {
    left: 10px;
  }
}
/*mainvisual*/
#mainvisual img {
  position: relative;
  height: 100vh;
  width: 100vw;
}

.fv-heading {
  position: absolute;
  left: 171px;
  top: 230px;
  width: 282px;
  height: 148px;
  font-weight: bold;
  font-size: 4.5rem;
  line-height: 70px;
  align-items: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #333;
}
@media screen and (max-width: 768px) {
  .fv-heading {
    left: 59px;
    top: 143px;
    width: 192px;
    height: 165px;
    font-size: 3.2rem;
    line-height: 46px;
  }
}

#mainvisual p {
  position: absolute;
  left: 171px;
  top: 380px;
  height: 29px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 29px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: #333;
}

.text-focus-in {
  animation: text-focus-in 5s 2.5s ease-out 2 forwards;
}

.text-focus-out {
  animation: text-focus-out 4s ease-in forwards;
}

/* ----------------------------------------------
   * Generated by Animista on 2025-3-8 23:43:46
   * Licensed under FreeBSD License.
   * See http://animista.net/license for more info. 
   * w: http://animista.net, t: @cssanimista
   * ---------------------------------------------- */
/**
   * ----------------------------------------
   * animation text-focus-in
   * ----------------------------------------
   */
@keyframes text-focus-in {
  0% {
    filter: blur(10px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-out {
  0% {
    filter: blur(10px);
    opacity: 1;
  }
  100% {
    filter: blur(10px);
    opacity: 0;
  }
}
#mainvisual .start_button {
  position: absolute;
  width: 80px;
  height: 40px;
  left: 50%;
  transform: translateX(-50%);
  top: 624px;
  background: linear-gradient(180deg, #ffefb8 0%, #e97105 86%);
  border-radius: 5px;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 35px;
  text-align: center;
  transition: 0.5s;
  border: none;
  transition: color 0.3s cubic-bezier(0.02, 0.01, 0.47, 1), transform 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  overflow: hidden;
  z-index: 1;
  opacity: 0.8;
}

.design-button::after,
.design-button::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #009688;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  transform: translate(100%, -25%) translateZ(0);
  opacity: 0;
  z-index: -1;
}

.design-button::after,
.design-button::before {
  background: #ffffff;
}

.design-button:hover {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.02, 0.01, 0.47, 1);
  transform: scale(1.1) translateZ(0);
}

.design-button:hover::before {
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
  transform: translate3d(50%, 0, 0) scale(0.9);
  opacity: 0.15;
}

.design-button:hover::after {
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1) 0.05s, opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1) 0.05s;
  transform: translate(50%) scale(1.1);
  opacity: 0.25;
}

.design-button:active {
  opacity: 0.5;
}

.design-button:focus {
  color: #ffffff;
}

.vertical-button {
  position: fixed;
  width: 55px;
  height: 310px;
  right: 0;
  top: 80px;
  writing-mode: vertical-rl;
  background: linear-gradient(180deg, #ffefb8 0%, #AFCDEA 86%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  font-size: 2rem;
  line-height: 35px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .vertical-button {
    width: 35px;
    height: 250px;
    top: 75px;
    font-size: 1.6rem;
    line-height: 23px;
  }
}

@media screen and (max-width: 768px) {
  #mainvisual p {
    left: 59px;
    top: 250px;
    height: 23px;
    font-size: 1.6rem;
    line-height: 23px;
  }
  #mainvisual .start_button {
    top: 80%;
  }
}
/*about*/
h3 {
  position: relative;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 46px;
  color: #e67300;
}

.heading::after,
.heading_works::after {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 63px;
  height: 2px;
  content: "";
  border-radius: 3px;
  background: #333;
}

.heading::before {
  content: attr(data-en);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: #e97105;
  font-size: 4.8rem;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .heading::before {
    font-size: 4rem;
  }
}

.about_title {
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 46px;
  padding: 65px 0 30px 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .about_title {
    font-size: 2rem;
    line-height: 29px;
  }
}

#about p {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.8;
}

#about {
  position: relative;
}

.detail_button {
  width: 250px;
  height: 50px;
  position: absolute;
  left: calc(50% - 125px);
  background: linear-gradient(180deg, #ffefb8 0%, #AFCDEA 86%);
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 50px;
  text-align: center;
  border: none;
  transition: color 0.3s cubic-bezier(0.02, 0.01, 0.47, 1), transform 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  overflow: hidden;
  z-index: 1;
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 2rem;
    line-height: 29px;
  }
  #about p {
    font-size: 1.6rem;
    line-height: 23px;
  }
}
/*works*/
#works .works_list {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}
@media screen and (max-width: 768px) {
  #works .works_list {
    flex-direction: column;
  }
}

.item {
  width: 560px;
  height: auto;
  background: rgba(202, 210, 219, 0.7);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  position: relative;
  margin-top: 40px;
  box-sizing: border-box;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .item {
    width: 100%;
    padding-bottom: 40px;
  }
}
.item .item_category {
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  padding: 20px 0 0 55px;
}
.item .item_lead {
  line-height: 1.6;
  display: flex;
  padding: 20px 20px 20px 55px;
}
.item .more_button {
  position: absolute;
  width: 169.08px;
  right: 25px;
  bottom: 10px;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.6;
  display: flex;
  z-index: 1;
}
.item .more_button span::after {
  position: absolute;
  top: calc(50% - 0.8rem);
  right: 1rem;
  margin: 0;
  padding: 0;
  content: "→";
  transition: all 0.3s;
  font-size: 1.6rem;
  line-height: 1;
}
.item .more_button span:hover::after {
  right: 1px;
}
.item .button_line:before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: "";
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}
.item .button_line:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(180deg, #ffefb8 0%, #e97105 86%);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.item .button_line:hover:after {
  transform: scale(1, 1);
}

.design_line {
  position: absolute;
  width: 10px;
  height: 100%;
  left: 27px;
  top: 0;
  background: linear-gradient(180deg, #ffefb8 0%, #e97105 86%);
}

.title_inner {
  padding-top: 50px;
}

.heading_works::before {
  content: attr(data-en);
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  color: #e97105;
  font-size: 4.8rem;
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .item_category {
    font-size: 2rem;
  }
  .item_lead {
    font-size: 1.6rem;
  }
}
/*当社の強み*/
h4:first-letter {
  font-size: 3.2rem;
  color: #e97105;
}
@media screen and (max-width: 768px) {
  h4:first-letter {
    font-size: 2.4rem;
  }
}

.number_list {
  font-size: 1.8rem;
  border-bottom: 3px dotted #000;
}
@media screen and (max-width: 768px) {
  .number_list {
    font-size: 1.8rem;
    line-height: 29px;
    padding: 0;
  }
}

.our_strengths_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* アイテムを中央寄せ */
  gap: 24px;
  padding: 0 8%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .our_strengths_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .our_strengths_list {
    grid-template-columns: 1fr;
    padding: 0 5%;
  }
}

.our_strengths_list p {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .our_strengths_list p {
    font-size: 1.4rem;
  }
}

.our_strengths_item {
  background: rgba(202, 210, 219, 0.7);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  position: relative;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}
.our_strengths_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.our_strengths_item:nth-child(1) {
  animation-delay: 0s;
}
.our_strengths_item:nth-child(2) {
  animation-delay: 0.1s;
}
.our_strengths_item:nth-child(3) {
  animation-delay: 0.2s;
}
.our_strengths_item:nth-child(4) {
  animation-delay: 0.3s;
}
.our_strengths_item:nth-child(5) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 480px) {
  .our_strengths_item {
    padding: 20px;
  }
}

.our_strengths_item img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  display: block;
}

.our_strengths_item {
  flex: 1 1 30%;
  /* アイテムが3列に並ぶように、3分の1の幅を設定 */
  max-width: 350px;
  /* 最大幅を設定して、アイテムが大きすぎないように調整 */
}
@media screen and (max-width: 768px) {
  .our_strengths_item {
    flex: 1 1 45%;
  }
}
@media screen and (max-width: 480px) {
  .our_strengths_item {
    flex: 1 1 100%;
  }
}

/*recruit*/
#recruit {
  padding: 120px 0 75px 0;
}

.recruit_img {
  background-image: url("/img/ARC-img.jpg");
  position: relative;
}

.fixed-bg {
  height: 400px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .fixed-bg {
    background-attachment: scroll;
  }
}

h5 {
  position: absolute;
  top: 120px;
  left: calc(50% - 360px);
  font-weight: bold;
  font-size: 2.6rem;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 2rem;
    left: 1%;
    right: 1%;
  }
}
@media screen and (max-width: 480px) {
  h5 {
    font-size: 1.8rem;
  }
}

#recruit p {
  position: absolute;
  top: 220px;
  left: calc(50% - 260px);
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 29px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

#recruit a {
  position: absolute;
  top: 315px;
  bottom: 120px;
  margin-top: 0;
}

.focus-in-expand {
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

.focus-in-expand.active {
  opacity: 1;
}

.emphasis {
  font-weight: bold;
  font-size: 1.1em;
}

@media screen and (max-width: 768px) {
  #recruit p {
    font-size: 1.6rem;
    line-height: 23px;
    left: calc(50% - 119px);
    right: calc(50% - 119px);
  }
  .message_break {
    width: 100%;
    display: block;
  }
  #recruit {
    padding: 120px 0 25px 0;
  }
}
/*footer*/
footer {
  padding: 0 8% 75px 8%;
  display: flex;
  justify-content: space-between;
  position: relative;
  /* .footer_right の absolute 配置の基準 */
}

.footer_menu {
  display: flex;
}

.footer_menu--link {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 29px;
  padding: 5px 15px;
  height: 60px;
}

.footer_menu--link:last-child {
  border-right: none;
}

ul.footer_submenu li {
  font-weight: normal;
  border-right: none;
  padding: 20px 15px;
  text-align: center;
}

.logo {
  margin-bottom: 0;
  margin-right: 10px;
}

.site_identity {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

footer .site_title a {
  display: flex;
  font-size: 1.8rem;
}

footer .site_title {
  margin-top: 0;
}

.Copyright {
  font-size: 1.2rem;
  text-align: right;
  padding-top: 10px;
}

.footer_right {
  position: absolute;
  right: 8%;
  bottom: 75px;
  width: 40%;
}

.footer_left {
  width: 60%;
}

.back-to-top {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 0;
  bottom: 30px;
  background: linear-gradient(180deg, #ffefb8 0%, #e97105 86%);
  border-radius: 10%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  opacity: 0.8;
  overflow: hidden;
}

.back-to-top_arrow {
  display: block;
  height: 20px;
  width: 20px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  transform: translateY(20%) rotate(-45deg);
  position: absolute;
  top: 12px;
}

/* "back-to-top" ラベル */
.back-to-top_label {
  font-size: 1.2rem;
  color: #333;
  position: absolute;
  top: 28px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  footer {
    flex-direction: column;
    padding: 0 1%;
    position: unset;
    /* .footer_right の absolute 配置の基準 */
  }
  .footer_menu {
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 5px;
    padding: 10px;
  }
  .footer_right {
    width: 100%;
    position: unset;
    padding: 15px 1%;
  }
  .footer_left {
    width: 100%;
  }
  .footer_menu--link {
    font-size: 1.2rem;
    line-height: 1.4;
    padding: 5px;
    height: auto;
    min-width: 70px;
  }
  .Copyright {
    font-size: 0.8rem;
  }
  .logo img {
    width: 40px;
    height: 40px;
  }
  ul.footer_submenu li {
    padding: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: left;
    min-width: 70px;
  }
}
/*下層ページ*/
.subpage_title {
  position: relative;
  left: 0;
  top: 90px;
  padding: 10px 8%;
  border-top: 4px solid #e97105;
  border-bottom: 4px solid #e97105;
  width: 100%;
  height: 100%;
  text-shadow: none;
  font-size: 2.8rem;
  line-height: 1;
  color: #e97105;
  opacity: 0.5;
}
.subpage_title span {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2.5;
  margin-left: 15px;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .subpage_title {
    position: relative;
    left: 0;
    top: 90px;
    width: 100%;
    height: 100%;
    text-shadow: none;
    font-size: 2.4rem;
  }
}

.subpage_heading {
  font-size: 2.4rem;
  color: #333;
  text-align: left;
  font-weight: bold;
  margin-top: 50px;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .subpage_heading {
    font-size: 2.2rem;
  }
}

.marker {
  background: linear-gradient(transparent 60%, rgba(233, 113, 5, 0.5) 0);
}

.phone {
  display: flex;
  margin-top: 30px;
}
.phone p {
  padding-left: 10px;
}
.phone img {
  height: 30px;
}/*# sourceMappingURL=common.css.map */