@charset "UTF-8";
/* *** Variables Settings *** */
/* Fonts */
/* Break Point */
/* Hover Style */
/* Color */
:root {
  --white: #fff;
  --black: #000;
  --darkGray: #333;
  --lightGray: #e6e6e6;
}

/* *** mixin *** */
/* Break Point */
/* Hover Style */
/* *** Helper class *** */
/* Break Point */
@media (max-width: 767.89px) {
  .pc_only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

/* Img */
.img_max {
  width: 100%;
  height: auto;
}

/* Display */
.d_block {
  display: block;
}

.d_inline {
  display: inline;
}

.d_inline_block {
  display: inline-block;
}

.d_none {
  display: none;
}

.d_flex {
  display: flex;
}

.d_grid {
  display: grid;
}

/* Align */
.text_start {
  text-align: left;
}

.text_center {
  text-align: center;
}

.text_end {
  text-align: right;
}

/* Weight */
.fw_light {
  font-weight: 300;
}

.fw_regular {
  font-weight: 400;
}

.fw_medium {
  font-weight: 500;
}

.fw_semibold {
  font-weight: 600;
}

.fw_bold {
  font-weight: 700;
}

/* Position */
.p_relative {
  position: relative;
}

.p_absolute {
  position: absolute;
}

.p_fixed {
  position: fixed;
}

.p_sticky {
  position: sticky;
}

.p_static {
  position: static;
}

/* *** Elements *** */
/* 要素の初期設定 */
a {
  text-decoration: none;
}

a,
button {
  transition: all 0.3s 0s ease;
  cursor: pointer;
}
a:hover,
button:hover {
  opacity: 0.7;
}

summary {
  display: block;
}

picture {
  line-height: 0;
  display: block;
}

img {
  width: 100%;
  height: auto;
}

/* *** Base *** */
:where(html) {
  font-size: 16px;
  scroll-behavior: smooth;
}

:where(body) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--darkGray);
  background-color: var(--white);
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
}

/* *** Layouts *** */
/* Container */
.container_md {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.container_fluid {
  width: min(100% - 2rem);
  margin-inline: auto;
}

/* Contents Margin */
@media (min-width: 768px) {
  .sec_inner {
    padding-block: 5rem;
  }
}
@media (max-width: 767.89px) {
  .sec_inner {
    padding-block: 3.25rem;
  }
}

/* Heading */
.ttl_h2 {
  text-align: center;
}
@media (min-width: 768px) {
  .ttl_h2 {
    margin-block-end: 2rem;
  }
}
@media (max-width: 767.89px) {
  .ttl_h2 {
    margin-block-end: 1rem;
  }
}
.ttl_h2 h2 {
  font-family: "Questrial", sans-serif;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .ttl_h2 h2 {
    font-size: 3.75rem;
  }
}
@media (max-width: 767.89px) {
  .ttl_h2 h2 {
    font-size: 2.75rem;
  }
}

/* Color */
.cl_white {
  color: var(--white);
}

/* Font */
.fnt_en {
  font-family: "Questrial", sans-serif;
}

/* Kerning */
.kerning {
  font-feature-settings: "palt";
}

/* 改行位置調整 */
.no_break {
  display: inline-block;
}

/* Background */
.bg_grid {
  background: url(/assets/images/bg_grid.webp);
}

/* Columns */
.row {
  display: block grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 1rem;
}

/* Go to Top Button */
.top_btn_wrap {
  width: 38px;
  height: 38px;
  border-radius: 100px;
  color: var(--white);
  background-color: var(--darkGray);
  display: grid;
  place-items: center;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.top_btn_wrap.is_show {
  opacity: 1;
  pointer-events: auto;
}
.top_btn_wrap a {
  width: 12px;
  height: 12px;
  position: relative;
  top: 3px;
  transform: rotate(-45deg);
}
.top_btn_wrap a::before, .top_btn_wrap a::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.top_btn_wrap a::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
.top_btn_wrap a::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

/* *** Layouts *** */
/* Top layouts */
.mainvisual {
  display: grid;
}
.mainvisual .img_mainvisual {
  grid-area: 1/1;
}
.mainvisual .logo_bloomark_wrap {
  grid-area: 1/1;
  display: inherit;
  place-items: center;
}
.mainvisual .logo_bloomark_wrap h1 {
  width: min(100% - 3.75rem, 427px);
}
.mainvisual .btn_scroll {
  grid-area: 1/1;
  justify-self: center;
  align-self: end;
  cursor: pointer;
}
.mainvisual .btn_scroll:hover {
  transition: all 0.3s 0s ease;
}
.mainvisual .btn_scroll:hover:hover {
  opacity: 0.7;
}

.intro .txt_lead {
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
  word-break: auto-phrase;
}

.service.bg_service {
  background: var(--imgSrc) top/cover no-repeat;
}
@media (min-width: 768px) {
  .service.bg_service {
    --imgSrc: url(/assets/images/img_kick_pc.webp);
  }
}
@media (max-width: 767.89px) {
  .service.bg_service {
    --imgSrc: url(/assets/images/img_kick_sp.webp);
  }
}
.service ul li {
  padding: 2rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}
.service ul h3 {
  margin-block-end: 0.5rem;
  font-family: "Questrial", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}

.works .h2_sub {
  margin-block-start: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  word-break: auto-phrase;
}
.works ul li {
  padding-block: 2rem;
  display: grid;
  place-items: center;
}
.works ul li .img_wrap {
  width: min(80%, 240px);
  margin-inline: auto;
}

.about p {
  line-height: 1.8;
  text-align: center;
}

.footer {
  padding: 1.25rem;
  background-color: var(--lightGray);
}
.footer p {
  font-family: "Questrial", sans-serif;
  font-size: 0.75rem;
  text-align: center;
}

/* *** Animations *** */
.fadeIn {
  opacity: 0;
}
.fadeIn.is-anime {
  animation: fadeInAnime 1s ease-out forwards;
}

.fadeUp {
  opacity: 0;
}
.fadeUp.is-anime {
  animation: fadeUpAnime 1s ease-out forwards;
}

.fadeL {
  opacity: 0;
}
@media (min-width: 768px) {
  .fadeL.is-anime {
    animation: fadeLeft 1s ease-out forwards;
  }
}
@media (max-width: 767.89px) {
  .fadeL.is-anime {
    animation: fadeUpAnime 1s ease-out forwards;
  }
}

.fadeR {
  opacity: 0;
}
@media (min-width: 768px) {
  .fadeR.is-anime {
    animation: fadeRight 1s ease-out forwards;
  }
}
@media (max-width: 767.89px) {
  .fadeR.is-anime {
    animation: fadeUpAnime 1s ease-out forwards;
  }
}

.btn_scroll {
  animation: scalePulse 2.5s ease-in-out infinite;
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scalePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes sway {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}/*# sourceMappingURL=style.css.map */