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

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

input[type=button],
input[type=submit] {
  -webkit-appearance: none;
}

/* base
---------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: none;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  html {
    -webkit-overflow-scrolling: touch;
  }
}

body {
  position: relative;
  z-index: 0;
  width: 100%;
  line-height: 2;
  background-color: #ebe5e3;
  color: #000;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

img {
  border-style: none;
  display: block;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

a,
a img,
button {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

a:visited {
  color: inherit;
}

a:active {
  color: inherit;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}
/* =================================
 common
================================= */
/* device
---------------------------------------------------------- */
.u-only_sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-only_sp {
    display: block !important;
  }
}

.u-only_pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-only_pc {
    display: none !important;
  }
}

/* layout
---------------------------------------------------------- */
.l-cont_l {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cont_l {
    max-width: 1320px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont_l {
    width: calc(100% - 40px);
  }
}
.l-cont_m {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cont_m {
    max-width: 1240px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont_m {
    width: calc(100% - 40px);
  }
}
.l-cont_s {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cont_s {
    max-width: 1160px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont_s {
    width: calc(100% - 40px);
  }
}
.l-cont_ss {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cont_ss {
    max-width: 1080px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont_ss {
    width: calc(100% - 40px);
  }
}

.l-bg_top {
  background: url(../img/bg_smile.webp) top center/100% 1170px no-repeat;
}
@media screen and (max-width: 767px) {
  .l-bg_top {
    background-size: 100% 585px;
  }
}

/* fade in
---------------------------------------------------------- */
.fadeup {
  opacity: 0;
}
.fadeup.is-animated {
  -webkit-animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

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

@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* =================================
 header
================================= */
.l-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 40px 0 20px;
  color: #fff;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header {
    padding: 18px 15px 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 10px 20px;
  }
}
.l-header_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header_logo {
  width: 308px;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_logo {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_logo {
    width: 170px;
  }
}
.l-header_logo a {
  display: block;
}
.l-header_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header_contact {
    display: none;
  }
}
.l-header_contact_hour {
  line-height: 1.4;
  margin-right: 30px;
  font-size: 11px;
  font-size: 1.1rem;
  text-align: right;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_contact_hour {
    margin-right: 20px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.l-header_contact_tel {
  margin-right: 36px;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_contact_tel {
    margin-right: 20px;
  }
}
.l-header_contact_tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header_contact_tel a img {
  width: 27px;
  margin: 0 8px 0 0;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_contact_tel a img {
    width: 18px;
    margin: 0 4px 0 0;
  }
}
.l-header_contact_tel_num {
  line-height: 1;
  font-family: "Shippori Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 500;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_contact_tel_num {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.l-header_contact_mail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header_contact_mail a img {
  width: 32px;
  margin: 0 12px 0 0;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_contact_mail a img {
    width: 22px;
    margin: 0 8px 0 0;
  }
}
.l-header_contact_mail_txt {
  font-family: "Shippori Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_contact_mail_txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* =================================
 seo
================================= */
.l-seo {
  padding: 70px 0 110px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-seo {
    padding: 20px 0 50px;
  }
}
.l-seo_head {
  margin-bottom: 40px;
  font-family: "Shippori Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-seo_head {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.l-seo_box {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-seo_box {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.l-seo_box [data-simplebar] {
  z-index: 0;
}
.l-seo_cont {
  height: 270px;
}
@media screen and (max-width: 767px) {
  .l-seo_cont {
    height: 140px;
  }
}
.l-seo_cont .simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.l-seo_cont .simplebar-track .simplebar-scrollbar::before {
  width: 3px;
}
.l-seo_cont .simplebar-scrollbar::before {
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
}
.l-seo_cont .simplebar-track.simplebar-vertical {
  width: 3px !important;
}
.l-seo_cont .simplebar-content {
  padding: 0 30px 0 0 !important;
}
@media screen and (max-width: 767px) {
  .l-seo_cont .simplebar-content {
    padding: 0 15px 0 0 !important;
  }
}
.l-seo_cont .simplebar-track {
  background: #e0e0e0;
}
.l-seo_cont .simplebar-track .simplebar-scrollbar::before {
  background: #dc9ea4;
}
.l-seo_item {
  line-height: 1.57;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-seo_item {
    margin-top: 20px;
  }
}
.l-seo_item:first-of-type {
  margin-top: 0;
}
.l-seo_item_cont {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .l-seo_item_cont {
    margin-top: 20px;
  }
}
.l-seo_item_cont:first-of-type {
  margin-top: 0;
}
.l-seo_item_ttl {
  position: relative;
  z-index: 0;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Shippori Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-seo_item_ttl {
    margin-bottom: 15px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.l-seo_ttl {
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: "Shippori Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-seo_ttl {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.l-seo .c-list_midpoint li {
  margin-top: 5px !important;
}

/* =================================
 footer
================================= */
.l-footer_copyright {
  line-height: 1;
  border-top: 1px solid #aaa7a7;
  padding: 23px 0 114px;
  background-color: #fff;
  font-weight: 300;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer_copyright {
    padding: 10px 0 75px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.l-footer_fixed {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #fff;
}
@media screen and (min-width: 1441px) {
  .l-footer_fixed {
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .l-footer_fixed {
    padding: 0 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed {
    height: 60px;
    background-color: #b09c4d;
  }
}
@media screen and (min-width: 768px) {
  .l-footer_fixed_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-footer_fixed_logo {
  width: 296px;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .l-footer_fixed_logo {
    width: 250px;
  }
}
.l-footer_fixed_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer_fixed_tel, .l-footer_fixed_mail {
  width: 280px;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .l-footer_fixed_tel, .l-footer_fixed_mail {
    width: 210px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_tel, .l-footer_fixed_mail {
    width: 42%;
  }
}
.l-footer_fixed_tel a, .l-footer_fixed_mail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_tel a, .l-footer_fixed_mail a {
    height: 60px;
  }
}
.l-footer_fixed_tel a {
  background-color: #c68d99;
}
@media screen and (min-width: 768px) {
  .l-footer_fixed_tel a {
    padding-top: 5px;
  }
}
.l-footer_fixed_tel a img {
  width: 31px;
  margin: 0 8px 0 0;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .l-footer_fixed_tel a img {
    width: 25px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_tel a img {
    width: 18px;
    margin: 0 5px 0 0;
  }
}
.l-footer_fixed_tel_num {
  line-height: 1;
  color: #fff;
  font-family: "Shippori Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .l-footer_fixed_tel_num {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_tel_num {
    margin-top: 2px;
    font-size: 20px;
    font-size: 2rem;
  }
}
.l-footer_fixed_mail a {
  background-color: #c5a3a3;
}
@media screen and (min-width: 768px) {
  .l-footer_fixed_mail a {
    padding-top: 5px;
  }
}
.l-footer_fixed_mail a img {
  width: 36px;
  margin: 0 11px 0 0;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .l-footer_fixed_mail a img {
    width: 28px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_mail a img {
    width: 22px;
    margin: 0 6px 0 0;
  }
}
.l-footer_fixed_mail_txt {
  color: #fff;
  font-family: "Shippori Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 500;
  font-size: 26px;
  font-size: 2.6rem;
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .l-footer_fixed_mail_txt {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_mail_txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.l-footer_fixed_pagetop {
  position: relative;
  z-index: 0;
  width: 90px;
  height: 90px;
  background-color: #b09c4d;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_pagetop {
    width: 60px;
    height: 60px;
  }
}
.l-footer_fixed_pagetop_img {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 25px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_pagetop_img {
    width: 15px;
  }
}