<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article &gt; * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  color: #2e2e2e;
  background-color: #fff;
}

h1.c-entry__title {
  display: none;
}

h2.heading.wp-block-heading {
  position: relative;
  padding: 1.5rem 1rem;
  border-left: none; /*元々のデザインを打ち消し*/
  background-color: white; /*元々のデザインを打ち消し*/
  width: 100%;
}

h4.wp-block-heading &gt; span {
  font-size: 24px;
}

.smb-step__item__title span,
.smb-step__item__body p {
  text-align: left;
}

/*
# ホバーアクション
---------------------------------- */
.c-navbar__item &gt; a {
  transition: all 0.3s;
}

.c-navbar__item:not(:last-child) &gt; a::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20%;
  width: 60%;
  height: 1px;
  background-color: #1989ea;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

.c-navbar__item &gt; a:hover {
  color: #1989ea;
}

.c-navbar__item &gt; a:hover::after {
  transform: scale(1, 1);
}

.p-global-nav .c-navbar__item:last-child &gt; a {
  background-color: #1989ea;
  color: #fff;
}

.l-contents__inner:first-child {
  padding-top: 0;
}

.home .l-contents__container {
  padding-left: 0;
  padding-right: 0;
}

/*
# パンくずリストの上に余白を追加
---------------------------------- */
body:not(.home) .l-contents {
  padding-top: 5.30769rem;
  padding-top: calc(var(--_space, 1.76923rem) * 3);
}

/* =========================================================
# mv
========================================================= */
/*
# スライドショー
---------------------------------- */
#imageSlide {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}

#imageSlide::before {
  content: "";
  display: block;
  padding-top: 51.59722%;
}

#imageSlide div {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.mv-slide__bg01 {
  background-image: url(https://www.portfolio.keigo.fun/box/wp-content/uploads/2024/07/AdobeStock_206412410.jpg);
}

.mv-slide__bg02 {
  background-image: url(https://www.portfolio.keigo.fun/box/wp-content/uploads/2024/07/AdobeStock_688746327-scaled.jpeg);
}

.mv-slide__bg03 {
  background-image: url(https://www.portfolio.keigo.fun/box/wp-content/uploads/2024/07/AdobeStock_507970140_Preview.jpeg);
}

.mv-slide {
  position: relative;
  max-width: 100%;
}

.mv-slide__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #333;
  font-size: 44px;
  font-weight: bold;
  text-align: center;
}

/*
# 640以下で画像を切り替え
---------------------------------- */
@media screen and (max-width: 640px) {
  #imageSlide::before {
    content: "";
    display: block;
    padding-top: 157.8666%;
  }
  .mv-slide__bg01 {
    background-image: url(画像のURLをペースト);
  }
  .mv-slide__bg02 {
    background-image: url(画像のURLをペースト);
  }
  .mv-slide__bg03 {
    background-image: url(画像のURLをペースト);
  }
}
.smb-btn__label {
  color: #1989ea;
}

.smb-btn {
  border-style: solid;
  color: #1989ea;
  text-decoration: none;
}

.smb-btn:hover {
  background-color: #1989ea;
  color: #fff;
}

.smb-btn:hover .smb-btn__label {
  color: #fff;
}

.wp-block-column:not(:first-child) {
  border-left: 1px solid grey;
}

/* =========================================================
# フッター
========================================================= */
/*
# 中央寄せ・ボーダー
---------------------------------- */
.c-widget__title {
  text-align: center;
}

.l-footer-widget-area__item.c-row__col {
  text-align: center;
  border-left: 1px solid #e3e3e3;
}

@media screen and (max-width: 1023px) {
  .l-footer-widget-area__item.c-row__col {
    text-align: center;
    border-left: none;
  }
}
/*
# 1023以下でロゴ消す・幅70％
---------------------------------- */
@media screen and (max-width: 1023px) {
  .l-footer__body .c-container {
    width: 70%;
  }
  .l-footer__body .c-container .c-site-branding__title {
    display: none;
  }
}
.c-site-branding__title .custom-logo {
  width: 161px;
}

.fade {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 2000ms;
}

.fade.effect-fade {
  opacity: 1;
  transform: translate(0, 0);
}

.c-entry-summary__content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
}

.page-id-25 .l-contents__inner {
  padding-left: 120px;
  padding-right: 120px;
}

@media screen and (max-width: 780px) {
  .page-id-25 .l-contents__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}</pre></body></html>