@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000000;
  font-size: 1.2vw;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  text-align: center;
}

.anchor-target {
  scroll-margin-top: 7rem;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

.min {
  font-family: "Noto Serif JP", serif;
}

.blue {
  color: #004097;
}

.img_hover {
  overflow: hidden;
}

.img_hover img {
  transition: 0.4s ease-in-out;
}

.img_hover img:hover {
  transform: scale(1.1, 1.1);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.4s;
}

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

.site_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.61);
}

.site_nav .nav_wrap {
  max-width: 95vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
}

.site_nav .nav_wrap .nev_flex .header_logo {
  width: 15%;
}

.site_nav .nav_wrap nav {
  font-weight: bold;
}

.site_nav .nav_wrap h1 {
  width: 18%;
}

.site_nav .nav_wrap nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.site_nav .nav_wrap nav ul li:last-child {
  background-color: #004097;
  border-radius: 50px;
  margin-left: 1rem;
}

.site_nav .nav_wrap nav ul li:last-child a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site_nav .nav_wrap nav ul li:last-child span {
  font-size: 100%;
  margin-right: 0.5rem;
  vertical-align: -0.3rem;
}

.site_nav .nav_wrap nav ul li a {
  color: #000000;
  text-decoration: none;
  padding: 0.8em 2em;
}

.site_nav .nav_wrap .main_nav ul li i {
  display: block;
  padding-right: 0.5rem;
}

/*ハンバーガーメニュー*/
@media screen and (min-width: 768px) {
  .checkbox,
  .span_container {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  nav {
    display: none;
  }
  .site_nav nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 75vh;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    z-index: 50;
    background: rgba(189, 222, 249, 0.8784313725);
    transition: all 250ms ease-out;
    transform: translateX(-100%);
  }
  .site_nav nav a {
    font-size: 150%;
    line-height: 3;
    margin-top: 3rem;
  }
  .site_nav nav a:hover {
    color: salmon;
  }
  .site_nav .nav_wrap nav ul {
    display: block;
    padding: unset;
    width: 80vw;
    text-align: center;
  }
  .site_nav .nav_wrap nav ul li {
    border-bottom: 1px solid #004097;
  }
  .site_nav .nav_wrap nav ul li:last-child {
    border-bottom: none;
    margin-left: 0rem;
  }
  .checkbox:checked ~ nav {
    transform: translateX(0%);
  }
  .span_container,
  .checkbox {
    width: 10%;
    height: 64%;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
  .checkbox {
    opacity: 0;
    z-index: 100;
  }
  .span_container {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    z-index: 90;
  }
  .span_container span {
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 250ms ease-out;
    transform-origin: 0 0;
  }
  .checkbox:checked ~ .span_container span:nth-last-child(1) {
    transform: rotate(-45deg) translate(-1px, 0px);
  }
  .checkbox:checked ~ .span_container span:nth-last-child(2) {
    transform: rotate(0deg) scale(0.2, 0.2);
    opacity: 0;
  }
  .checkbox:checked ~ .span_container span:nth-last-child(3) {
    transform: rotate(45deg) translate(0px, -1px);
  }
  .checkbox:checked ~ nav {
    transform: translateX(0%);
  }
}
/*ハンバーガーメニューend*/
.hotori_hero {
  background-image: url(../img/bg_1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 2rem;
  margin-top: 7rem;
  overflow: hidden;
}
.hotori_hero .hotori_header {
  background: linear-gradient(313deg, #006cb6 0%, #004097 100%);
  color: #fff;
  padding: 0 2rem;
}
.hotori_hero .hotori_header h2 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 23%;
  text-align: left;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .hotori_hero .hotori_header h2 {
    font-size: 2rem;
  }
}
.hotori_hero .hotori_header h2 p {
  margin-bottom: 1rem;
  flex: 0 1 calc((80% - 22rem) / 2);
}
.hotori_hero .hotori_header .hotori_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.hotori_hero .hotori_header .hotori_title .kanji {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: bold;
  line-height: 1;
  margin-top: -1.5rem;
  color: white;
  text-shadow: -4px -4px 0 #004097, -3px -4px 0 #004097, -2px -4px 0 #004097, -1px -4px 0 #004097, 0 -4px 0 #004097, 1px -4px 0 #004097, 2px -4px 0 #004097, 3px -4px 0 #004097, 4px -4px 0 #004097, -4px -3px 0 #004097, -3px -3px 0 #004097, -2px -3px 0 #004097, -1px -3px 0 #004097, 0 -3px 0 #004097, 1px -3px 0 #004097, 2px -3px 0 #004097, 3px -3px 0 #004097, 4px -3px 0 #004097, -4px -2px 0 #004097, -3px -2px 0 #004097, -2px -2px 0 #004097, -1px -2px 0 #004097, 0 -2px 0 #004097, 1px -2px 0 #004097, 2px -2px 0 #004097, 3px -2px 0 #004097, 4px -2px 0 #004097, -4px -1px 0 #004097, -3px -1px 0 #004097, -2px -1px 0 #004097, -1px -1px 0 #004097, 0 -1px 0 #004097, 1px -1px 0 #004097, 2px -1px 0 #004097, 3px -1px 0 #004097, 4px -1px 0 #004097, -1px 0 0 #004097, 1px 0 0 #004097, 0 1px 0 #004097, 0 2px 0 #004097, 0 3px 0 #004097, 0 4px 0 #004097, -4px 4px 0 #004097, -3px 4px 0 #004097, -2px 4px 0 #004097, -1px 4px 0 #004097, 0 4px 0 #004097, 1px 4px 0 #004097, 2px 4px 0 #004097, 3px 4px 0 #004097, 4px 4px 0 #004097;
}
.hotori_hero .hotori_header .hotori_title .romaji {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  font-weight: bold;
}
@media (min-width: 768px) {
  .hotori_hero .hotori_header .hotori_title .romaji {
    font-size: 2rem;
  }
}
.hotori_hero .hotori_tex {
  max-width: 80vw;
  font-size: 180%;
  line-height: 1.5;
  font-weight: bold;
  color: #004097;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 7rem;
}
.hotori_hero .hotori_tex span {
  font-size: 180%;
  line-height: 1.2;
  display: block;
  margin-top: 0.5rem;
}
.hotori_hero .hotori_gallery {
  position: relative;
}
.hotori_hero .hotori_gallery .scroll_wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.hotori_hero .hotori_gallery .scroll_wrapper .tilted_wrapper {
  transform: rotate(-5deg);
}
@keyframes scroll-gallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about {
  position: relative;
  z-index: 0;
  background-image: url(../img/bg_1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.about .wrap::before {
  position: absolute;
  content: "";
  top: 43%;
  left: 75%;
  width: 20%;
  height: 35%;
  background-image: url(../img/nayami_w.png);
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(5px 5px 5px #4e4e4e);
  z-index: -1;
}
.about .wrap::after {
  position: absolute;
  content: "";
  top: 60%;
  left: 5%;
  width: 22%;
  height: 35%;
  background-image: url(../img/nayami_m.png);
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(5px 5px 5px #4e4e4e);
  z-index: -1;
}
.about .wrap .about_hotori {
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
}
.about .wrap .about_hotori h3 {
  font-size: 150%;
  text-shadow: 2px 2px 2px #fff;
}
.about .wrap .about_hotori ol {
  text-align: left;
  margin: 0 auto;
  font-size: 110%;
  padding-left: 2rem;
  list-style-type: decimal;
  list-style-position: outside;
  text-shadow: 2px 2px 2px #fff;
}
.about .wrap .about_hotori ol span {
  font-size: 110%;
  font-weight: bold;
}
.about .wrap h2 {
  font-size: 140%;
  margin-bottom: 5rem;
}
.about .wrap .nayami_ttl {
  font-size: 170%;
  font-weight: bold;
  text-align: left;
  max-inline-size: max-content;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.about .wrap .nayami_ttl .nayami_ttl_1 {
  font-size: 90%;
}
.about .wrap .nayami_ttl .nayami_ttl_2 {
  font-size: 130%;
  line-height: 1.5;
}
.about .wrap .nayami_ttl .nayami_ttl_2 span {
  font-size: 130%;
}
.about .wrap .nayami_text {
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
}
.about .wrap .nayami_text .nayami_text_left {
  background-color: rgba(91, 179, 220, 0.6705882353);
  padding: 1rem 0.5rem;
  display: block;
  width: 50%;
  border-radius: 50px;
  margin: 0 0 auto 0;
  margin-bottom: 1rem;
  filter: drop-shadow(3px 3px 3px #65b4cf);
}
.about .wrap .nayami_text .nayami_text_right {
  background-color: rgba(91, 179, 220, 0.6705882353);
  padding: 1rem 0.5rem;
  display: block;
  width: 50%;
  border-radius: 50px;
  margin: 0 0 0 auto;
  margin-bottom: 1rem;
  filter: drop-shadow(3px 3px 3px #65b4cf);
}

.contact {
  background: linear-gradient(313deg, #006cb6 0%, #004097 100%);
  z-index: 2;
  position: relative;
  margin-top: -0.3em;
}
.contact .wrap {
  max-width: 60vw;
  margin: 0 auto;
}
.contact .wrap h2 {
  font-size: 160%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact .wrap h2::before, .contact .wrap h2::after {
  content: "";
  flex: 0 1 25%;
  border-bottom: 2px solid #fff;
  margin: 0 1rem;
}
.contact .wrap h2 i.icon {
  display: inline-block;
  font-size: 1.8rem;
  margin: 0 0.5rem 0 0;
}
.contact .wrap h2 .text-line {
  display: inline-block;
}
.contact a {
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 5rem 0;
}

.can .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.can .wrap h2 {
  font-size: 200%;
  margin-bottom: 1.5rem;
  position: relative;
}
.can .wrap h2::before, .can .wrap h2::after {
  content: "";
  position: absolute;
  left: 25%;
  width: 50%;
  height: 0;
  border-top: 2px solid #000;
}
.can .wrap h2::before {
  top: 0;
}
.can .wrap h2::after {
  bottom: 0;
}
.can .wrap h2 span {
  font-size: 200%;
}
.can .wrap .can_p {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}
.can .wrap .can_text {
  font-size: 120%;
}
.can .wrap .can_1 {
  margin-bottom: 8rem;
}
.can .wrap .can_2 h2 {
  line-height: 1.3;
  padding-bottom: 1rem;
  padding-top: 0.5rem;
}

.service .service_box {
  min-height: 50vh;
}
.service .service_box:nth-of-type(1) {
  background-image: url("../img/bg_service_1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service .service_box:nth-of-type(2) {
  background-image: url("../img/bg_service_2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service .service_box:nth-of-type(3) {
  background-image: url("../img/bg_service_3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service .service_box:nth-of-type(4) {
  background-image: url("../img/bg_service_4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service .service_box:nth-of-type(5) {
  background-image: url("../img/bg_service_5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service .service_box .wrap {
  max-width: 80vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.service .service_box .wrap span {
  font-size: 150%;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5rem;
  color: #fff;
}
.service .service_box .wrap h2 {
  font-size: 180%;
  margin-top: 1rem;
  color: #fff;
}
.service .service_box .wrap p:first-of-type {
  width: 50%;
  margin: 2rem auto;
}
.service .service_box .wrap p:last-of-type {
  font-size: 110%;
  color: #fff;
}
.service .service_box .wrap .support_services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: #e0f7fa;
  max-width: 40vw;
  margin: 0 auto;
  text-align: left;
  margin: 2rem auto;
}
.service .service_box .wrap .support_services .support_card {
  background: #fff;
  border: 2px solid #00acc1;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.service .service_box .wrap .support_services .support_card h2 {
  background-color: #fff9c4;
  padding: 0.25rem 0.5rem;
  color: #000;
  font-size: 90%;
  margin-top: 0rem;
}
.service .service_box .wrap .support_services .support_card h2 span {
  background-color: #fff9c4;
  padding: 0.25rem 0.5rem;
  font-size: 100%;
  margin-bottom: 1rem;
  color: #000;
  border-bottom: unset;
}
.service .service_box .wrap .support_services .support_card ul {
  list-style: none;
  padding-left: 0.5rem;
  line-height: 1.2;
}
.service .service_box .wrap .support_services .support_card ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
  font-size: 85%;
}
.service .service_box .wrap .support_services .support_card ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #006064;
}

.mission .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.mission .wrap p:first-of-type {
  font-size: 120%;
  margin-bottom: 2rem;
}

.flow {
  background-color: #bddef9;
}
.flow .wrap {
  max-width: 60vw;
  margin: 0 auto;
  padding: 5rem 0;
}
.flow .wrap h2 {
  margin-bottom: 2rem;
  font-size: 180%;
}
.flow .wrap .flow_box {
  background-color: #fff;
  border: 2px solid #004097;
  padding: 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  text-align: left;
  min-height: 9rem;
  border-radius: 10px;
  position: relative;
}
.flow .wrap .flow_box::after {
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  border: 2rem solid transparent;
  border-top-color: #004097;
}
.flow .wrap .flow_box:last-child::after {
  content: none;
}
.flow .wrap .flow_box h3 {
  flex: 0 1 calc((65% - 1.5rem) / 2);
  box-sizing: border-box;
  background-color: #004097;
  padding: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.flow .wrap .flow_box p {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

footer .footer_logo {
  width: 13rem;
  margin: 0 auto;
  margin-top: 2rem;
}
footer .footer_nav {
  margin-top: 2rem;
}
footer .footer_nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}
footer .footer_nav ul li:first-child {
  border-right: 1px solid #000;
}
footer .footer_nav ul a {
  display: block;
  padding: 0 1rem;
  color: #000;
  text-decoration: none;
  font-size: 90%;
}

/*PCのみ*/
@media screen and (min-width: 768px) {
  .br_sp {
    display: none;
  }
}
/*タブレットのみ*/
@media (max-width: 1024px) {
  .br_pc {
    display: none;
  }
  .site_nav .nav_wrap nav ul li a {
    font-size: 130%;
  }
  .hotori_hero .hotori_header h2 {
    font-size: 1.5rem;
    gap: 14%;
  }
  .hotori_hero .hotori_header h2 p {
    font-size: 85%;
  }
  .hotori_hero .hotori_header {
    gap: 2rem;
  }
  .about .wrap {
    max-width: 90vw;
  }
  .can .wrap {
    max-width: 90vw;
  }
  .service .service_box .wrap {
    max-width: 90vw;
  }
  .mission .wrap {
    max-width: 90vw;
  }
  .flow .wrap {
    max-width: 90vw;
  }
  .service .service_box .wrap .support_services {
    max-width: 75vw;
  }
  .service .service_box .wrap .support_services .support_card h2 {
    font-size: 120%;
  }
  .service .service_box .wrap .support_services .support_card ul li {
    font-size: 110%;
  }
  .contact .wrap h2 i.icon {
    font-size: 1.5rem;
  }
}
/*SPのみ*/
@media (max-width: 768px) {
  html,
  body {
    font-size: 3.5vw;
  }
  .anchor-target {
    scroll-margin-top: 4.5rem;
  }
  .site_nav .nav_wrap {
    padding: 0, 5rem;
  }
  .site_nav .nav_wrap h1 {
    width: 40%;
  }
  .site_nav .nav_wrap h1 img {
    vertical-align: middle;
  }
  .hotori_hero {
    margin-top: 4.5rem;
    padding-bottom: 0.5rem;
  }
  .hotori_hero .hotori_header {
    display: block;
    height: 13rem;
  }
  .hotori_hero .hotori_header h2 {
    font-size: 2rem;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    display: block;
  }
  .hotori_hero .hotori_header .hotori_title .kanji {
    margin-top: 0rem;
    font-size: clamp(4rem, 25vw, 10rem);
  }
  .hotori_hero .hotori_header .hotori_title .romaji {
    font-size: 1.5rem;
  }
  .hotori_hero .hotori_tex {
    font-size: 125%;
    margin-top: 3rem;
    margin-bottom: 3rem;
    max-width: 100vw;
  }
  .hotori_hero .hotori_gallery {
    height: 13rem;
  }
  .hotori_hero .hotori_gallery img {
    width: 55%;
  }
  .about {
    background-size: inherit;
    background-position: top;
  }
  .about .wrap {
    max-width: 90vw;
    padding-top: 3rem;
    padding-bottom: 18rem;
  }
  .about .wrap .about_hotori {
    margin-bottom: 3rem;
  }
  .about .wrap .about_hotori ol {
    font-size: 100%;
  }
  .about .wrap h2 {
    font-size: 120%;
    margin-bottom: 3rem;
    text-align: left;
  }
  .about .wrap .nayami_ttl {
    margin-bottom: 1rem;
    text-align: center;
  }
  .about .wrap .nayami_ttl .nayami_ttl_1 {
    font-size: 80%;
  }
  .about .wrap .nayami_ttl .nayami_ttl_2 {
    font-size: 112%;
  }
  .about .wrap .nayami_text .nayami_text_left {
    width: unset;
  }
  .about .wrap .nayami_text .nayami_text_right {
    width: unset;
  }
  .about .wrap::before {
    top: 83%;
    left: 50%;
    width: 35%;
    height: 19%;
  }
  .about .wrap::after {
    top: 85%;
    left: 14%;
    width: 43%;
    height: 18%;
  }
  .contact .wrap {
    max-width: 90vw;
  }
  .contact a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 1rem 0;
  }
  .contact .wrap h2 {
    flex-direction: column;
    align-items: center;
    font-size: 140%;
    line-height: 1.5;
    text-align: center;
  }
  .contact .wrap h2::before, .contact .wrap h2::after {
    content: "";
    width: 90%;
    border-bottom: 2px solid #fff;
    margin: 1rem 0;
  }
  .contact .wrap h2 i.icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .contact .wrap h2 .text-line {
    display: block;
    line-height: 1.4;
  }
  .can .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .can .wrap h2::before,
  .can .wrap h2::after {
    left: 15%;
    width: 70%;
  }
  .can .wrap .can_text {
    text-align: left;
  }
  .can .wrap .can_p {
    width: 100%;
  }
  .can .wrap .can_1 {
    margin-bottom: 5rem;
  }
  .service .service_box .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .service .service_box .wrap p:first-of-type {
    width: 100%;
  }
  .service .service_box .wrap h2 {
    font-size: 165%;
  }
  .service .service_box .wrap p:last-of-type {
    text-align: left;
  }
  .mission .wrap {
    max-width: 90vw;
    padding: 3rem 0;
  }
  .mission .wrap p:first-of-type {
    text-align: left;
  }
  .mission .scroll_container {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .mission .scroll_container img {
    display: block;
    width: 180%;
    max-width: none;
  }
  .flow .wrap {
    max-width: 90vw;
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
  .flow .wrap .flow_box {
    display: block;
  }
  .flow .wrap .flow_box h3 {
    margin-bottom: 1rem;
    font-size: 130%;
  }
  .flow .wrap .flow_box p {
    font-size: 110%;
  }
  .footer_nav {
    display: block;
  }
  .service .service_box .wrap .support_services {
    max-width: 90vw;
  }
}/*# sourceMappingURL=style.css.map */