@charset "UTF-8";
:root {
  --site-width: 1170px;
  --main-color: #213077;
  --sub-color: #B09B47;
  --font-color: #393939;
}

html,body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #393939;
  font-size: 14px;
  text-spacing-trim: space-all;
}

.wrapper {
  
}

a {
  color: #393939;
}
a:hover {
  color: #9a7e4f;
  cursor: pointer;
}
h1,h2,h3,h4,h5 {
  font-weight: bold;
  line-height:1.5;
}
.main-visual-layouts {
  width: 100%;
  background-image: url('../img/bg-top.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  min-height: 100vh;
  z-index: 0;
}
.main-visual-layouts:after {
  background-image: url('../img/bg-top-cloud.png');
  display: block;
  background-size: cover;
  background-position: center bottom;
  background-repeat: repeat-x;
  content: "";
  position: absolute;
  width: 100%;
  padding-top: 11.25%;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .main-visual-layouts {
    background-size: auto 100%;
    background-position: center top;
  }
}
.main-visual-body {
  width: 98%;
  height: 100%;
  max-width: var(--site-width);
  /*overflow: hidden;*/
  margin: 0 auto;
}
.logo-container {
  height: 160px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.kanxashi-logo {
  width: 140px;
}
.layout-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: calc(80vh - 160px);
}

.site-title-content {
  color: #fff;
  width: 100%;
  max-width: 460px;
}
.service-sub-copy{
	font-size: 1.4rem;
  text-align: center;
  color: #FFF;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
	font-weight: bold;
  margin-bottom: 1rem;
}
.yo-jin-bo-logo,
.contact {
  width: 100%;
}
.yo-jin-bo-logo {
  margin-bottom: 2rem;
}
/*
.layout-flex {
  outline: solid 1px #000;
}
.site-title-content {
  outline: solid 1px red;
}
.character-container {
  outline: solid 1px blue;
}
*/
.character-container {
  width: 600px;
}
.character-container .character {
  width: 100%;
}
@media (max-width: 991px) {
  .layout-flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
  }
  .site-title-content {
    order: 2;
    width: 400px;
    max-width: 90%;
    padding-bottom: 2rem;
  }
  .character-container {
    order: 1;
    width: 400px;
    max-width: 90%;
  }
  .logo-container {
    height: 60px;
  }
}

@media screen and (min-device-width: 767px) {
    a[href^="tel:"] {
        pointer-events: none; /* クリック（タップ）を無効化 */
        cursor: default;      /* カーソルを矢印に戻す */
    }
}

@media (max-width: 767px) {
  .site-title-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .yo-jin-bo-logo,
  .contact {
    width: 70%;
  }
  .character-container {
    width: 300px;
  }
  .yo-jin-bo-logo {
    margin-bottom: 1rem;
  }
  .service-sub-copy{
    font-size: 1rem;
  }
  .site-title-content {
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 576px) {
  body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
}