@charset "UTF-8";
/*========================================
フォント
========================================*/
input[type=text], input[type=email], textarea {
  -webkit-appearance: none;
  appearance: none;
}

::placeholder {
  color: #afafaf;
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    display: block;
  }
}
@keyframes fadeOut {
  100% {
    background: none;
  }
}
.fadeIn {
  filter: alpha(opacity=0);
  -ms-filter: "alpha(opacity=0)";
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  zoom: 1;
  transition: 1s;
}

.fadeIn.inview {
  filter: alpha(opacity=1);
  -ms-filter: "alpha(opacity=100)";
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  z-index: 1;
  transition-delay: 0.2s;
}

/******************************************************************************
 * RESET
*******************************************************************************/
h1, h2, h3, h4, h5, h6,
a, abbr, acronym, address, applet, article, aside, audio,
b, big, blockquote, body, caption, canvas, center, cite, code,
dd, del, details, dfn, dialog, div, dl, dt, em, embed,
fieldset, figcaption, figure, form, footer,
header, hgroup, h1, h2, h3, h4, h5, h6, html,
i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, output, p, pre, q, ruby,
s, samp, section, main, small, span, strike, strong, sub, summary, sup,
tt, table, tbody, textarea, tfoot, thead, time, tr, th, td,
u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: initial;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
}

*:focus {
  outline: none;
}

html {
  font-size: 62.5%;
  font-family: var(--basefont);
}
html figure {
  margin: 0;
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (min-width: 561px) and (max-width: 768px) {
  html {
    font-size: 1.3020833333vw;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased; /* Webkit系 (Chrome, Safari) */
  -moz-osx-font-smoothing: grayscale; /* macOS Firefox */
  text-rendering: optimizeLegibility; /* 可読性を向上 */
}
body b {
  font-weight: bold;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, main {
  display: block;
}

#sp-nav,
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  #sp-nav,
  .sp-only {
    display: block;
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  border: none;
  image-rendering: -webkit-optimize-contrast;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #626262;
}

li {
  list-style: none;
}

.anchor-txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 103;
}

.inner {
  max-width: 123rem;
  width: 90vw;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .inner {
    max-width: none;
    width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

body {
  font-family: sans-serif;
  background: #ece5dd;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
@media (max-width: 768px) {
  body {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

#chatbox {
  width: 100%;
  max-width: 92rem;
  height: 60rem;
  background: #F5F5F5;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.15);
  font-size: 1.6rem;
  line-height: 1.375;
}
@media (max-width: 768px) {
  #chatbox {
    max-width: none;
    height:100vh;
  }
}
#chatbox .headbox .box {
  background: url(../images/bg.jpg);
  height: 12rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#chatbox .headbox .logo {
  width: 100%;
  max-width: 41.7rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.7rem;
}
@media (max-width: 768px) {
  #chatbox .headbox .logo {
    max-width: 26.7rem;
    position: initial;
    left: auto;
    bottom: auto;
    transform: translateX(0);
    margin: 0 auto;
  }
}
#chatbox .headbox .lead {
  height: 4rem;
  background: #272727;
  box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.16);
  display: flex;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  #chatbox .headbox .lead {
    height: 6.6rem;
  }
}
#chatbox #messages {
  flex: 1;
  padding: 4rem 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
#chatbox #messages .message {
  display: flex;
  align-items: flex-end;
  margin: 1rem 2rem;
}
#chatbox #messages .message.bot {
  justify-content: flex-start;
}
#chatbox #messages .message.bot .bubble {
  background: #fff;
  border: 0.1rem solid #ccc;
  border-radius: 1.5rem 1.5rem 1.5rem 0.3rem;
  max-width: 75%;
  padding: 1rem;
  white-space: pre-wrap;
  word-break: break-word;
}
#chatbox #messages .message.user {
  justify-content: flex-end;
}
#chatbox #messages .message.user .bubble {
  background: #dcf8c6;
  border-radius: 1.5rem 1.5rem 0.3rem 1.5rem;
  max-width: 75%;
  padding: 1rem;
  white-space: pre-wrap;
  word-break: break-word;
}
#chatbox #messages .message .avatar {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0.8rem;
  user-select: none;
}
#chatbox #input-area {
  display: flex;
  border-top: 0.1rem solid #ccc;
  background-color: white;
}
@media screen and (max-width: 768px) {
  #chatbox #input-area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
  }
}
#chatbox #input-area #addressInput {
  flex: 1;
  padding: 1rem;
  border: none;
  font-size: 1.6rem;
}
#chatbox #input-area #sendBtn {
  padding: 0 1.6rem;
  border: none;
  background: #4caf50;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}
#chatbox #input-area #sendBtn:hover {
  background: #45a049;
}
#chatbox .bubble a {
  color: #4caf50;
  text-decoration: underline;
}
#chatbox .bubble a:hover {
  text-decoration: none;
}
#chatbox .option-buttons {
  text-align: center;
  margin-top: 3rem;
  background-color: #E3DDC5;
  padding: 3rem 16rem;
}
@media (max-width: 768px) {
  #chatbox .option-buttons {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
  }
}
#chatbox .option-buttons .btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #06c755;
  color: #fff;
  font-weight: bold;
  height: 6.2rem;
  border-radius: 3.1rem;
  text-decoration: none;
  box-shadow: 0 0.3rem 0 #ACA58A;
  transition: transform 0.1s;
  width: 100%;
  font-size: 2rem;
  gap: 1rem;
}
#chatbox .option-buttons .btn-line:hover {
  transform: translateY(2px);
}
#chatbox .option-buttons .btn-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 1rem;
}
#chatbox .option-buttons .btn-inner .btn-black {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
  background: #222;
  color: #fff;
  padding: 1.8rem 0;
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: 0 0.3rem 0 #ACA58A;
  font-weight: bold;
  transition: transform 0.4s;
}
#chatbox .option-buttons .btn-inner .btn-black a {
  color: white;
}
#chatbox .option-buttons .icon-line {
  background: url(../images/icon-line.svg) no-repeat center center/contain;
  width: 2.6rem;
  height: 2.5rem;
}
#chatbox .option-buttons .icon-line:hover {
  transform: translateY(2px);
}
#chatbox .option-buttons .icon-form {
  display: block;
  background: url(../images/icon-form.svg) no-repeat center center/contain;
  width: 100%;
  height: 2rem;
  margin: 0 auto 0.8rem;
}
#chatbox .option-buttons .icon-form:hover {
  transform: translateY(2px);
}
#chatbox .option-buttons .icon-tel {
  display: block;
  background: url(../images/icon-tel.svg) no-repeat center center/contain;
  width: 100%;
  height: 2rem;
  margin: 0 auto 0.8rem;
}
#chatbox .loading .dot {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 0.2rem;
  background: #999;
  border-radius: 50%;
  animation: blink 1.4s infinite both;
}
#chatbox .loading .dot:nth-child(2) {
  animation-delay: 0.2s;
}
#chatbox .loading .dot:nth-child(3) {
  animation-delay: 0.4s;
}

.consult-examples {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 1.2rem;
  margin: 2rem;
  padding: 2rem;
}
.consult-examples .consult-title {
  font-size: 2rem;
  margin: 0 0 2rem 0;
  padding: 0 0 0.5rem 0;
  border-bottom: 2px solid #DD337C;
  line-height: 1.3;
  font-family: initial;
  font-weight: 700;
}
.consult-examples .consult-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.consult-examples .consult-list li {
  width: calc(25% - 1rem);
  position: relative;
}
@media (max-width: 768px) {
  .consult-examples .consult-list li {
    width: calc(50% - 1rem);
  }
}
.consult-examples .consult-list li a {
  padding: 0.5rem 0 0.5rem 2.5rem;
  position: relative;
  z-index: 3;
}
.consult-examples .consult-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 2rem;
  background-color: #6bb6ff;
  border-radius: 4rem;
  transform: translateY(-50%);
}
.consult-examples .consult-list li:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  left: 0.9rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(45deg);
}

@keyframes blink {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/*# sourceMappingURL=style.css.map */
