/* =================================
 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;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    -webkit-overflow-scrolling: touch;
  }
}

body {
  position: relative;
  z-index: 0;
  width: 100%;
  line-height: 2;
  background-color: #fff;
  color: #5a5a5a;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  -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: 13px;
    font-size: 1.3rem;
  }
}
body.no-scroll {
  overflow: hidden;
}

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;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/* layout
---------------------------------------------------------- */
.l-cont_l {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cont_l {
    max-width: 1280px;
    padding: 0 20px;
  }
}
@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: 1200px;
    padding: 0 20px;
  }
}
@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: 1120px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont_s {
    width: calc(100% - 40px);
  }
}

/* =================================
 header
================================= */
.l-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
    background-color: #fff;
  }
}
.l-header_cont {
  position: relative;
  z-index: 1002;
  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: 331px;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_logo {
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_logo {
    width: 170px;
    margin: 0 auto;
  }
}
.l-header_logo a {
  display: block;
}
.l-header_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.l-header_contact_mail, .l-header_contact_tel {
  padding: 10px 0;
  margin-right: 10px;
}
.l-header_contact_mail a, .l-header_contact_tel 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;
  width: 250px;
  height: 66px;
  border-radius: 33px;
}
.l-header_contact_tel a {
  background-color: #fff;
}
.l-header_contact_tel a img {
  width: 21px;
  margin: 0 7px 0 0;
}
.l-header_contact_tel_num {
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  font-size: 2.2rem;
}
.l-header_contact_mail a {
  background-color: #53c3b5;
}
.l-header_contact_mail a img {
  width: 25px;
  margin: 0 10px 0 0;
}
.l-header_contact_mail_txt {
  line-height: 1;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
}
.l-header_menu {
  position: relative;
  z-index: 0;
  width: 90px;
  height: 90px;
  border-bottom: 1px solid #079c8a;
  border-left: 1px solid #079c8a;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-header_menu {
    width: 60px;
    height: 60px;
  }
}
.l-header_menu span {
  position: absolute;
  z-index: 0;
  left: 50%;
  width: 30px;
  height: 1px;
  background-color: #079c8a;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .l-header_menu span {
    width: 25px;
  }
}
.l-header_menu span:nth-child(1) {
  top: 26px;
}
@media screen and (max-width: 767px) {
  .l-header_menu span:nth-child(1) {
    top: 14px;
  }
}
.l-header_menu span:nth-child(2) {
  top: 35px;
}
@media screen and (max-width: 767px) {
  .l-header_menu span:nth-child(2) {
    top: 22px;
  }
}
.l-header_menu span:nth-child(3) {
  top: 44px;
}
@media screen and (max-width: 767px) {
  .l-header_menu span:nth-child(3) {
    top: 30px;
  }
}
.l-header_menu_txt {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 18px;
  width: 100%;
  color: #079c8a;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-header_menu_txt {
    bottom: 8px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.l-header_menu.active span {
  top: 35px;
}
@media screen and (max-width: 767px) {
  .l-header_menu.active span {
    top: 23px;
  }
}
.l-header_menu.active span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.l-header_menu.active span:nth-child(2) {
  opacity: 0;
}
.l-header_menu.active span:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
.l-header_gnav {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: -100%;
  width: 500px;
  height: 100vh;
  padding: 90px 100px 120px 20px;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  pointer-events: none;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .l-header_gnav {
    width: 100%;
    padding: 80px 0 140px;
  }
}
.l-header_gnav.open {
  right: 0;
  opacity: 1;
  pointer-events: inherit;
}
@media screen and (max-width: 767px) {
  .l-header_gnav_list {
    padding: 20px;
  }
}
.l-header_gnav_list li {
  border-bottom: 1px dashed #b1c2c2;
}
.l-header_gnav_list li a {
  display: block;
  line-height: 1;
  padding: 18px 25px;
  color: #53c3b5;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-header_gnav_list li a {
    padding: 10px 20px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.l-header.scroll-in .l-header_menu {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
}

/* =================================
 main
================================= */
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 60px;
  }
}

/* =================================
 seo
================================= */
.l-seo {
  padding: 120px 0 50px;
}
@media screen and (max-width: 767px) {
  .l-seo {
    padding: 40px 0 25px;
  }
}
.l-seo_head {
  line-height: 1;
  margin-bottom: 40px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 22px;
  font-size: 2.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-seo_head {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.l-seo_box {
  padding: 50px 54px 39px;
  border: 1px solid #a9b9b9;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-seo_box {
    padding: 20px 20px 15px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.l-seo_box [data-simplebar] {
  z-index: 0;
}
.l-seo_cont {
  height: 280px;
}
@media screen and (max-width: 767px) {
  .l-seo_cont {
    height: 140px;
  }
}
.l-seo_cont .simplebar-content {
  padding: 0 45px 0 0 !important;
}
@media screen and (max-width: 767px) {
  .l-seo_cont .simplebar-content {
    padding: 0 20px 0 0 !important;
  }
}
.l-seo_cont .simplebar-track {
  background: #f6f6f6;
}
.l-seo_cont .simplebar-track.simplebar-vertical {
  width: 4px;
}
@media screen and (max-width: 767px) {
  .l-seo_cont .simplebar-track.simplebar-vertical {
    width: 2px;
  }
}
.l-seo_cont .simplebar-track .simplebar-scrollbar::before {
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 4px;
  background: #53c3b5;
}
@media screen and (max-width: 767px) {
  .l-seo_cont .simplebar-track .simplebar-scrollbar::before {
    width: 2px;
  }
}
.l-seo_cont .simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.l-seo_item {
  line-height: 1.71;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-seo_item {
    margin-top: 15px;
  }
}
.l-seo_item:first-of-type {
  margin-top: 0;
}
.l-seo_item_cont {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .l-seo_item_cont {
    margin-top: 10px;
  }
}
.l-seo_item_cont:first-of-type {
  margin-top: 0;
}
.l-seo_item_ttl {
  position: relative;
  z-index: 0;
  margin-bottom: 10px;
  padding-left: 1.1em;
}
@media screen and (max-width: 767px) {
  .l-seo_item_ttl {
    margin-bottom: 5px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.l-seo_item_ttl::before {
  position: absolute;
  z-index: 0;
  top: 6px;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  border: 1px solid #5a5a5a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: "";
}
.l-seo_ttl {
  position: relative;
  z-index: 0;
  margin-bottom: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-seo_ttl {
    margin-bottom: 12px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.l-seo .c-txt_asterisk {
  margin-top: 10px;
}

/* =================================
 footer
================================= */
.l-footer_copyright {
  line-height: 1;
  padding: 20px 0 114px;
  background-color: #0d9f9e;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  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 {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #fff;
}
@media screen and (min-width: 1101px) {
  .l-footer_fixed {
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 1100px) 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: #ada68c;
  }
}
@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: 331px;
}
@media screen and (max-width: 1300px) and (min-width: 768px) {
  .l-footer_fixed_logo {
    width: 280px;
  }
}
.l-footer_fixed_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer_fixed_inner {
    width: 600px;
  }
}
.l-footer_fixed_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 90px);
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_block {
    width: calc(100% - 60px);
  }
}
.l-footer_fixed_tel, .l-footer_fixed_mail {
  height: 90px;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_tel, .l-footer_fixed_mail {
    height: 60px;
  }
}
.l-footer_fixed_tel a, .l-footer_fixed_mail a {
  height: 100%;
}
.l-footer_fixed_tel {
  width: 55%;
  padding-top: 19px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_tel {
    width: 50%;
    padding-top: 16px;
  }
}
.l-footer_fixed_tel a img {
  width: 25px;
  margin: 5px 6px 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_tel a img {
    width: 18px;
    margin: 3px 4px 0 0;
  }
}
.l-footer_fixed_tel_txt {
  line-height: 1;
  padding-bottom: 5px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1300px) and (min-width: 768px) {
  .l-footer_fixed_tel_txt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.l-footer_fixed_tel_main {
  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;
}
.l-footer_fixed_tel_main_num {
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 1300px) and (min-width: 768px) {
  .l-footer_fixed_tel_main_num {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_tel_main_num {
    font-size: 20px;
    font-size: 2rem;
  }
}
.l-footer_fixed_mail {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_mail {
    width: 50%;
  }
}
.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;
  background-color: #53c3b5;
}
.l-footer_fixed_mail a img {
  width: 30px;
  margin: 0 12px 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_mail a img {
    width: 20px;
    margin: 0 5px 0 0;
  }
}
.l-footer_fixed_mail_txt {
  line-height: 1;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 1300px) and (min-width: 768px) {
  .l-footer_fixed_mail_txt {
    font-size: 20px;
    font-size: 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: #fff;
  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: 31%;
  left: 23%;
  width: 25px;
  -webkit-transform: rotate(180deg) translate(-50%, -50%);
          transform: rotate(180deg) translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_pagetop_img {
    width: 15px;
  }
}