@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@media all and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  bottom: 0;
  overflow: hidden;
  width: 16.25rem;
  height: 100%;
  color: #222;
  background-color: #EBEBEB;
}

.drawer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.75rem;
  display: block;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  text-decoration: none;
  color: #222;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.drawer-menu-item {
  font-size: 1rem;
  display: block;
  padding: 0.75rem;
  text-decoration: none;
  color: #222;
}

.drawer-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*\
    Top
\*!------------------------------------*/
.drawer--top .drawer-nav {
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--top.drawer-open .drawer-nav {
  top: 0;
}

.drawer--top .drawer-hamburger,
.drawer--top.drawer-open .drawer-hamburger {
  right: 0;
}

/*!------------------------------------*\
    Left
\*!------------------------------------*/
.drawer--left .drawer-nav {
  left: -16.25rem;
  transition: left 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
}

.drawer--left.drawer-open .drawer-hamburger {
  left: 16.25rem;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -16.25rem;
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 16.25rem;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 0;
  display: block;
  box-sizing: content-box;
  width: 32px;
  padding: 0;
  padding-top: 25px;
  padding-right: 22px;
  padding-bottom: 30px;
  padding-left: 0.75rem;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2.5px;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #222;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -8px;
  left: 0;
  content: " ";
}

.drawer-hamburger-icon:after {
  top: 8px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Sidebar
\*!------------------------------------*/
.drawer--sidebar {
  background-color: #fff;
}

.drawer--sidebar .drawer-contents {
  background-color: #fff;
}

@media (min-width: 64em) {
  .drawer--sidebar .drawer-hamburger {
    display: none;
    visibility: hidden;
  }

  .drawer--sidebar .drawer-nav {
    display: block;
    transform: none;
    position: fixed;
    width: 12.5rem;
    height: 100%;
  }

  /*! Left */
  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd;
  }

  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem;
  }

  /*! Right */
  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd;
  }

  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem;
  }

  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 48rem;
  }
}
@media (min-width: 75em) {
  .drawer--sidebar .drawer-nav {
    width: 16.25rem;
  }

  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 16.25rem;
  }

  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 16.25rem;
  }

  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 60rem;
  }
}
/*!------------------------------------*\
    Navbar
\*!------------------------------------*/
.drawer--navbarTopGutter {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-navbar-header {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
}

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  box-sizing: border-box;
  width: 100%;
  height: 3.75rem;
  padding: 0 0.75rem;
  text-align: center;
}

.drawer-navbar .drawer-brand {
  line-height: 3.75rem;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-nav {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem;
}

@media (min-width: 64em) {
  .drawer-navbar {
    height: 3.75rem;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }

  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
  }

  .drawer-navbar .drawer-menu--right {
    float: right;
  }

  .drawer-navbar .drawer-menu li {
    float: left;
  }

  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .drawer-navbar .drawer-hamburger {
    display: none;
  }

  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: 0;
    transform: translate3d(0, 0, 0);
  }

  .drawer-navbar .drawer-menu {
    padding: 0;
  }

  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 16.25rem;
    border: 1px solid #ddd;
  }

  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: 0.75rem;
  }
}
/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/
.drawer-dropdown-menu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.drawer-dropdown-menu > li {
  width: 100%;
  list-style: none;
}

.drawer-dropdown-menu-item {
  line-height: 3.75rem;
  display: block;
  padding: 0;
  padding-right: 0.75rem;
  padding-left: 1.5rem;
  text-decoration: none;
  color: #222;
}

.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! open */
.drawer-dropdown.open > .drawer-dropdown-menu {
  display: block;
}

/*! drawer-caret */
.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/*! open */
.drawer-dropdown.open .drawer-caret {
  transform: rotate(180deg);
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 64em) {
  .drawer-container {
    max-width: 60rem;
  }
}
@media (min-width: 75em) {
  .drawer-container {
    max-width: 70rem;
  }
}
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

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

body {
  margin: 0;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #222;
}
@media all and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

.suck {
  width: 100%;
  height: auto;
  display: block;
}

.container-l {
  max-width: 1100px;
  width: 100%;
}
.container-l, .container-m, .container-s {
  margin: auto;
}
@media all and (max-width: 768px) {
  .container-l, .container-m, .container-s {
    padding: 0 15px;
  }
}

.row {
  flex-wrap: wrap;
  display: flex;
}

.icon-tel {
  color: #fff;
  background-image: url(../images/icon/icon-tel.svg);
  background-position: center;
  background-repeat: no-repeat;
}
@media all and (max-width: 768px) {
  .icon-tel {
    background-size: 18px;
  }
}
.icon-tel-number {
  font-size: 42px;
}
.icon-app {
  background-image: url(../images/icon/icon-tel.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fb950b;
  border-radius: 100px;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .icon-app {
    background-image: url(../images/icon/icon-tel.svg);
    background-size: 24px;
  }
}
.icon-right {
  background-image: url(../images/icon/icon-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
}

.front-cv {
  padding: 40px 0;
  margin-bottom: 40px;
  background-color: #F7F7F7;
}
.front-cv .cv-row {
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}
.front-cv .cv-col {
  flex: 0 0 50%;
  text-align: center;
}
@media all and (max-width: 768px) {
  .front-cv .cv-col {
    flex: 0 0 100%;
  }
}
.front-cv .cv-headline {
  font-size: 34px;
}
@media all and (max-width: 768px) {
  .front-cv .cv-headline {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.front-cv .icon-right {
  width: 50px;
  height: 50px;
  vertical-align: text-bottom;
}
@media all and (max-width: 768px) {
  .front-cv .icon-right {
    display: none;
  }
}

.site-header {
  width: 100%;
  padding: 35px 0;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media all and (max-width: 768px) {
  .site-header {
    padding: 12px 0;
  }
}

.header-row {
  justify-content: space-between;
}
@media all and (max-width: 768px) {
  .header-row {
    justify-content: center;
  }
}
.header-branding {
  margin-top: 26px;
}
@media all and (max-width: 768px) {
  .header-branding {
    margin: 0;
  }
}
.header-logo {
  width: 480px;
  height: auto;
}
@media all and (max-width: 768px) {
  .header-logo {
    width: 280px;
  }
}
.header-tel a {
  color: #fff;
  line-height: 1;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  display: flex;
}
@media all and (max-width: 768px) {
  .header-tel {
    display: none;
  }
}
.header-tel-col:first-of-type {
  padding-right: 10px;
}
@media all and (max-width: 768px) {
  .header-tel-col:first-of-type {
    padding-right: 5px;
  }
}
.header-tel .icon {
  width: 76px;
  height: 76px;
  background-color: #F0A641;
  border-radius: 76px;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .header-tel .icon {
    width: 36px;
    height: 36px;
  }
}
.header-tel-number {
  font-size: 44px;
  font-weight: 700;
  text-align: right;
  text-shadow: 0 0 10px #222;
}
@media all and (max-width: 768px) {
  .header-tel-number {
    font-size: 23px;
  }
}
.header-tel p {
  margin: 12px 0 10px;
  text-shadow: 0 0 10px #222;
}
@media all and (max-width: 768px) {
  .header-tel p {
    margin: 5px 0 0;
    font-size: 13px;
  }
}
.header-tel-status {
  text-shadow: none;
}
@media all and (max-width: 768px) {
  .header-tel-status {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .header-nav {
    display: none;
  }
}

.nav-ul {
  padding: 0;
  margin: 20px 0 0;
  margin-left: -10px;
  margin-right: -10px;
  list-style: none;
}
.nav-ul li {
  padding: 0 10px;
  display: inline-block;
}
.nav-ul a {
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 0 10px #222;
}

.status-label {
  padding: 2px 10px;
  margin-right: 10px;
  font-size: 14px;
  color: #F0A641;
  background-color: #fff;
  border-radius: 50px;
}
@media all and (max-width: 768px) {
  .status-label {
    padding: 4px 8px;
    margin-right: 8px;
    font-size: 12px;
    display: inline-block;
  }
}

.site-footer {
  padding: 100px 0;
  background-color: #F7F7F7;
}
@media all and (max-width: 768px) {
  .site-footer {
    padding: 20px 0;
  }
}

.footer-inner {
  padding: 50px;
  background-color: #fff;
}
@media all and (max-width: 768px) {
  .footer-inner {
    padding: 20px;
  }
}
.footer .row {
  align-items: flex-end;
}
.footer-col {
  flex: 0 0 50%;
}
@media all and (max-width: 768px) {
  .footer-col {
    flex: 0 0 100%;
  }
}
@media all and (max-width: 768px) {
  .footer-col:first-of-type .site-info {
    display: none;
  }
}
.footer-col:last-of-type .site-info {
  margin-top: 40px;
  font-size: 12px;
  text-align: center;
}
.footer-logo {
  width: 300px;
  margin-bottom: 30px;
}
@media all and (max-width: 768px) {
  .footer-logo {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}
.footer-tel {
  margin-bottom: 50px;
  color: #222;
  line-height: 1;
}
@media all and (max-width: 768px) {
  .footer-tel {
    margin-bottom: 30px;
  }
}
.footer-tel a {
  align-items: center;
  flex-wrap: wrap;
  display: flex;
}
.footer-tel-col:first-of-type {
  padding-right: 10px;
}
@media all and (max-width: 768px) {
  .footer-tel-col:first-of-type {
    display: none;
  }
}
.footer-tel .icon {
  width: 76px;
  height: 76px;
  background-color: #F0A641;
  border-radius: 76px;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .footer-tel .icon {
    width: 54px;
    height: 54px;
  }
}
.footer-tel-number {
  font-size: 44px;
  font-weight: 700;
  text-align: right;
}
.footer-tel p {
  margin: 12px 0 10px;
}
.footer-tel-status {
  color: #fff;
  background-color: #F0A641;
  text-shadow: none;
}
.footer-headline {
  margin-bottom: 10px;
}

.clinic-ul {
  margin-bottom: 40px;
}
.clinic-ul li {
  font-size: 16px;
}

.front-section {
  padding: 60px 0;
}
@media all and (max-width: 768px) {
  .front-section {
    padding: 30px 0;
  }
}
.front-section-headline {
  margin-bottom: 50px;
  font-size: 58px;
  font-weight: 700;
  text-align: center;
}
@media all and (max-width: 768px) {
  .front-section-headline {
    font-size: 34px;
  }
}
.front-section-headline span {
  color: #603813;
}
.front-section-headline:after {
  content: "";
  width: 80px;
  margin: auto;
  border-bottom: 5px solid #603813;
  display: table;
}
.front-section-description {
  margin-bottom: 50px;
  text-align: center;
}
@media all and (max-width: 768px) {
  .front-section-description {
    padding: 0 15px;
  }
}
@media all and (max-width: 768px) {
  .front-section-description br {
    display: none;
  }
}

.top {
  background-image: url(../images/main-image.jpg);
  background-position: top -100px center;
  background-repeat: no-repeat;
}
@media all and (max-width: 768px) {
  .top {
    background-image: url(../images/main-image-sp.jpg);
    background-size: contain;
    background-position: top 80px center;
  }
}
.top-content {
  height: 990px;
  position: relative;
  display: flex;
}
@media all and (max-width: 768px) {
  .top-content {
    height: 600px;
  }
}
.top-headline {
  position: absolute;
  bottom: 130px;
}
@media all and (max-width: 768px) {
  .top-headline {
    bottom: 0;
  }
}
.top-headline h1 {
  margin: 0 0 20px;
  font-size: 50px;
  font-weight: 700;
}
@media all and (max-width: 768px) {
  .top-headline h1 {
    margin-left: -15px;
    font-size: 24px;
  }
}
.top-headline h1 span {
  padding: 5px 20px;
  margin-bottom: 15px;
  background-color: #fff;
  display: block;
}
@media all and (max-width: 768px) {
  .top-headline h1 span {
    margin-bottom: 12px;
    display: inline-block;
  }
}
.top-headline > p {
  margin: 0 0 20px;
  font-size: 20px;
  text-align: center;
}
@media all and (max-width: 768px) {
  .top-headline > p {
    font-size: 16px;
  }
}

.app-btn {
  cursor: pointer;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .app-btn {
    display: block;
  }
}
.app-btn a {
  padding: 10px 30px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background-color: #F0A641;
  box-shadow: 0 8px 0 #C98A35;
  align-items: center;
  display: flex;
}
@media all and (max-width: 768px) {
  .app-btn a {
    padding: 10px 15px;
  }
}
.app-btn .icon {
  width: 75px;
  height: 75px;
}
@media all and (max-width: 768px) {
  .app-btn .icon {
    width: 54px;
    height: 54px;
    background-color: #fb950b;
    border-radius: 54px;
  }
}
.app-btn p {
  margin-left: 15px;
  line-height: 1;
  text-align: left;
}
@media all and (max-width: 768px) {
  .app-btn p {
    font-size: 13px;
  }
}
.app-btn p strong {
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 700;
  display: block;
}
@media all and (max-width: 768px) {
  .app-btn p strong {
    margin-bottom: 5px;
    font-size: 33px;
  }
}
@media all and (max-width: 768px) {
  .app-btn p br {
    display: none;
  }
}

@media all and (max-width: 768px) {
  .news {
    padding: 30px 0;
  }
}
@media all and (max-width: 768px) {
  .news .container-l {
    padding: 0;
  }
}
.news .row {
  align-items: center;
}
.news-col:first-of-type {
  width: 180px;
}
@media all and (max-width: 768px) {
  .news-col:first-of-type {
    width: 100%;
  }
}
.news-col:last-of-type {
  width: calc( 100% - 180px );
}
@media all and (max-width: 768px) {
  .news-col:last-of-type {
    width: 100%;
  }
}
.news-headline {
  margin: 0;
  font-size: 32px;
  color: #603813;
}
@media all and (max-width: 768px) {
  .news-headline {
    padding-left: 15px;
    font-size: 22px;
  }
}
.news-box {
  padding: 15px 20px;
  background-color: #F7F7F7;
}
@media all and (max-width: 768px) {
  .news-box {
    padding: 15px;
    margin-top: 10px;
  }
}
.news-ul {
  background-color: #fff;
}
.news-li p {
  margin: 0;
  line-height: 1;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .news-li p {
    margin-top: 5px;
    line-height: 1.6;
    display: block;
  }
}
.news-li a {
  padding: 20px;
  text-decoration: none;
  color: #222;
  display: block;
}
.news-label {
  padding: 2px 10px;
  margin-right: 10px;
  color: #fff;
  background-color: #603813;
}
@media all and (max-width: 768px) {
  .news-label {
    padding: 3px 10px 5px;
    margin-right: 0;
    line-height: 1;
    display: inline-block;
  }
}

.about .row {
  margin-left: -30px;
  margin-right: -30px;
  align-items: start;
}
@media all and (max-width: 768px) {
  .about .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.about-col {
  flex: 0 0 50%;
  padding: 0 30px;
  position: relative;
}
@media all and (max-width: 768px) {
  .about-col {
    flex: 0 0 100%;
    padding: 0 20px;
  }
}
.about-col:last-of-type {
  text-align: right;
}
.about-label {
  position: absolute;
  top: 0;
  right: 30px;
}
@media all and (max-width: 768px) {
  .about-label {
    width: 80px;
    height: auto;
  }
}
.about-logo {
  margin-top: 85px;
}
@media all and (max-width: 768px) {
  .about-logo {
    width: 290px;
    height: auto;
    margin-top: 50px;
  }
}
.about-image {
  width: 100%;
  height: auto;
}
.about-content {
  text-align: center;
}
@media all and (max-width: 768px) {
  .about-content {
    margin-bottom: 30px;
  }
}
.about-content p {
  margin: 40px 0 0;
  text-align: justify;
}

.worry .container-l {
  position: relative;
}
.worry-headline {
  position: relative;
  z-index: 1;
}
.worry-content {
  padding-bottom: 200px;
  margin-top: -100px;
  text-align: center;
  background-color: #F7F7F7;
  position: relative;
}
@media all and (max-width: 768px) {
  .worry-content {
    margin-top: -85px;
    padding-bottom: 50px;
  }
}
.worry-content:after {
  content: "";
  width: 0;
  height: 0;
  margin-left: -100px;
  border-style: solid;
  border-width: 100px 100px 0 100px;
  border-color: #F7F7F7 transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -100px;
}
@media all and (max-width: 768px) {
  .worry-content:after {
    margin-left: -50px;
    border-width: 50px 50px 0 50px;
    bottom: -50px;
  }
}
.worry-image {
  margin-top: 250px;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .worry-image {
    width: 100%;
    height: auto;
    margin-top: 80px;
    margin-bottom: 40px;
  }
}
.worry-balloon {
  padding: 10px 20px 10px 60px;
  text-align: left;
  background-image: url(../images/worry-check.svg);
  background-position: center left 15px;
  background-color: #fff;
  background-repeat: no-repeat;
  border: 1px solid #E2E2E2;
  box-shadow: 8px 8px 0 #E2E2E2;
  position: absolute;
}
@media all and (max-width: 768px) {
  .worry-balloon {
    margin-bottom: 15px;
    line-height: 1.5;
    position: static;
  }
}
.worry-balloon p {
  margin: auto;
  line-height: 1.6;
}
.worry-balloon p strong {
  color: #603813;
}
@media all and (max-width: 768px) {
  .worry-balloon p br {
    display: none;
  }
}
.worry-balloon:before {
  content: "";
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #E2E2E2 transparent transparent transparent;
  position: absolute;
  right: 140px;
  bottom: -29px;
}
@media all and (max-width: 768px) {
  .worry-balloon:before {
    content: none;
  }
}
.worry-balloon:after {
  content: "";
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  right: 150px;
  bottom: -20px;
}
@media all and (max-width: 768px) {
  .worry-balloon:after {
    content: none;
  }
}
.worry-balloon:nth-of-type(1) {
  top: 150px;
}
.worry-balloon:nth-of-type(2) {
  top: 130px;
  right: 0;
}
.worry-balloon:nth-of-type(2):before {
  left: 160px;
  right: auto;
}
.worry-balloon:nth-of-type(2):after {
  left: 150px;
  right: auto;
}
.worry-balloon:nth-of-type(3) {
  left: 30px;
  bottom: -40px;
}
.worry-balloon:nth-of-type(3):after {
  right: 20%;
}
.worry-balloon:nth-of-type(4) {
  right: 30px;
  bottom: -50px;
}
.worry-balloon:nth-of-type(4):after {
  left: 20%;
  right: auto;
}
.worry-balloon:nth-of-type(3):before, .worry-balloon:nth-of-type(4):before {
  content: none;
}
.worry-balloon:nth-of-type(3):after, .worry-balloon:nth-of-type(4):after {
  border-width: 0 15px 20px 15px;
  border-color: transparent transparent #fff transparent;
  top: -20px;
  bottom: auto;
}

.resolution .row {
  margin-left: -20px;
  margin-right: -20px;
}
@media all and (max-width: 768px) {
  .resolution .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.resolution-col {
  flex: 0 0 50%;
  padding: 0 20px;
}
@media all and (max-width: 768px) {
  .resolution-col {
    flex: 0 0 100%;
  }
}
.resolution-block {
  margin-bottom: 40px;
}
.resolution-block p {
  text-align: justify;
}
.resolution-thumbnail {
  margin-bottom: 50px;
  position: relative;
}
.resolution-number {
  width: 62px;
  height: 62px;
  margin-left: -31px;
  font-size: 30px;
  text-align: center;
  line-height: 58px;
  color: #603813;
  background-color: #fff;
  border: 1px solid;
  border-radius: 62px;
  position: absolute;
  left: 50%;
  bottom: -31px;
  display: inline-block;
}
.resolution-title {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #603813;
}
@media all and (max-width: 768px) {
  .resolution-title {
    font-size: 20px;
  }
}

.support {
  padding: 60px 50px;
  background-color: #F7F5F3;
}
@media all and (max-width: 768px) {
  .support {
    padding: 30px 15px;
  }
}
.support-section {
  padding: 0;
}
.support-nav {
  margin-bottom: 50px;
}
.support-nav-ul {
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  display: flex;
}
.support-nav-li {
  flex: 0 0 25%;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: #603813;
  background-color: #fff;
  cursor: pointer;
}
@media all and (max-width: 768px) {
  .support-nav-li {
    flex: 0 0 50%;
    font-size: 18px;
  }
}
.support-nav-li.active {
  color: #fff;
  background-color: #603813;
}
.support-block {
  display: none;
}
.support-block.active {
  display: block;
}
.support-title {
  margin-bottom: 20px;
  font-size: 24px;
  color: #603813;
}
@media all and (max-width: 768px) {
  .support-title {
    font-size: 20px;
  }
}

.symptoms-box {
  padding: 20px 30px;
  margin-bottom: 30px;
  background-color: #fff;
}
.symptoms-ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.symptoms-li {
  width: 33%;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .symptoms-li {
    width: 100%;
    display: block;
  }
}
.symptoms-li span {
  vertical-align: middle;
}
.symptoms-li:before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-color: #603813;
  border-radius: 20px;
  vertical-align: middle;
  display: inline-block;
}

.consultation-box {
  margin-bottom: 40px;
  background-color: #fff;
}
.consultation-headline {
  padding: 20px 30px;
  transition: 0.15s;
  cursor: pointer;
  position: relative;
}
@media all and (max-width: 768px) {
  .consultation-headline {
    padding: 20px;
  }
}
.consultation-headline:hover {
  opacity: 0.8;
}
.consultation-headline:after {
  content: "";
  width: 38px;
  height: 38px;
  margin-top: -19px;
  background-image: url(../images/icon/arrow-down-brown.svg);
  background-position: center;
  background-color: #F7F5F3;
  background-repeat: no-repeat;
  border-radius: 38px;
  position: absolute;
  top: 50%;
  right: 30px;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .consultation-headline:after {
    width: 30px;
    height: 30px;
    background-size: 12px;
    right: 20px;
  }
}
.consultation-headline.active:after {
  background-image: url(../images/icon/arrow-up-brown.svg);
}
.consultation-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 500;
  color: #603813;
}
@media all and (max-width: 768px) {
  .consultation-title {
    font-size: 18px;
  }
}
.consultation-title span {
  padding: 5px 10px;
  margin-left: 20px;
  font-size: 16px;
  line-height: 1;
  border: 1px solid #603813;
  border-radius: 20px;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .consultation-title span {
    margin-left: 10px;
    font-size: 13px;
  }
}
.consultation-subtitle {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media all and (max-width: 768px) {
  .consultation-subtitle {
    font-size: 18px;
  }
}
.consultation-content {
  padding: 0 30px 20px;
  display: none;
}
@media all and (max-width: 768px) {
  .consultation-content {
    padding: 0 20px 20px;
  }
}
.consultation-table {
  width: 100%;
  margin-bottom: 20px;
  display: table;
}
.consultation-row {
  display: table-row;
}
@media all and (max-width: 768px) {
  .consultation-row {
    display: block;
  }
}
.consultation-cell {
  vertical-align: top;
  display: table-cell;
}
@media all and (max-width: 768px) {
  .consultation-cell {
    display: block;
  }
}
.consultation-cell span {
  width: 100%;
  padding: 10px 20px;
  font-weight: bold;
  text-align: center;
  color: #603813;
  background-color: #F7F7F7;
  display: block;
}
@media all and (max-width: 768px) {
  .consultation-cell span {
    padding: 5px 20px;
    margin-bottom: 10px;
  }
}
.consultation-cell p {
  margin: 0;
}
.consultation-cell:first-of-type {
  width: 15%;
}
@media all and (max-width: 768px) {
  .consultation-cell:first-of-type {
    width: 100%;
  }
}
.consultation-cell:last-of-type {
  width: 80%;
  padding-left: 20px;
}
@media all and (max-width: 768px) {
  .consultation-cell:last-of-type {
    width: 100%;
    padding-left: 0;
  }
}

.price-content {
  padding: 150px 50px 50px;
  margin-top: -100px;
  background-color: #F7F7F7;
  position: relative;
  z-index: -1;
}
@media all and (max-width: 768px) {
  .price-content {
    margin-top: -85px;
    padding: 50px 20px 20px;
  }
}
.price-wrap p {
  text-align: center;
}
.price-title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: #603813;
}
@media all and (max-width: 768px) {
  .price-title {
    margin-top: 20px;
    font-size: 36px;
  }
}
.price-subtitle {
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
}
@media all and (max-width: 768px) {
  .price-subtitle {
    margin-top: 20px;
    font-size: 26px;
  }
}
.price-traffic span {
  font-size: 52px;
  font-weight: bold;
}
@media all and (max-width: 768px) {
  .price-traffic span {
    font-size: 48px;
  }
}
.price-traffic small {
  font-size: 30px;
  font-weight: bold;
}
.price-traffic .icon-right {
  width: 50px;
  height: 50px;
  vertical-align: sub;
}
.price-adult {
  margin-bottom: 100px;
}
.price-adult > p {
  font-size: 16px;
  text-align: left;
}

.traffic-banner {
  width: 100%;
  padding-top: 30%;
  margin-top: 60px;
  margin-bottom: 60px;
  color: #fff;
  position: relative;
}
@media all and (max-width: 768px) {
  .traffic-banner {
    display: none;
  }
}
.traffic-banner .row {
  justify-content: flex-end;
}
.traffic-banner h4 {
  font-size: 28px;
  text-align: center;
}
.traffic-image {
  width: 100%;
  height: 100%;
  background-image: url(../images/traffic-banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.traffic-col {
  flex: 0 0 50%;
  padding: 30px;
}
.traffic-price {
  font-size: 62px;
  font-weight: 700;
}
.traffic-campaign p {
  margin-bottom: 15px;
  line-height: 1;
}
.traffic-campaign p span:after {
  content: "";
  width: 30px;
  height: 20px;
  margin-left: 10px;
  margin-right: 10px;
  background-image: url(../images/traffic-arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}
.traffic-campaign p small {
  font-size: 30px;
}
.traffic-app h5 {
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
}
.traffic-app ul li {
  display: table-cell;
}
.traffic-app ul li img {
  width: auto;
  height: 54px;
}

.adult-table {
  width: 100%;
  margin-bottom: 20px;
  display: table;
}
.adult-row {
  display: table-row;
}
@media all and (max-width: 768px) {
  .adult-row {
    display: block;
  }
}
.adult-cell {
  width: 33.33333%;
  display: table-cell;
}
@media all and (max-width: 768px) {
  .adult-cell {
    width: 100%;
    display: block;
  }
}
.adult-cell:nth-of-type(1) .adult-th {
  background-color: #FAE2D5;
}
.adult-cell:nth-of-type(1) .adult-td {
  color: #D77037;
}
.adult-cell:nth-of-type(2) .adult-th {
  background-color: #E9F1F0;
}
.adult-cell:nth-of-type(2) .adult-td {
  color: #5FAFA5;
}
.adult-cell:nth-of-type(3) .adult-th {
  background-color: #F0E9F1;
}
.adult-cell:nth-of-type(3) .adult-td {
  color: #C165CE;
}
.adult-th {
  padding: 5px;
  font-size: 28px;
  text-align: center;
}
@media all and (max-width: 768px) {
  .adult-th {
    font-size: 22px;
  }
}
.adult-th small {
  margin-left: 10px;
  font-size: 18px;
}
@media all and (max-width: 768px) {
  .adult-th small {
    font-size: 16px;
  }
}
.adult-td {
  padding: 5px;
  background-color: #fff;
}
.adult-td p {
  font-size: 52px;
  font-weight: 700;
}
@media all and (max-width: 768px) {
  .adult-td p {
    font-size: 42px;
  }
}
.adult-td p small {
  font-size: 30px;
}
@media all and (max-width: 768px) {
  .adult-td p small {
    font-size: 24px;
  }
}

.children-headline {
  font-size: 26px;
  text-align: center;
  color: #603813;
}
.children .row {
  margin-left: -40px;
  margin-right: -40px;
}
@media all and (max-width: 768px) {
  .children .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.children-col {
  flex: 0 0 50%;
  padding: 0 40px;
}
@media all and (max-width: 768px) {
  .children-col {
    flex: 0 0 100%;
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.children-col:last-of-type {
  margin-bottom: 20px;
}
.children-target {
  margin-bottom: 20px;
}
.children-target bold {
  font-weight: 700;
}
.children-target bold:after {
  content: "";
  width: 1px;
  height: 35px;
  margin: 10px auto;
  background-color: #222;
  display: table;
}
.children-thumbnail {
  margin-bottom: 20px;
  text-align: center;
}
.children-image {
  width: 270px;
  height: auto;
}
.children-title {
  margin-bottom: 10px;
  font-size: 28px;
  text-align: center;
}
.children-subtitle {
  padding: 10px;
  font-weight: 700;
  color: #603813;
  background-color: #F7F5F3;
}
.children-text {
  min-height: 129.6px;
  text-align: left !important;
}
.children-ul {
  font-size: 15px;
}

.flow-headline {
  position: relative;
  z-index: 1;
}
.flow-content {
  margin-top: -100px;
}
@media all and (max-width: 768px) {
  .flow-content {
    margin-top: -85px;
  }
}
.flow-inner {
  padding-top: 150px;
  padding: 150px 50px 50px;
  background-color: #F7F7F7;
}
@media all and (max-width: 768px) {
  .flow-inner {
    padding: 80px 20px 50px;
  }
}
.flow .row {
  align-items: center;
}
.flow-col {
  flex: 0 0 30%;
}
@media all and (max-width: 768px) {
  .flow-col {
    flex: 0 0 100%;
  }
}
.flow-col:last-of-type {
  flex: 0 0 70%;
}
@media all and (max-width: 768px) {
  .flow-col:last-of-type {
    flex: 0 0 100%;
  }
}
.flow-box {
  padding: 20px;
  margin-bottom: 60px;
  background-color: #fff;
  position: relative;
}
.flow-box:after {
  content: "";
  width: 45px;
  height: 22px;
  margin-left: -22.5px;
  background-image: url(../images/icon/flow-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: -42px;
}
.flow-box:last-of-type:after {
  content: none;
}
.flow-thumbnail {
  width: 240px;
  margin: auto;
}
.flow-image {
  width: 100%;
  height: auto;
}
.flow-title {
  margin: 0 0 15px;
  font-size: 22px;
}
@media all and (max-width: 768px) {
  .flow-title {
    margin-bottom: 10px;
  }
}

.faq-content {
  padding: 150px 50px 50px;
  margin-top: -100px;
  background-color: #F7F7F7;
}
@media all and (max-width: 768px) {
  .faq-content {
    padding: 60px 20px 20px;
    margin-top: -85px;
  }
}
.faq-li {
  margin-bottom: 30px;
  background-color: #fff;
}
@media all and (max-width: 768px) {
  .faq-li {
    margin-bottom: 10px;
  }
}
.faq-li.open .faq-question .faq-title {
  border-bottom: 1px solid #E2E2E2;
}
.faq-li.open .faq-question:after {
  content: "−";
}
.faq-question {
  padding: 20px 20px 0;
  cursor: pointer;
  transition: 0.15s;
  position: relative;
}
.faq-question:hover {
  opacity: 0.7;
}
.faq-question:after {
  content: "＋";
  width: 32px;
  height: 32px;
  font-family: Arial sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  color: #603813;
  background-color: #F7F5F3;
  border-radius: 50px;
  position: absolute;
  top: 30px;
  right: 20px;
  display: block;
}
@media all and (max-width: 768px) {
  .faq-question:after {
    width: 28px;
    height: 28px;
    margin-top: -14px;
    font-size: 18px;
    line-height: 28px;
    top: 50%;
  }
}
.faq-answer {
  padding: 20px;
  display: none;
}
.faq-answer span {
  width: 46px;
  height: 46px;
  margin-top: -5px;
  margin-right: 20px;
  font-family: Arial sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 46px;
  color: #603813;
  vertical-align: top;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .faq-answer span {
    width: 32px;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
  }
}
.faq-answer p {
  display: inline-block;
}
@media all and (max-width: 768px) {
  .faq-answer p {
    font-size: 16px;
  }
}
.faq-title {
  padding-bottom: 20px;
  font-size: 20px;
}
@media all and (max-width: 768px) {
  .faq-title {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 18px;
    line-height: 1.4;
    position: relative;
  }
}
.faq-title span {
  width: 46px;
  height: 46px;
  margin-right: 20px;
  font-family: Arial sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 46px;
  color: #603813;
  background-color: #F7F5F3;
  border-radius: 50px;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .faq-title span {
    width: 32px;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
    position: absolute;
    left: 0;
  }
}

.area-section {
  padding-bottom: 0;
}
.area-box {
  padding: 50px;
  margin-bottom: 100px;
  background-color: #F7F5F3;
  position: relative;
}
@media all and (max-width: 768px) {
  .area-box {
    padding: 40px 20px 20px;
    margin-bottom: 60px;
  }
}
@media all and (max-width: 768px) {
  .area-box:last-of-type {
    margin-bottom: 0;
  }
}
.area-inner {
  padding: 30px;
  background-color: #fff;
}
@media all and (max-width: 768px) {
  .area-inner {
    padding: 20px;
  }
}
.area-label {
  padding: 10px 30px;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  background-color: #603813;
  border-radius: 50px;
  position: absolute;
  top: -24px;
}
@media all and (max-width: 768px) {
  .area-label {
    font-size: 22px;
  }
}
.area .row {
  margin-left: -20px;
  margin-right: -20px;
}
.area-col {
  flex: 0 0 50%;
  padding: 0 20px;
}
@media all and (max-width: 768px) {
  .area-col {
    flex: 0 0 100%;
  }
}
@media all and (max-width: 768px) {
  .area-col:first-of-type {
    order: 2;
  }
}
@media all and (max-width: 768px) {
  .area-col:last-of-type {
    margin-bottom: 15px;
    order: 1;
  }
}
.area-col h4 {
  margin-bottom: 10px;
  font-size: 20px;
}
@media all and (max-width: 768px) {
  .area-col h4 {
    margin-bottom: 5px;
  }
}
.area-col p {
  margin-bottom: 20px;
}
.area-col p:last-of-type {
  margin-bottom: 0;
}
.area-image {
  width: 100%;
  height: auto;
}

.app-banner {
  width: 100%;
  padding-top: 30%;
  margin-bottom: 60px;
  position: relative;
}
@media all and (max-width: 768px) {
  .app-banner {
    display: none;
  }
}
.app-image {
  width: 100%;
  height: 100%;
  padding: 50px;
  background-image: url(../images/app-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.app-col {
  flex: 0 0 70%;
}
.app-subtitle {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.app-title {
  margin-bottom: 20px;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
}
.app-li {
  display: table-cell;
}
.app-li img {
  width: auto;
  height: 70px;
}

/*# sourceMappingURL=sass */