@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes logo-fading {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes logo-fadeout {
  0% {
    transform: translateY(0px);
    opacity: 1; }
  100% {
    transform: translateY(-100px);
    opacity: 0; } }

@keyframes loading-bg-fade {
  0% {
    transform: translateX(-100%); }
  45% {
    transform: translateX(0%); }
  75% {
    transform: translateX(0%); }
  100% {
    transform: translateX(100%); } }

@keyframes visible_body {
  0% {
    opacity: 0;
    visibility: hidden; }
  100% {
    opacity: 1;
    visibility: visible; } }

@keyframes section-visible {
  0% {
    opacity: 0;
    transform: translateY(50px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }

@keyframes element-visible {
  0% {
    opacity: 0;
    transform: translateY(10px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }

@keyframes logo-toggle {
  0% {
    position: fixed;
    opacity: 1;
    transform: scale(1); }
  50% {
    position: fixed;
    opacity: 1;
    transform: scale(0.9); }
  100% {
    position: fixed;
    opacity: 1;
    transform: scale1(1); } }

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

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

nav ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input,
select {
  vertical-align: middle; }

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

html {
  font-size: 10px;
  scroll-behavior: smooth; }

body {
  font-size: 1.6rem;
  color: #5f5b5a;
  font-family: "Noto Sans JP", '源ノ角ゴシック JP', 'Roboto', 'Hiragino Kaku Gothic', 'Meiryo', sans-serif;
  font-weight: 400;
  background-color: #FFFFFF; }

.chatbowl-container {
  max-width: 800px;
  margin: 0 auto; }
  @media (max-width: 820px) {
    .chatbowl-container {
      max-width: 80%; } }

.center-display {
  display: flex;
  justify-content: center;
  align-items: center; }

.chatbowl-button-type-1 {
  background-color: #0068b6;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  padding: 22px 0px;
  border-radius: 50px;
  position: relative;
  width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s; }
  @media (max-width: 600px) {
    .chatbowl-button-type-1 {
      font-size: 16px;
      max-width: 300px; } }
  .chatbowl-button-type-1:hover {
    background-color: rgba(0, 104, 182, 0.8); }
  .chatbowl-button-type-1 img {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%); }
    @media (max-width: 600px) {
      .chatbowl-button-type-1 img {
        right: 18px;
        height: 25px; } }

.chatbowl-container-1000 {
  max-width: 1024px;
  margin: 0 auto; }
  @media (max-width: 1204px) {
    .chatbowl-container-1000 {
      max-width: 90%; } }

.margin-bottom-small {
  margin-bottom: 12px; }

.margin-bottom-100 {
  margin-bottom: 100px; }

.chatbowl-lp-btn {
  width: 100%;
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #f08c00;
  padding: 20px 0;
  cursor: pointer;
  transition: all 0.15s;
  border-radius: 10px; }
  .chatbowl-lp-btn:focus {
    outline: none; }
  .chatbowl-lp-btn:hover {
    background-color: rgba(240, 140, 0, 0.8); }
  @media (max-width: 600px) {
    .chatbowl-lp-btn {
      padding: 8px 0;
      font-size: 18px; } }

.chatbowl-lp-btn.primary-btn.loading {
  position: relative;
  background-color: rgba(240, 140, 0, 0.8); }
  .chatbowl-lp-btn.primary-btn.loading::before {
    content: '\27F3';
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 28px;
    margin-top: -20px;
    margin-left: -70px;
    animation: loading 1.5s linear infinite; }

@keyframes loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.chatbowl-lp-btn.primary-btn {
  position: relative; }
  .chatbowl-lp-btn.primary-btn::after {
    content: "";
    position: absolute;
    background-image: url("../assets/images/arrow-right.png");
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 15px;
    height: 30px;
    background-repeat: no-repeat; }
    @media (max-width: 600px) {
      .chatbowl-lp-btn.primary-btn::after {
        width: 15px;
        height: 22px;
        right: 10px;
        background-size: contain; } }

.chatbowl-lp-btn.return-btn {
  position: relative;
  background-color: #737373; }
  .chatbowl-lp-btn.return-btn:hover {
    background-color: rgba(115, 115, 115, 0.8); }
  .chatbowl-lp-btn.return-btn::after {
    content: "";
    position: absolute;
    background-image: url("../assets/images/arrow-right.png");
    transform: rotate(180deg) translateY(50%);
    top: 50%;
    left: 20px;
    width: 15px;
    height: 30px;
    background-repeat: no-repeat; }
    @media (max-width: 600px) {
      .chatbowl-lp-btn.return-btn::after {
        width: 15px;
        height: 22px;
        left: 10px;
        background-size: contain; } }

.padding-50 {
  padding: 0 50px; }
  @media (max-width: 600px) {
    .padding-50 {
      padding: 0 25px; } }

.margin-bottom-10 {
  margin-bottom: 10px; }

.row {
  max-width: 80rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 0rem; }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
  @media only screen and (max-width: 37.5em) {
    .row {
      width: 500px; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) /2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-3 {
    width: calc( 2 * ((100% - 2 * 6rem) / 3) + 6rem); }
  .row .col-2-of-4 {
    width: calc( 2 * ((100% - 3 * 6rem) / 4) + 6rem); }
  .row .col-3-of-4 {
    width: calc( 3 * ((100% - 3 * 6rem) /4) + 2*6rem); }

.manual-header {
  height: 80px; }
  @media only screen and (max-width: 37.5em) {
    .manual-header {
      height: 60px; } }

#chatbowl-site-logo {
  cursor: pointer; }

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 65px 10px 125px; }
  @media (max-width: 800px) {
    .header-container {
      padding: 10px 40px 10px 35px; } }
  @media only screen and (max-width: 37.5em) {
    .header-container {
      padding: 0px 0px 0px 23px; } }
  .header-container > a img {
    max-width: 300px; }
    @media only screen and (max-width: 37.5em) {
      .header-container > a img {
        max-width: 200px; } }

.contact-box {
  background-color: #f08c00;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  padding: 0px 30px;
  height: 60px;
  font-size: 18px;
  border-radius: 15px;
  cursor: pointer; }
  @media only screen and (max-width: 37.5em) {
    .contact-box {
      border-radius: 0px;
      padding: 0px 20px; } }
  @media (max-width: 300px) {
    .contact-box {
      padding: 0px 10px; } }
  .contact-box img {
    width: 23px;
    margin-right: 5px; }
    @media only screen and (max-width: 37.5em) {
      .contact-box img {
        width: 40px;
        margin-right: 0px; } }
    @media (max-width: 300px) {
      .contact-box img {
        width: 30px;
        margin-right: 0px; } }
  @media only screen and (max-width: 37.5em) {
    .contact-box span {
      display: none; } }

.manual-footer__content {
  padding: 0px 130px;
  background-color: #fef3cf;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px; }
  @media only screen and (max-width: 56.25em) {
    .manual-footer__content {
      display: block;
      padding: 25px 0px 0px 20px;
      height: 120px; } }
  @media (max-width: 500px) {
    .manual-footer__content {
      padding: 20px 0px 0px 10px;
      height: 120px; } }
  .manual-footer__content--nav {
    display: block; }
  .manual-footer__content--nav ul {
    list-style: none; }
    .manual-footer__content--nav ul li {
      display: inline;
      margin-right: 40px; }
      @media only screen and (max-width: 37.5em) {
        .manual-footer__content--nav ul li {
          margin-right: 23px; } }
      @media (max-width: 500px) {
        .manual-footer__content--nav ul li {
          margin-right: 15px; } }
      .manual-footer__content--nav ul li a {
        color: #4c4948;
        display: inline-block;
        cursor: pointer; }
        @media only screen and (max-width: 37.5em) {
          .manual-footer__content--nav ul li a {
            font-size: 14px; } }
        @media (max-width: 500px) {
          .manual-footer__content--nav ul li a {
            font-size: 13px; } }
        .manual-footer__content--nav ul li a:hover {
          color: rgba(76, 73, 72, 0.8); }
        @media (max-width: 500px) {
          .manual-footer__content--nav ul li a:last-child {
            margin-top: 10px; } }
  .manual-footer__content--copyright {
    color: #4c4948; }
    @media only screen and (max-width: 56.25em) {
      .manual-footer__content--copyright {
        text-align: center;
        margin-top: 30px; } }
    @media (max-width: 500px) {
      .manual-footer__content--copyright {
        margin-top: 20px;
        font-size: 13px; } }

.body-content {
  opacity: 0;
  visibility: hidden; }

.body-content.on {
  animation: visible_body .5s forwards; }

.loading-main {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; }

.logo_loading.fixed {
  position: fixed;
  opacity: 1;
  animation: none; }

.logo_loading {
  position: fixed;
  opacity: 0;
  animation: logo-fading .7s ease-in 0.2s forwards; }

.logo_loading.out {
  opacity: 1;
  animation: logo-fadeout .3s ease-in forwards; }

.logo_loading.toggle {
  animation: logo-toggle 2.5s infinite forwards; }

.background-animation {
  background-color: #f9be00;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100%);
  position: fixed; }

.background-animation.on {
  animation: loading-bg-fade 1.5s ease-out forwards; }

.contact-box-LP {
  background-image: url("../assets/images/contact-bg.png");
  background-color: #ffffff;
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat; }
  @media (max-width: 700px) {
    .contact-box-LP {
      background-color: #f08c00; } }

.hero-section {
  padding: 5vh 0 10px 0;
  background-color: #f9be00;
  height: calc(100vh - 80px); }
  @media only screen and (max-width: 37.5em) {
    .hero-section {
      height: calc(100vh - 60px); } }
  @media (max-width: 520px) {
    .hero-section {
      padding: 15px 0 10px 0; } }
  .hero-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
    max-height: 730px; }
    .hero-section__content h1 {
      font-size: 5vh;
      text-align: center;
      line-height: 6vh;
      margin-bottom: 3vh;
      letter-spacing: 4px; }
      @media (max-width: 700px) {
        .hero-section__content h1 {
          font-size: 30px;
          line-height: 40px;
          margin-bottom: 15px; } }
      @media (max-width: 370px) {
        .hero-section__content h1 {
          font-size: 28px;
          line-height: 35px;
          margin-bottom: 13px; } }
    .hero-section__content--chatbowl-title {
      font-size: 25px;
      font-weight: bold;
      text-align: center;
      position: relative;
      width: 100%;
      margin-bottom: 5%; }
      @media (max-width: 800px) {
        .hero-section__content--chatbowl-title {
          margin-bottom: 50px; } }
      @media (max-width: 350px) {
        .hero-section__content--chatbowl-title {
          margin-bottom: 32px; } }
      .hero-section__content--chatbowl-title img {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 200px; }
    .hero-section__content--animation-frame {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding-bottom: 20px;
      border-radius: 20px;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-color: #ffffff; }

.phone-top {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%; }

.frame-wrapper {
  max-width: 246px !important;
  min-width: 190px;
  width: 25%;
  position: relative;
  height: 70%;
  max-height: 490px; }
  @media (max-width: 320px) {
    .frame-wrapper {
      min-width: 150px; } }

.hero-img {
  position: absolute;
  width: 16%; }
  @media (max-width: 700px) {
    .hero-img {
      width: 100px; } }
  @media (max-width: 320px) {
    .hero-img {
      width: 75px; } }
  .hero-img--1 {
    left: 10%;
    top: 9%; }
    @media (max-width: 600px) {
      .hero-img--1 {
        top: 27%;
        left: 5%; } }
  .hero-img--2 {
    left: 15%;
    top: 40%; }
    @media (max-width: 600px) {
      .hero-img--2 {
        top: 55%;
        left: 8%; } }
  .hero-img--3 {
    left: 9%;
    bottom: 0px; }
    @media (max-width: 600px) {
      .hero-img--3 {
        bottom: 10px;
        left: 5%; } }
  .hero-img--4 {
    right: 15%;
    top: 8%; }
    @media (max-width: 600px) {
      .hero-img--4 {
        top: 30%;
        right: 4%; } }
  .hero-img--5 {
    right: 10%;
    top: 40%; }
    @media (max-width: 600px) {
      .hero-img--5 {
        top: 57%;
        right: 3%; } }
  .hero-img--6 {
    right: 20%;
    bottom: 10px; }
    @media (max-width: 600px) {
      .hero-img--6 {
        right: 5%;
        bottom: 20px; } }

.section--1 {
  padding-top: 50px;
  background-color: #FFFFFF; }
  .section--1__main-bg {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px; }
    @media (max-width: 600px) {
      .section--1__main-bg {
        margin-top: 25px;
        margin-bottom: 25px; } }
    .section--1__main-bg h5 {
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 23px; }
      @media (max-width: 900px) {
        .section--1__main-bg h5 {
          font-size: 18px;
          margin-bottom: 25px;
          margin-top: 50px;
          line-height: 28px; } }
      @media (max-width: 450px) {
        .section--1__main-bg h5 {
          font-size: 15px;
          margin-bottom: 25px;
          margin-top: 50px;
          line-height: 28px; } }
    .section--1__main-bg h1 {
      font-size: 42px;
      font-weight: bold;
      color: #f08c00;
      text-align: center;
      margin-bottom: 30px;
      line-height: 43px; }
      @media (max-width: 900px) {
        .section--1__main-bg h1 {
          font-size: 24px;
          margin-bottom: 35px; } }
      @media (max-width: 450px) {
        .section--1__main-bg h1 {
          font-size: 22px;
          margin-bottom: 28px;
          line-height: 28px; } }
    .section--1__main-bg > img {
      -o-object-fit: contain;
      object-fit: contain;
      width: 100%; }
      @media (max-width: 900px) {
        .section--1__main-bg > img {
          display: none; } }
    .section--1__main-bg img.sp {
      display: none; }
      @media (max-width: 900px) {
        .section--1__main-bg img.sp {
          -o-object-fit: contain;
          object-fit: contain;
          width: 100%;
          display: block; } }
  .section--1__action-box {
    display: flex;
    justify-content: space-between; }
    @media (max-width: 900px) {
      .section--1__action-box {
        flex-direction: column; } }
    .section--1__action-box__btn {
      text-align: center;
      color: #FFFFFF;
      font-weight: bold;
      border-radius: 10px;
      font-size: 18px;
      width: 48%;
      padding: 20px 0;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s;
      cursor: pointer; }
      @media (max-width: 1000px) {
        .section--1__action-box__btn {
          font-size: 16px; } }
      @media (max-width: 900px) {
        .section--1__action-box__btn {
          width: 100%; } }
      @media (max-width: 380px) {
        .section--1__action-box__btn {
          font-size: 15px; } }
      .section--1__action-box__btn img {
        position: absolute;
        top: -25px;
        left: 23px; }
        @media (max-width: 1000px) {
          .section--1__action-box__btn img {
            left: 15px; } }
        @media (max-width: 370px) {
          .section--1__action-box__btn img {
            width: 60px;
            left: 6px; } }
    .section--1__action-box__btn--1 {
      background-color: #00ab9f; }
      @media (max-width: 480px) {
        .section--1__action-box__btn--1 {
          padding: 10px 0;
          font-size: 15px; } }
      @media (max-width: 480px) {
        .section--1__action-box__btn--1 p {
          width: 155px;
          line-height: 23px;
          font-size: 16px; } }
      @media (max-width: 900px) {
        .section--1__action-box__btn--1 {
          margin-bottom: 32px; } }
      .section--1__action-box__btn--1:hover {
        background-color: rgba(0, 171, 159, 0.8); }
    .section--1__action-box__btn--2 {
      background-color: #0068b6; }
      @media (max-width: 480px) {
        .section--1__action-box__btn--2 {
          padding: 23px 0;
          font-size: 15px; } }
      .section--1__action-box__btn--2:hover {
        background-color: rgba(0, 104, 182, 0.8); }

.main-btn-wrapper {
  background-color: #FFFFFF;
  text-align: center;
  padding: 100px 0; }
  @media (max-width: 600px) {
    .main-btn-wrapper {
      padding: 70px 0; } }
  .main-btn-wrapper a, .main-btn-wrapper link {
    color: #FFFFFF;
    background-color: #f08c00;
    font-size: 18px;
    font-weight: bold;
    width: 387px;
    display: inline-block;
    padding: 20px 0;
    border-radius: 40.5px;
    position: relative;
    transition: all 0.3s; }
    @media (max-width: 450px) {
      .main-btn-wrapper a, .main-btn-wrapper link {
        width: 250px;
        font-size: 16px; } }
    .main-btn-wrapper a:hover, .main-btn-wrapper link:hover {
      background-color: rgba(240, 140, 0, 0.8); }
    .main-btn-wrapper a img, .main-btn-wrapper link img {
      position: absolute;
      right: 25px;
      top: 50%;
      transform: translateY(-50%); }
      @media (max-width: 450px) {
        .main-btn-wrapper a img, .main-btn-wrapper link img {
          width: 12px; } }

.grid-1--item {
  display: flex; }
  .grid-1--item:not(:last-child) {
    margin-bottom: 100px; }
  @media (max-width: 830px) {
    .grid-1--item {
      row-gap: 60px; } }

.section--2 {
  padding: 100px 0;
  background-color: #fef3cf; }
  @media (max-width: 900px) {
    .section--2 {
      padding: 45px 0 53px 0; } }
  .section--2__grid-1--sp {
    display: none; }
    @media (max-width: 600px) {
      .section--2__grid-1--sp {
        display: block; } }
    .section--2__grid-1--sp--item:not(:last-child) {
      margin-bottom: 68px; }
      @media (max-width: 450px) {
        .section--2__grid-1--sp--item:not(:last-child) {
          margin-bottom: 42px; } }
    .section--2__grid-1--sp--item h3 {
      color: #f08c00;
      font-size: 26px;
      font-weight: 700;
      line-height: 34px;
      margin-bottom: 20px; }
      @media (max-width: 450px) {
        .section--2__grid-1--sp--item h3 {
          font-size: 22px;
          line-height: 28px;
          margin-bottom: 13px; } }
    .section--2__grid-1--sp--item p {
      font-size: 16px;
      font-weight: bold;
      line-height: 26px;
      margin-bottom: 22px; }
      @media (max-width: 450px) {
        .section--2__grid-1--sp--item p {
          font-size: 15px;
          line-height: 23px;
          margin-bottom: 15px; } }
    .section--2__grid-1--sp--item img {
      width: 100%; }
  .section--2__grid {
    margin: 100px 0; }
    @media (max-width: 600px) {
      .section--2__grid {
        margin: 60px 0; } }
  .section--2__grid-1 {
    margin: 100px 0; }
    @media (max-width: 830px) {
      .section--2__grid-1 {
        row-gap: 60px; } }
    @media (max-width: 600px) {
      .section--2__grid-1 {
        display: none; } }
    .section--2__grid-1--item {
      flex: 0 1 50%; }
      .section--2__grid-1--item h2 {
        color: #f08c00;
        font-size: 34px;
        font-weight: 700;
        line-height: 44px;
        margin-bottom: 23px; }
        @media (max-width: 1120px) {
          .section--2__grid-1--item h2 {
            font-size: 30px;
            line-height: 32px;
            margin-bottom: 16px; } }
        @media (max-width: 830px) {
          .section--2__grid-1--item h2 {
            font-size: 23px;
            margin-bottom: 13px; } }
      .section--2__grid-1--item p {
        font-size: 17px;
        font-weight: bold;
        line-height: 28px; }
        @media (max-width: 1120px) {
          .section--2__grid-1--item p {
            font-size: 16px;
            line-height: 23px; } }
      .section--2__grid-1--item img {
        width: 100%; }
    .section--2__grid-1--item-1, .section--2__grid-1--item-5 {
      padding-right: 53px; }
      @media (max-width: 830px) {
        .section--2__grid-1--item-1, .section--2__grid-1--item-5 {
          padding-right: 35px; } }
    .section--2__grid-1--item-4, .section--2__grid-1--item-8 {
      padding-left: 53px; }
      @media (max-width: 830px) {
        .section--2__grid-1--item-4, .section--2__grid-1--item-8 {
          padding-left: 35px; } }
  .section--2__grid-2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px; }
    @media (max-width: 600px) {
      .section--2__grid-2 {
        flex-direction: column;
        margin-bottom: 60px; } }
    .section--2__grid-2--item {
      flex: 0 1 calc(33.3% - 20px);
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      @media (max-width: 600px) {
        .section--2__grid-2--item {
          width: 100%; }
          .section--2__grid-2--item:not(:last-child) {
            margin-bottom: 68px; } }
    @media (max-width: 600px) and (max-width: 450px) {
      .section--2__grid-2--item:not(:last-child) {
        margin-bottom: 42px; } }
      .section--2__grid-2--item h4 {
        color: #f08c00;
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 20px; }
        @media (max-width: 1100px) {
          .section--2__grid-2--item h4 {
            font-size: 23px;
            margin-bottom: 16px; } }
        @media (max-width: 800px) {
          .section--2__grid-2--item h4 {
            font-size: 18px;
            margin-bottom: 13px; } }
        @media (max-width: 600px) {
          .section--2__grid-2--item h4 {
            font-size: 26px;
            margin-bottom: 20px;
            line-height: 34px; } }
        @media (max-width: 450px) {
          .section--2__grid-2--item h4 {
            font-size: 22px;
            line-height: 28px;
            margin-bottom: 13px; } }
      .section--2__grid-2--item p {
        font-size: 16px;
        font-weight: bold;
        line-height: 26px;
        padding-bottom: 15px; }
        @media (max-width: 800px) {
          .section--2__grid-2--item p {
            font-size: 14px; } }
        @media (max-width: 600px) {
          .section--2__grid-2--item p {
            font-size: 16px;
            line-height: 26px;
            margin-bottom: 22px; } }
        @media (max-width: 450px) {
          .section--2__grid-2--item p {
            font-size: 15px;
            line-height: 23px;
            margin-bottom: 15px; } }
      .section--2__grid-2--item img {
        max-width: 100%;
        display: inline-block;
        align-self: flex-end; }
        @media (max-width: 600px) {
          .section--2__grid-2--item img {
            width: 100%;
            -o-object-fit: contain;
            object-fit: contain;
            height: auto; } }

.section--3 {
  margin-bottom: 100px; }
  @media (max-width: 600px) {
    .section--3 {
      margin-bottom: 80px; } }
  .section--3__process {
    margin: 100px 0;
    display: flex;
    justify-content: space-between; }
    @media (max-width: 600px) {
      .section--3__process {
        margin: 60px 0;
        flex-direction: column;
        justify-content: center;
        align-items: center; } }
    .section--3__process--item {
      flex: 0 1 calc(25% - 20px);
      border: 4px solid #f08c00;
      border-radius: 20px;
      text-align: center;
      padding: 35px 20px 20px 20px;
      position: relative; }
      @media (max-width: 1000px) {
        .section--3__process--item {
          padding: 35px 10px 25px 10px; } }
      @media (max-width: 600px) {
        .section--3__process--item {
          width: 250px; }
          .section--3__process--item:not(:last-child) {
            margin-bottom: 68px; } }
      .section--3__process--item h6 {
        font-size: 18px;
        margin-bottom: 20px; }
        @media (max-width: 850px) {
          .section--3__process--item h6 {
            font-size: 16px;
            margin-bottom: 16px; } }
      .section--3__process--item p {
        font-size: 16px;
        line-height: 24px;
        text-align: left; }
        @media (max-width: 850px) {
          .section--3__process--item p {
            font-size: 14px; } }
      .section--3__process--item::before {
        content: "";
        position: absolute;
        background-color: #FFFFFF;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        left: 50%;
        transform: translateX(-50%);
        top: -30px; }
      .section--3__process--item::after {
        content: "1";
        position: absolute;
        background-color: #f08c00;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: sans-serif;
        font-size: 20px;
        font-weight: bold;
        color: #FFFFFF;
        left: 50%;
        transform: translateX(-50%);
        top: -22px; }
    .section--3__process--item--2::after {
      content: "2"; }
    .section--3__process--item--3::after {
      content: "3"; }
    .section--3__process--item--4::after {
      content: "4"; }

.section--4__content {
  margin: 100px 0; }
  @media (max-width: 600px) {
    .section--4__content {
      margin: 63px 0; } }
  .section--4__content--qa-item {
    background-color: #fce8cc;
    border-radius: 20px;
    padding: 35px 50px 20px 95px; }
    @media (max-width: 900px) {
      .section--4__content--qa-item {
        padding: 35px 30px 20px 85px; } }
    @media (max-width: 600px) {
      .section--4__content--qa-item {
        padding: 35px 14px 20px 76px; } }
    .section--4__content--qa-item:not(:last-child) {
      margin-bottom: 40px; }
    .section--4__content--qa-item--q {
      font-size: 18px;
      margin-bottom: 50px;
      font-weight: bold;
      position: relative;
      line-height: 23px; }
      @media (max-width: 900px) {
        .section--4__content--qa-item--q {
          font-size: 16px;
          margin-bottom: 50px; } }
      @media (max-width: 600px) {
        .section--4__content--qa-item--q {
          font-size: 15px;
          margin-bottom: 22px; } }
      .section--4__content--qa-item--q::before {
        content: "Q";
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #f08c00;
        color: #FFFFFF;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        font-family: PierSans, sans-serif;
        left: -60px;
        top: -10px; }
      .section--4__content--qa-item--q::after {
        content: "";
        position: absolute;
        height: 16px;
        width: 2px;
        background-color: #f08c00;
        left: -40px;
        top: 35px; }
    .section--4__content--qa-item--a {
      font-size: 16px;
      font-weight: bold;
      line-height: 22px;
      position: relative; }
      @media (max-width: 900px) {
        .section--4__content--qa-item--a {
          font-size: 15px; } }
      @media (max-width: 600px) {
        .section--4__content--qa-item--a {
          font-size: 14px; } }
      .section--4__content--qa-item--a::before {
        content: "A";
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #FFFFFF;
        color: #f08c00;
        border: 2px solid #f08c00;
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        font-family: PierSans, sans-serif;
        left: -60px;
        top: -10px; }

.detail-section {
  background-color: #FFFFFF; }
  .detail-section__content {
    background-color: #fce8cc;
    padding-top: 50px;
    padding-bottom: 45px;
    border-radius: 0px 0px 20px 20px; }
    @media (max-width: 600px) {
      .detail-section__content {
        padding-top: 40px; } }
    .detail-section__content > p {
      font-size: 18px;
      font-weight: bold;
      line-height: 30px;
      margin-bottom: 40px; }
      @media (max-width: 600px) {
        .detail-section__content > p {
          font-size: 16px;
          font-weight: bold;
          line-height: 27px;
          margin-bottom: 20px; } }
    .detail-section__content--header {
      position: relative;
      padding: 23px 0;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      display: flex;
      justify-content: center;
      align-items: center; }
      @media (max-width: 600px) {
        .detail-section__content--header {
          padding: 13px 0; } }
      .detail-section__content--header p {
        font-size: 28px;
        font-weight: bold;
        color: #FFFFFF;
        text-align: center; }
        @media (max-width: 900px) {
          .detail-section__content--header p {
            font-size: 23px; } }
        @media (max-width: 600px) {
          .detail-section__content--header p {
            width: 197px;
            line-height: 28px;
            font-size: 20px; } }
      .detail-section__content--header img {
        position: absolute;
        bottom: 0;
        left: 52px; }
        @media (max-width: 900px) {
          .detail-section__content--header img {
            left: 30px; } }
        @media (max-width: 400px) {
          .detail-section__content--header img {
            left: 9px; } }
        @media (max-width: 320px) {
          .detail-section__content--header img {
            left: -10px; } }
    .detail-section__content--header--1 {
      background-color: #00ab9f; }
    .detail-section__content--header--2 {
      background-color: #0068b6; }
    .detail-section__content--step--1 {
      background-color: #d9f2f1; }
    .detail-section__content--step--2 {
      background-color: #d9e8f4; }
    .detail-section__content--step {
      display: flex;
      justify-content: space-between; }
      @media (max-width: 600px) {
        .detail-section__content--step {
          flex-direction: column; } }
      .detail-section__content--step--item--1 h5 {
        color: #00ab9f; }
      .detail-section__content--step--item--2 h5 {
        color: #0068b6; }
      .detail-section__content--step--item {
        flex: 0 1 calc(33.3% - 20px);
        background-color: #FFFFFF;
        border-radius: 20px;
        padding: 40px 30px; }
        @media (max-width: 900px) {
          .detail-section__content--step--item {
            padding: 35px 20px; } }
        @media (max-width: 600px) {
          .detail-section__content--step--item {
            width: 100%; }
            .detail-section__content--step--item:not(:last-child) {
              margin-bottom: 40px; } }
        .detail-section__content--step--item h5 {
          font-size: 26px;
          margin-bottom: 30px;
          line-height: 32px; }
          @media (max-width: 900px) {
            .detail-section__content--step--item h5 {
              font-size: 21px;
              margin-bottom: 20px; } }
          @media (max-width: 600px) {
            .detail-section__content--step--item h5 {
              margin-bottom: 10px; } }
        .detail-section__content--step--item p {
          font-size: 16px;
          line-height: 26px;
          font-weight: bold; }
          @media (max-width: 600px) {
            .detail-section__content--step--item p {
              font-size: 15px; } }

.contact-section {
  background-color: #fef3cf;
  padding: 80px 0; }
  @media (max-width: 600px) {
    .contact-section {
      padding: 60px 0 20px 0px; } }

.scroll-animation {
  opacity: 1; }

.section--hidden {
  opacity: 0;
  transform: translateY(100px); }

.section-content {
  margin-bottom: 60px;
  height: 100%; }
  .section-content__title-box {
    position: relative; }
    .section-content__title-box img {
      width: 100%;
      -o-object-fit: contain;
      object-fit: contain;
      height: auto; }
    .section-content__title-box.section-1::before {
      content: 'Chatbowl とは';
      background-color: #FFFFFF; }
    .section-content__title-box.section-2::before {
      content: 'Chatbowl の特徴';
      background-color: #fef3cf; }
      @media (max-width: 600px) {
        .section-content__title-box.section-2::before {
          width: 210px; } }
    .section-content__title-box.section-3::before {
      content: 'Chatbowlのはじめ方';
      background-color: #FFFFFF; }
      @media (max-width: 600px) {
        .section-content__title-box.section-3::before {
          width: 245px; } }
    .section-content__title-box.section-4::before {
      content: 'よくあるご質問';
      background-color: #FFFFFF; }
      @media (max-width: 600px) {
        .section-content__title-box.section-4::before {
          width: 185px; } }
    .section-content__title-box::before {
      content: 'お問い合わせ';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      background-color: #fef3cf;
      font-size: 30px;
      font-weight: bold;
      top: -14px;
      padding: 0 32px; }
      @media (max-width: 820px) {
        .section-content__title-box::before {
          font-size: 22px;
          top: -10px;
          padding: 0 20px; } }
      @media (max-width: 600px) {
        .section-content__title-box::before {
          font-size: 22px;
          top: -5px;
          padding: 0 7px;
          width: 190px;
          text-align: center; } }
  .section-content__bottom-bg {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    height: auto; }
    @media (max-width: 900px) {
      .section-content__bottom-bg {
        display: none; } }

.chatbowl-lp-contact-form {
  margin-top: 70px;
  margin-bottom: 45px; }
  @media (max-width: 600px) {
    .chatbowl-lp-contact-form {
      margin-top: 50px;
      margin-bottom: 20px; } }
  .chatbowl-lp-contact-form__controller {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px; }
    @media (max-width: 600px) {
      .chatbowl-lp-contact-form__controller {
        margin-bottom: 25px; } }
    .chatbowl-lp-contact-form__controller--errors-wrapper {
      margin-top: 5px;
      display: none; }
    .chatbowl-lp-contact-form__controller--errors {
      font-size: 14px;
      color: #f59d00; }
    .chatbowl-lp-contact-form__controller--title {
      margin-bottom: 15px; }
      @media (max-width: 600px) {
        .chatbowl-lp-contact-form__controller--title {
          margin-bottom: 12px; } }
      .chatbowl-lp-contact-form__controller--title label {
        display: inline;
        font-size: 16px;
        font-weight: bold; }
        @media (max-width: 600px) {
          .chatbowl-lp-contact-form__controller--title label {
            font-size: 15px; } }
      .chatbowl-lp-contact-form__controller--title span {
        font-size: 14px;
        font-weight: bold;
        color: #ffffff;
        background-color: #f59d00;
        margin-left: 8px;
        padding: 3px 8px;
        border-radius: 5px; }
        @media (max-width: 600px) {
          .chatbowl-lp-contact-form__controller--title span {
            font-size: 13px;
            padding: 3px 7px;
            margin-left: 5px; } }
    .chatbowl-lp-contact-form__controller input,
    .chatbowl-lp-contact-form__controller textarea {
      min-height: 53px;
      border: 1px solid #494949;
      border-radius: 10px;
      padding: 0 10px;
      font-size: 18px;
      color: #5f5b5a;
      transition: all .1s; }
      @media (max-width: 600px) {
        .chatbowl-lp-contact-form__controller input,
        .chatbowl-lp-contact-form__controller textarea {
          min-height: 40px;
          font-size: 14px; } }
      .chatbowl-lp-contact-form__controller input:focus,
      .chatbowl-lp-contact-form__controller textarea:focus {
        border-radius: 10px;
        outline: none;
        border: 1px solid #f59d00; }
    .chatbowl-lp-contact-form__controller textarea {
      padding-top: 10px;
      padding-bottom: 10px; }
  .chatbowl-lp-contact-form__privacy-check {
    text-align: center;
    margin-bottom: 60px;
    display: block; }
    @media (max-width: 600px) {
      .chatbowl-lp-contact-form__privacy-check {
        margin-bottom: 30px; } }
    .chatbowl-lp-contact-form__privacy-check label {
      font-size: 14px;
      font-weight: bold;
      margin-left: 5px; }
      @media (max-width: 350px) {
        .chatbowl-lp-contact-form__privacy-check label {
          font-size: 13px; } }
      .chatbowl-lp-contact-form__privacy-check label a {
        color: inherit;
        border-bottom: 1px solid #5f5b5a; }

.chatbowl-lp-contact-form__controller.errors input, .chatbowl-lp-contact-form__controller.errors textarea {
  border: 1px solid #f59d00; }

.chatbowl-lp-contact-form__controller.errors .chatbowl-lp-contact-form__controller--errors-wrapper {
  animation: displaySmooth 0.5s forwards;
  display: block; }

@keyframes displaySmooth {
  0% {
    display: none;
    margin-top: -30px; }
  50% {
    display: block;
    opacity: 0.5; }
  100% {
    display: block;
    transform: translateY(0px); } }

.chatbowl-contact-completed {
  height: 300px;
  padding: 70px 30px 70px 30px;
  display: none;
  font-weight: bold;
  line-height: 28px; }
  @media (max-width: 600px) {
    .chatbowl-contact-completed {
      padding: 70px 0px 70px 0px;
      font-size: 15px; } }

.chatbowl-manual-panel {
  background-color: #00ab9f;
  height: 280px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center; }
  .chatbowl-manual-panel p {
    color: #FFFFFF;
    font-size: 4rem;
    font-weight: 700;
    margin-top: 20px; }
    @media (max-width: 500px) {
      .chatbowl-manual-panel p {
        font-size: 3rem; } }

.chatbowl-manual-nav-panel__content {
  padding: 40px 0; }
  .chatbowl-manual-nav-panel__content--nav {
    display: flex;
    margin-top: 40px;
    justify-content: space-between;
    margin-bottom: 40px; }
    @media (max-width: 600px) {
      .chatbowl-manual-nav-panel__content--nav {
        flex-wrap: wrap;
        margin-bottom: 0px; } }
    .chatbowl-manual-nav-panel__content--nav--item {
      font-weight: bold;
      flex: 0 1 calc(25%);
      text-align: center;
      line-height: 25px;
      transition: all 0.1s;
      height: 70px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer; }
      .chatbowl-manual-nav-panel__content--nav--item:hover {
        background-color: #e6e6e6; }
      @media (max-width: 600px) {
        .chatbowl-manual-nav-panel__content--nav--item {
          flex: 0 1 calc(50%);
          margin-bottom: 15px;
          font-size: 14px; } }
      @media (max-width: 400px) {
        .chatbowl-manual-nav-panel__content--nav--item {
          flex: 0 1 calc(50%);
          margin-bottom: 15px;
          font-size: 13px; } }
      .chatbowl-manual-nav-panel__content--nav--item:not(:last-child) {
        border-left: 2px solid #a6a4a4; }
      .chatbowl-manual-nav-panel__content--nav--item:last-child {
        border-right: 2px solid #a6a4a4;
        border-left: 2px solid #a6a4a4; }
    @media (max-width: 600px) {
      .chatbowl-manual-nav-panel__content--nav--item--2 {
        border-right: 2px solid #a6a4a4;
        border-left: 2px solid #a6a4a4; } }
    .chatbowl-manual-nav-panel__content--nav--item.active {
      padding: 0 10px;
      cursor: inherit; }
      .chatbowl-manual-nav-panel__content--nav--item.active:hover {
        background-color: inherit; }
    .chatbowl-manual-nav-panel__content--nav--item.active span {
      background-color: #f08c00;
      color: #FFFFFF;
      display: inline-block;
      width: 100%;
      height: 100%;
      border-radius: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 70px; }
  .chatbowl-manual-nav-panel__content--descript {
    background-color: #e6e6e6;
    padding: 25px 15px 25px 35px;
    border-radius: 20px;
    margin-bottom: 60px; }
    @media (max-width: 600px) {
      .chatbowl-manual-nav-panel__content--descript {
        margin-bottom: 50px;
        padding: 25px 15px 25px 20px; } }
    .chatbowl-manual-nav-panel__content--descript h2 {
      font-size: 24px;
      margin-bottom: 13px; }
    .chatbowl-manual-nav-panel__content--descript p {
      margin-bottom: 0 !important;
      line-height: 23px; }

.chatbowl-manual-title {
  font-size: 18px;
  line-height: 28px; }

.chatbowl-guide-step {
  margin-bottom: 100px; }
  @media (max-width: 600px) {
    .chatbowl-guide-step {
      margin-bottom: 60px; } }
  .chatbowl-guide-step h2 {
    font-size: 32px;
    margin-bottom: 16px; }
    @media (max-width: 600px) {
      .chatbowl-guide-step h2 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 23px; } }
  .chatbowl-guide-step p {
    line-height: 23px;
    margin-bottom: 40px; }
    @media (max-width: 600px) {
      .chatbowl-guide-step p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 23px; } }
  .chatbowl-guide-step img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: auto; }

.bottom-box {
  margin-bottom: 150px; }
  @media (max-width: 600px) {
    .bottom-box {
      margin-bottom: 100px; } }

.bottom-box-action {
  margin-top: 100px; }
  @media (max-width: 600px) {
    .bottom-box-action {
      margin-top: 30px; } }

.guide-content-section {
  margin-bottom: 200px;
  display: none; }
  @media (max-width: 600px) {
    .guide-content-section {
      margin-bottom: 100px; } }
  .guide-content-section__guide-step {
    margin-bottom: 100px; }
    @media (max-width: 600px) {
      .guide-content-section__guide-step {
        margin-bottom: 60px; } }
    .guide-content-section__guide-step--item {
      margin-bottom: 35px; }
      @media (max-width: 600px) {
        .guide-content-section__guide-step--item {
          margin-bottom: 20px; } }
      .guide-content-section__guide-step--item h4 {
        font-size: 24px;
        font-weight: 700;
        padding-left: 50px;
        position: relative;
        margin-bottom: 14px; }
        @media (max-width: 600px) {
          .guide-content-section__guide-step--item h4 {
            font-size: 16px;
            margin-bottom: 7px;
            padding-left: 25px; } }
        .guide-content-section__guide-step--item h4::after {
          position: absolute;
          content: "";
          width: 45px;
          height: 2px;
          background-color: #000000;
          left: 0;
          top: 50%; }
          @media (max-width: 600px) {
            .guide-content-section__guide-step--item h4::after {
              width: 20px; } }
      .guide-content-section__guide-step--item p {
        line-height: 30px; }
        @media (max-width: 600px) {
          .guide-content-section__guide-step--item p {
            font-size: 14px; } }

.guide-content-section.active {
  display: block; }

.section-top-bg {
  display: block; }
  @media (max-width: 900px) {
    .section-top-bg {
      display: none; } }

.section-top-bg-sp {
  display: none; }
  @media (max-width: 900px) {
    .section-top-bg-sp {
      display: block; } }

.section-content__bottom-bg-sp {
  display: none; }
  @media (max-width: 900px) {
    .section-content__bottom-bg-sp {
      width: 100%;
      display: block; } }

.chatbowl-privacy__title {
  margin-top: 100px;
  margin-bottom: 30px; }
  .chatbowl-privacy__title h2 {
    font-size: 28px;
    margin-bottom: 25px;
    border-bottom: 5px solid #5f5b59;
    display: inline-block;
    padding-bottom: 10px; }
    @media (max-width: 600px) {
      .chatbowl-privacy__title h2 {
        font-size: 22px;
        border-bottom: 3px solid #5f5b59; } }
  .chatbowl-privacy__title p {
    font-size: 16px;
    line-height: 25px; }
    @media (max-width: 600px) {
      .chatbowl-privacy__title p {
        font-size: 14px;
        line-height: 23px; } }

.chatbowl-privacy__content {
  margin-bottom: 25px; }
  .chatbowl-privacy__content h3 {
    margin-bottom: 15px;
    line-height: 23px; }
  .chatbowl-privacy__content p {
    line-height: 23px; }
    @media (max-width: 600px) {
      .chatbowl-privacy__content p {
        font-size: 14px; } }
  .chatbowl-privacy__content--sub {
    padding-left: 20px; }
  .chatbowl-privacy__content--sub2 {
    padding-left: 66px; }
    @media (max-width: 600px) {
      .chatbowl-privacy__content--sub2 {
        padding-left: 40px; } }
  .chatbowl-privacy__content--sub3 {
    padding-left: 75px; }
    @media (max-width: 600px) {
      .chatbowl-privacy__content--sub3 {
        padding-left: 65px; } }

.privacy-item {
  display: flex; }
  .privacy-item > p {
    flex-basis: 62px;
    text-align: center;
    margin-right: 4px; }
    @media (max-width: 600px) {
      .privacy-item > p {
        flex-basis: 40px; } }
  .privacy-item__content {
    flex: 1; }

.padding-left-20 {
  padding-left: 30px; }

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