@charset "UTF-8";
/* ============================================
   変数
============================================ */
/* ============================================
   Base
============================================ */
.font-en {
  font-family: "Source Sans 3", sans-serif;
}

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

html, body {
  background-color: #f2f2f2;
  overflow-x: hidden;
}

#about,
#business,
#access,
#contact {
  overflow: hidden;
}

body {
  font-family: "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Source Sans 3", sans-serif;
  font-size: 16px;
  color: #4d4d4d;
  line-height: 2.1;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media only screen and (max-width: 821px) {
  body {
    font-size: 14px;
    line-height: 1.9;
    color: #444;
  }
}

main {
  width: 100%;
  max-width: 100%;
  margin-top: 120px;
}
body#home main {
  margin-top: 0px;
}

#content {
  width: 100%;
  padding: 0 40px;
}
@media only screen and (max-width: 821px) {
  #content {
    padding: 0 40px 40px;
  }
}

#title {
  margin-top: 120px;
}

::-moz-selection {
  background-color: #ddd;
}

::selection {
  background-color: #ddd;
}

a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.5;
}

.button:hover,
.button-green:hover,
.button-brown:hover,
.accordion-trigger:hover {
  opacity: 1;
}

p {
  margin-bottom: 1.5em;
}

/* ============================================
   見出し
============================================ */
h2 {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 12px;
}
@media only screen and (max-width: 821px) {
  h2 {
    font-size: 32px;
    margin-bottom: 20px;
    grid-gap: 8px;
  }
}
h2 img {
  width: 110px;
}
@media only screen and (max-width: 821px) {
  h2 img {
    width: 90px;
  }
}
h2 span {
  display: block;
  font-size: 16px;
}

h3 {
  font-size: 28px;
}
@media only screen and (max-width: 821px) {
  h3 {
    font-size: 12px;
  }
}
h3 span {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2.5px;
  margin-top: 8px;
  display: block;
}
@media only screen and (max-width: 821px) {
  h3 span {
    margin-top: 4px;
  }
}
.blog h3, .category h3, .single h3 {
  font-size: 20px;
  margin-bottom: 4px;
  text-align: left;
  color: #4d4d4d;
}
@media only screen and (max-width: 821px) {
  .blog h3, .category h3, .single h3 {
    font-size: 16px;
  }
}
#privacy-policy h3 {
  text-align: left;
  color: #4d4d4d;
  font-size: 18px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 821px) {
  #privacy-policy h3 {
    font-size: 15px;
  }
}

/* ============================================
   ローディング
============================================ */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0071bc;
  z-index: 999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#loading.hide {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #fff;
  border-radius: 50%;
  -webkit-animation: loading-spin 0.8s linear infinite;
          animation: loading-spin 0.8s linear infinite;
}

@-webkit-keyframes loading-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loading-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* ============================================
   アニメーション
============================================ */
.fadein {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fadein h2 {
  opacity: 0;
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}
.fadein img {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}
.fadein.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fadein.visible h2 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fadein.visible img {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

header h1 {
  position: fixed;
  top: 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 100;
}

header h1.hide {
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
}

/* hero-catch-right：ボックスがスライドアウト後にテキスト表示 */
.hero-catch-right {
  position: relative;
  overflow: hidden;
}

.hero-catch-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff; /* 変数に合わせて変更 */
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.hero-catch-right.is-visible::after {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

/* hero-catch-left：ボックスが右から左へスライドアウト */
.hero-catch-left {
  position: relative;
  overflow: hidden;
}

.hero-catch-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.hero-catch-left.is-visible::after {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

/* hero-circle：下から上 */
#hero-circle {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

#hero-circle.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.section-title {
  position: relative;
  overflow: hidden;
}

.section-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.section-title.is-visible::after {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

section.is-visible::after {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ============================================
   レスポンシブ
============================================ */
@media (max-width: 768px) {
  .header-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  #news > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .row-2 > .grid,
  .row-3 > .grid,
  .row-4 > .grid,
  .row-6 > .grid {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .footer-bottom {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #katsushika .border,
  #kanetto .border,
  #consultation .border {
    padding: 28px 20px;
  }
}
img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   セクション共通
============================================ */
.section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 768px) {
  .section-heading {
    gap: 4px;
    margin-bottom: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#about .section-heading, #access .section-heading {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media only screen and (max-width: 768px) {
  #about .section-heading, #access .section-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.section-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(36px, 8vw, 54px);
  font-weight: 500;
  color: #0071bc;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.04em;
}
.section-label {
  font-size: 18px;
  font-weight: 600;
  color: #0071bc;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 768px) {
  .section-label {
    font-size: 14px;
  }
}

/* ============================================
   Hero
============================================ */
header h1 {
  padding: 56px;
}
@media only screen and (max-width: 768px) {
  header h1 {
    padding: 26px 24px;
  }
}
header h1 img {
  width: 16vw;
}
@media only screen and (max-width: 768px) {
  header h1 img {
    width: 100px;
  }
}

#hero {
  position: relative;
  width: 100dvw;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: #f2f2f2;
}
@media only screen and (max-width: 768px) {
  #hero {
    height: calc(100vh - 40px);
  }
}

#hero-bg {
  width: 100dvw;
  height: 100dvh;
  border-left: 72px solid #f2f2f2;
  border-top: 74px solid #f2f2f2;
  border-bottom: 78px solid #f2f2f2;
  border-right: 93px solid #f2f2f2;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #hero-bg {
    border-left: 28px solid #f2f2f2;
    border-top: 34px solid #f2f2f2;
    border-bottom: 34px solid #f2f2f2;
    border-right: 32px solid #f2f2f2;
    height: calc(100vh - 40px);
  }
}
#hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
}

#hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30vw;
  height: 30vw;
  z-index: 2;
  margin: -15vw 0 0 -15vw;
}
@media only screen and (max-width: 768px) {
  #hero-circle {
    width: 40vw;
    height: 40vw;
    z-index: 2;
    margin: -20vw 0 0 -20vw;
  }
}

.hero-catch-right {
  line-height: 1;
  display: block;
  position: absolute;
  top: 56px;
  right: 74px;
  z-index: 3;
  width: 34vw;
  opacity: 0.95;
}
@media only screen and (max-width: 768px) {
  .hero-catch-right {
    top: 26px;
    right: 24px;
    z-index: 3;
    width: 54vw;
  }
}

.hero-catch-left {
  line-height: 1;
  display: block;
  position: absolute;
  left: 54px;
  bottom: 60px;
  z-index: 3;
  width: 46vw;
  opacity: 0.95;
}
@media only screen and (max-width: 768px) {
  .hero-catch-left {
    left: 22px;
    bottom: 26px;
    z-index: 3;
    width: 74vw;
  }
}

#hero-side-right {
  line-height: 1;
  position: fixed;
  right: 26px;
  top: 60px;
  z-index: 3;
  width: 10px;
  display: none;
}
body#home #hero-side-right {
  display: block;
}
@media only screen and (max-width: 768px) {
  body#home #hero-side-right {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #hero-side-right {
    display: none;
  }
}

#hero-scroll {
  position: absolute;
  bottom: 78px;
  right: 42px;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  #hero-scroll {
    bottom: 42px;
    right: 38px;
    display: none;
  }
}
#hero-scroll img {
  width: 18px;
}

/* ============================================
   About
============================================ */
#about {
  position: relative;
  padding: 180px 100px 180px;
  padding: 60px 100px 220px;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  gap: 0 60px;
}
#about > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
#about > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media only screen and (max-width: 768px) {
  #about {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 40px 36px 200px;
  }
}
#about::after {
  content: "";
  display: block;
  width: 56%;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 136px;
  right: 140px;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  #about::after {
    width: 100%;
    height: 70%;
    top: 100px;
    right: 60px;
  }
}

.about-circle {
  position: absolute;
  top: 0px;
  left: -4vh;
  width: 22vw;
  height: 22vw;
  border-radius: 50%;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .about-circle {
    width: 120px;
    height: 120px;
    left: -70px;
    top: 20px;
  }
}

.about-image {
  position: absolute;
  z-index: 1;
  width: 60vw;
  left: 0;
  bottom: -100px;
  clip-path: inset(0% 28%);
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .about-image {
    width: 320px;
    left: -80px;
    bottom: -20px;
  }
}
.about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(80%);
          filter: grayscale(80%);
}

.about-content {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  padding: 40px 0 0 30%;
}
@media only screen and (max-width: 768px) {
  .about-content {
    padding: 40px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.about-catch {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 32px;
  text-align: right;
}
.about-catch span {
  border-bottom: 0.9px solid #4d4d4d;
  padding-bottom: 2px;
  display: inline-block;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .about-catch span {
    font-size: 16px;
  }
}

.about-text {
  font-size: 14px;
  margin-bottom: 32px;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .about-text {
    font-size: 13px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .about-text br {
    display: none;
  }
}

.about-text-en {
  font-size: 11px;
  line-height: 1.89;
  color: #555;
  text-align: right;
}
@media only screen and (max-width: 768px) {
  .about-text-en {
    font-size: 10px;
  }
}
.about-text-en span {
  font-weight: 600;
}

/* ============================================
   Business
============================================ */
#business {
  position: relative;
  padding: 180px 100px 180px;
  padding: 180px 100px 500px;
}
@media only screen and (max-width: 768px) {
  #business {
    padding: 72px 36px 220px;
    margin-top: 60px;
  }
}
#business::after {
  content: "";
  display: block;
  width: 68%;
  height: 58%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 216px;
  left: 140px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  #business::after {
    width: 100%;
    height: 64%;
    top: 94px;
    left: 60px;
  }
}

.business-deco {
  position: absolute;
  top: 0;
  right: -36vw;
  width: 50vw;
  height: 18vw;
  background: rgba(0, 113, 188, 0.8);
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .business-deco {
    width: 120px;
    height: 100px;
    right: -40px;
    top: 12px;
  }
}

.business-image {
  position: absolute;
  z-index: -1;
  width: 54vw;
  right: 0;
  bottom: -60px;
  bottom: -90px;
  clip-path: inset(2% 10%);
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .business-image {
    width: 280px;
    right: -40px;
    bottom: -60px;
  }
}
.business-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .business-image {
    -ms-grid-column: 1;
    grid-column: 1;
    height: 240px;
  }
}

.business-grid {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px 0;
  max-width: 80%;
  margin-bottom: 48px;
}
@media only screen and (max-width: 768px) {
  .business-grid {
    grid-gap: 24px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-bottom: 36px;
  }
}

.business-item {
  padding: 0px 24px;
  border-left: 0.9px solid #4d4d4d;
}
@media only screen and (max-width: 768px) {
  .business-item {
    padding: 0 16px;
    border-left: 1px solid #4d4d4d;
  }
}
.business-item h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 6px;
}
@media only screen and (max-width: 768px) {
  .business-item h3 {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 4px;
  }
}
.business-item p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .business-item p {
    font-size: 13px;
  }
}

.business-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin: 60px 0 0 24%;
}
@media only screen and (max-width: 768px) {
  .business-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 24px;
    margin-left: 0;
  }
}

.business-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 280px;
  padding-bottom: 12px;
  border-bottom: 1px solid #4d4d4d;
  font-size: 15px;
  letter-spacing: 0.05em;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .business-link {
    width: 240px;
    font-size: 14px;
    border-bottom: 0.9px solid #4d4d4d;
  }
}
.business-link:hover {
  opacity: 0.6;
}
.business-link .link-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0.9px solid #4d4d4d;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .business-link .link-arrow {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

/* ============================================
   Access
============================================ */
#access {
  position: relative;
  padding: 180px 100px 180px;
  padding: 200px 100px 0px;
  display: -ms-grid;
  display: grid;
  gap: 0 60px;
}
@media only screen and (max-width: 768px) {
  #access {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 60px 36px;
  }
}
#access::after {
  content: "";
  display: block;
  width: 56%;
  height: 76%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 236px;
  right: 140px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  #access::after {
    width: 100%;
    height: 86%;
    top: 80px;
    right: 60px;
  }
}

.access-circle {
  position: absolute;
  top: 0px;
  left: 20vh;
  width: 24vw;
  height: 24vw;
  border-radius: 50%;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .access-circle {
    width: 120px;
    height: 120px;
    left: -30px;
    bottom: 30px;
  }
}

.access-content {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .access-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.access-map {
  width: 100%;
  height: 400px;
  background: #ffffff;
  margin-bottom: 0;
  border: 1px solid #0071bc;
  border-radius: 4px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .access-map {
    width: 86%;
  }
}
.access-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-filter: grayscale(80%);
          filter: grayscale(80%);
}

.access-info {
  padding: 24px 0;
  text-align: right;
}

.access-address {
  margin: 0px;
}

.access-map-link {
  font-weight: 600;
  color: #4d4d4d;
  letter-spacing: 0.05em;
}
.access-map-link:hover {
  text-decoration: underline;
}

/* ============================================
   Contact
============================================ */
#contact {
  position: relative;
  padding: 180px 100px 180px;
  padding: 120px 100px 110px;
}
@media only screen and (max-width: 768px) {
  #contact {
    padding: 40px 36px;
  }
}
#contact::after {
  content: "";
  display: block;
  width: 68%;
  height: 82%;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 158px;
  left: 140px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  #contact::after {
    width: 100%;
    height: 88%;
    top: 60px;
    left: 60px;
  }
}

.contact-form-wrap {
  position: relative;
  z-index: 1;
  max-width: 800px;
  /* Contact Form 7 スタイル */
  /* ラベル行 */
  /* 必須バッジ */
  /* チェックボックス */
  /* 送信ボタン */
}
.contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-form-wrap .row {
  -ms-grid-columns: 3fr 0 9fr;
  grid-template-columns: 3fr 9fr;
  grid-gap: 0;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .contact-form-wrap .row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .contact-form-wrap .row .text-small label {
    font-size: 12px;
  }
}
.contact-form-wrap .required {
  font-size: 11px;
  border: 0.9px solid #4d4d4d;
  padding: 4px;
  border-radius: 4px;
  line-height: 1;
}
.contact-form-wrap p {
  display: contents;
}
.contact-form-wrap p label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
}
@media only screen and (max-width: 768px) {
  .contact-form-wrap p label {
    padding: 12px 0 0;
  }
}
.contact-form-wrap p label .wpcf7-not-valid-tip {
  font-size: 11px;
  color: red;
}
.contact-form-wrap input[type=text],
.contact-form-wrap input[type=email],
.contact-form-wrap input[type=tel],
.contact-form-wrap textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #0071bc;
  padding: 12px;
  font-size: 14px;
  color: #4d4d4d;
  outline: none;
  font-family: "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Source Sans 3", sans-serif;
}
@media only screen and (max-width: 768px) {
  .contact-form-wrap input[type=text],
  .contact-form-wrap input[type=email],
  .contact-form-wrap input[type=tel],
  .contact-form-wrap textarea {
    padding: 10px 4px;
  }
}
.contact-form-wrap input[type=text]::-webkit-input-placeholder, .contact-form-wrap input[type=email]::-webkit-input-placeholder, .contact-form-wrap input[type=tel]::-webkit-input-placeholder, .contact-form-wrap textarea::-webkit-input-placeholder {
  color: rgba(0, 113, 188, 0.6);
}
.contact-form-wrap input[type=text]::-moz-placeholder, .contact-form-wrap input[type=email]::-moz-placeholder, .contact-form-wrap input[type=tel]::-moz-placeholder, .contact-form-wrap textarea::-moz-placeholder {
  color: rgba(0, 113, 188, 0.6);
}
.contact-form-wrap input[type=text]:-ms-input-placeholder, .contact-form-wrap input[type=email]:-ms-input-placeholder, .contact-form-wrap input[type=tel]:-ms-input-placeholder, .contact-form-wrap textarea:-ms-input-placeholder {
  color: rgba(0, 113, 188, 0.6);
}
.contact-form-wrap input[type=text]::-ms-input-placeholder, .contact-form-wrap input[type=email]::-ms-input-placeholder, .contact-form-wrap input[type=tel]::-ms-input-placeholder, .contact-form-wrap textarea::-ms-input-placeholder {
  color: rgba(0, 113, 188, 0.6);
}
.contact-form-wrap input[type=text]::placeholder,
.contact-form-wrap input[type=email]::placeholder,
.contact-form-wrap input[type=tel]::placeholder,
.contact-form-wrap textarea::placeholder {
  color: rgba(0, 113, 188, 0.6);
}
.contact-form-wrap input[type=text]:focus,
.contact-form-wrap input[type=email]:focus,
.contact-form-wrap input[type=tel]:focus,
.contact-form-wrap textarea:focus {
  border-color: #0071bc;
}
.contact-form-wrap textarea {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #0071bc;
  padding: 16px;
  font-size: 14px;
  color: #4d4d4d;
  outline: none;
  font-family: "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Source Sans 3", sans-serif;
  resize: vertical;
  min-height: 160px;
  grid-column: 1/-1;
  margin: 20px 0;
}
.contact-form-wrap textarea::-webkit-input-placeholder {
  color: rgba(0, 113, 188, 0.6);
}
.contact-form-wrap textarea::-moz-placeholder {
  color: rgba(0, 113, 188, 0.6);
}
.contact-form-wrap textarea:-ms-input-placeholder {
  color: rgba(0, 113, 188, 0.6);
}
.contact-form-wrap textarea::-ms-input-placeholder {
  color: rgba(0, 113, 188, 0.6);
}
.contact-form-wrap textarea::placeholder {
  color: rgba(0, 113, 188, 0.6);
}
.contact-form-wrap textarea:focus {
  border-color: #0071bc;
}
.contact-form-wrap .wpcf7-not-valid-tip {
  color: orange;
  font-size: 11px;
  margin-top: 12px;
  font-weight: 600;
  display: block;
}
.contact-form-wrap .required-badge {
  display: inline-block;
  font-size: 10px;
  border: 1px solid #4d4d4d;
  padding: 1px 4px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.contact-form-wrap input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}
.contact-form-wrap .wpcf7-acceptance {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -12px 0 24px;
  font-size: 14px;
}
.contact-form-wrap .wpcf7-acceptance a {
  text-decoration: underline;
}
.contact-form-wrap .wpcf7-acceptance label {
  padding: 0;
}
.contact-form-wrap .flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-form-wrap input[type=submit] {
  display: block;
  width: 200px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid #4d4d4d;
  border-radius: 2em;
  font-size: 14px;
  font-family: "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ Pro W3", "Source Sans 3", sans-serif;
  cursor: pointer;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #4d4d4d;
}
@media only screen and (max-width: 768px) {
  .contact-form-wrap input[type=submit] {
    width: 160px;
    padding: 12px 32px;
  }
}
.contact-form-wrap input[type=submit]:hover {
  background: #4d4d4d;
  color: #ffffff;
}

/* ============================================
   Footer
============================================ */
.footer-circle {
  position: absolute;
  bottom: 0;
  top: 0px;
  left: -4vw;
  width: 24vw;
  height: 24vw;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .footer-circle {
    top: 10px;
    width: 120px;
    height: 120px;
    margin-left: -10px;
  }
}
.footer-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .footer-circle::after {
    width: 40px;
    height: 40px;
  }
}

#footer-visual {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #footer-visual {
    height: 270px;
  }
}

.footer-visual-bg {
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer-visual-bg img {
  width: 100%;
  height: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 40px;
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .footer-visual-bg img {
    height: 160px;
  }
}

.footer-catch {
  position: absolute;
  z-index: 1;
  bottom: -2px;
  left: 0;
  width: 100%;
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .footer-catch {
    bottom: 14px;
  }
}

footer {
  position: relative;
  text-align: center;
  padding: 64px 0 90px;
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 0px 0 60px;
  }
}
footer p {
  font-size: 10px;
}
@media only screen and (max-width: 768px) {
  footer p {
    font-size: 9px;
  }
}
footer #footer-logo {
  width: 100px;
  display: block;
  margin: 24px auto;
}
@media only screen and (max-width: 768px) {
  footer #footer-logo {
    width: 80px;
    margin: 20px auto;
  }
}
footer #back-to-top {
  position: absolute;
  bottom: 40px;
  right: 34px;
  display: none;
}
@media only screen and (max-width: 768px) {
  footer #back-to-top {
    bottom: 400px;
    right: 20px;
  }
}
body#home footer #back-to-top {
  display: block;
}
footer #back-to-top img {
  width: 18px;
}
@media only screen and (max-width: 768px) {
  footer #back-to-top img {
    width: 16px;
  }
}