/* =================================
 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%;
  color: #000;
  font-family: "Noto Sans JP", sans-serif, "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.8;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-all;
  background-color: #e3e2dc;
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

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);
  }
}

.l-bg_wht, .l-bg_gry {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .l-bg_wht, .l-bg_gry {
    padding: 50px 0;
  }
}
.l-bg_gry {
  background-color: #f2f3f4;
}

/* =================================
 header
================================= */
.l-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  padding: 0 0 0 28px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
    padding: 20px 0 0 20px;
  }
}
.l-header_cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header_logo {
  width: 396px;
}
@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;
  }
}
.l-header_logo a {
  display: block;
}
.l-header_contact {
  display: flex;
  align-items: center;
  padding-right: 90px;
}
@media screen and (min-width: 1101px) {
  .l-header_contact_tel {
    margin-right: 34px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_contact_tel {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_contact_tel {
    display: none;
  }
}
.l-header_contact_tel a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header_contact_tel a {
    display: block;
    height: 100%;
    padding-top: 18px;
    background-color: #3366aa;
  }
}
.l-header_contact_tel a img {
  width: 55px;
  margin: 0 12px 0 0;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_contact_tel a img {
    width: 36px;
    margin: 0 10px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header_contact_tel a img {
    width: 22px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .l-header_contact_tel_ttl, .l-header_contact_tel_num {
    line-height: 1;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .l-header_contact_tel_ttl {
    text-align: center;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_contact_tel_ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header_contact_tel_num {
    font-size: 34px;
    font-weight: 700;
    font-family: "Lato", sans-serif;
    color: #000;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_contact_tel_num {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.l-header_contact_mail {
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-bottom-left-radius: 16px;
}
@media screen and (max-width: 767px) {
  .l-header_contact_mail {
    display: none;
  }
}
.l-header_contact_mail a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #4ecfca;
  padding-top: 4px;
}
@media screen and (max-width: 767px) {
  .l-header_contact_mail a {
    display: block;
    padding-top: 18px;
  }
}
.l-header_contact_mail a img {
  width: 25px;
  margin: 0 0;
}
@media screen and (max-width: 767px) {
  .l-header_contact_mail a img {
    width: 27px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .l-header_contact_mail_txt {
    letter-spacing: 0.05em;
    font-size: 12px;
    font-weight: 500;
  }
  .l-header_contact_mail_txt span {
    font-size: 14px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
  }
}
.l-header_contact_menu {
  width: 90px;
  height: 90px;
  color: #fff;
  text-align: center;
  font-family: "Lato", sans-serif;
  background-color: #00cede;
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .l-header_contact_menu {
    width: 62px;
    height: 62px;
  }
}
.l-header_contact_menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .l-header_contact_menu a {
    font-size: 10px;
  }
}
.l-header_contact_menu .line {
  display: block;
  width: 24px;
  height: 1px;
  background-color: #ececef;
  position: relative;
  transition: background-color 0.3s ease;
}
.l-header_contact_menu .line::before, .l-header_contact_menu .line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 1px;
  background-color: #ececef;
  transition: transform 0.3s ease, top 0.3s ease;
}
.l-header_contact_menu .line::before {
  top: -9px;
}
.l-header_contact_menu .line::after {
  top: 9px;
}
.l-header_contact_menu .txt {
  position: absolute;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-header_contact_menu .txt {
    bottom: 8px;
  }
}
.l-header_contact_menu.is-open .line {
  background-color: transparent;
}
.l-header_contact_menu.is-open .line::before {
  top: 0;
  transform: rotate(45deg);
}
.l-header_contact_menu.is-open .line::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =================================
 seo
================================= */
.l-seo {
  padding: 80px 0 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-seo {
    padding: 35px 0;
  }
}
.l-seo_inner {
  background-color: #f7f6f6;
  border-radius: 10px;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .l-seo_inner {
    padding: 16px;
  }
}
.l-seo_head {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  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: 11px;
    font-size: 1.1rem;
  }
}
.l-seo_box [data-simplebar] {
  z-index: 0;
}
.l-seo_cont {
  height: 230px;
}
@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: #e5e5e5;
}
.l-seo_cont .simplebar-track.simplebar-vertical {
  width: 3px;
}
.l-seo_cont .simplebar-track .simplebar-scrollbar::before {
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 3px;
  background: #4ecfca;
}
.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.3em;
}
@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: 5px;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 1px solid #000;
  box-sizing: border-box;
  content: "";
}
.l-seo_ttl {
  position: relative;
  z-index: 0;
  margin-bottom: 15px;
  padding-left: 1.2em;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .l-seo_ttl {
    margin-bottom: 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.l-seo_ttl::before {
  position: absolute;
  z-index: 0;
  top: 7px;
  left: 0;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #000;
  content: "";
}
@media screen and (max-width: 767px) {
  .l-seo_ttl::before {
    top: 5px;
  }
}
.l-seo .c-list_midpoint li {
  margin-top: 0 !important;
  font-size: 13px;
  line-height: 22px;
}
.l-seo .c-txt_asterisk {
  margin-top: 10px;
}

/* =================================
 footer
================================= */
.l-footer_copyright {
  line-height: 1;
  padding: 50px 0 114px;
  background-color: #fff;
  color: #000000;
  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: transparent;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed {
    height: 60px;
    padding: 0;
  }
}
.l-footer_fixed_cont {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  height: 100%;
}
.l-footer_fixed_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.l-footer_fixed_item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.l-footer_fixed_item .icon img {
  display: block;
  height: auto;
}
.l-footer_fixed_item.is-tel, .l-footer_fixed_item.is-web {
  flex: 1 1 0;
  min-width: 0;
}
.l-footer_fixed_item.is-tel {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_item.is-tel {
    background-color: #fff;
  }
}
.l-footer_fixed_item.is-tel a {
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_item.is-tel a {
    flex-direction: row;
    gap: 3px;
  }
}
.l-footer_fixed_item.is-tel .icon {
  width: 55px;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-footer_fixed_item.is-tel .icon {
    width: 36px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_item.is-tel .icon {
    width: clamp(18px, 6vw, 22px);
  }
}
.l-footer_fixed_item.is-tel .icon img {
  width: 100%;
}
.l-footer_fixed_item.is-tel .number {
  font-family: "Lato", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #000;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-footer_fixed_item.is-tel .number {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_item.is-tel .number {
    font-size: clamp(14px, 4.6vw, 18px);
    color: #000;
  }
}
.l-footer_fixed_item.is-web {
  background-color: #4ecfca;
}
.l-footer_fixed_item.is-web a {
  gap: 12px;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_item.is-web a {
    gap: 6px;
  }
}
.l-footer_fixed_item.is-web .icon {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_item.is-web .icon {
    width: clamp(16px, 7vw, 21px);
  }
}
.l-footer_fixed_item.is-web .icon img {
  width: 100%;
}
.l-footer_fixed_item.is-web .txt {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_item.is-web .txt {
    font-size: clamp(13px, 4vw, 14px);
  }
}
.l-footer_fixed_item.is-web .txt span {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_item.is-web .txt span {
    font-size: clamp(14px, 4.3vw, 15px);
  }
}
.l-footer_fixed_item.is-top {
  flex: 0 0 90px;
  background-color: #00cede;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_item.is-top {
    flex: 0 0 60px;
    width: 60px;
  }
}
.l-footer_fixed_item.is-top a {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_item.is-top a {
    font-size: 10px;
  }
}
@media screen and (min-width: 1101px) {
  .l-footer_fixed_logo {
    width: 250px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-footer_fixed_logo {
    width: 190px;
  }
}
.l-footer_fixed_inner {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1101px) {
  .l-footer_fixed_inner {
    width: 600px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-footer_fixed_inner {
    width: 480px;
  }
}
.l-footer_fixed_block {
  display: flex;
  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 {
  width: 50%;
}
.l-footer_fixed_tel a, .l-footer_fixed_mail a {
  display: flex;
  align-items: 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: #f2f3f4;
}
@media screen and (min-width: 768px) {
  .l-footer_fixed_tel a {
    padding-top: 5px;
  }
}
.l-footer_fixed_tel a img {
  width: 36px;
  margin: 0 13px 0 0;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-footer_fixed_tel a img {
    width: 26px;
    margin: 0 8px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_tel a img {
    width: 18px;
    margin: 0 5px 0 0;
  }
}
.l-footer_fixed_tel_ttl {
  line-height: 1;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-footer_fixed_tel_ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.l-footer_fixed_tel_num {
  line-height: 1;
  margin-top: 4px;
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 1100px) 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: #284b7a;
}
@media screen and (min-width: 768px) {
  .l-footer_fixed_mail a {
    padding-top: 5px;
  }
}
.l-footer_fixed_mail a img {
  width: 42px;
  margin: 5px 20px 0 0;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-footer_fixed_mail a img {
    width: 36px;
    margin: 5px 10px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_mail a img {
    width: 24px;
    margin: 0 10px 0 0;
  }
}
.l-footer_fixed_mail_sub, .l-footer_fixed_mail_main {
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-footer_fixed_mail_sub {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_mail_sub {
    font-size: 10px;
    font-size: 1rem;
  }
}
.l-footer_fixed_mail_main {
  margin-top: 3px;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-footer_fixed_mail_main {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_mail_main {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.l-footer_fixed_pagetop {
  position: relative;
  z-index: 0;
  width: 90px;
  height: 90px;
  background-color: #ada68c;
  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;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .l-footer_fixed_pagetop_img {
    width: 15px;
  }
}

.u-font_noto-serif-jp {
  font-family: "Noto Serif JP", serif;
}

.u-font_noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
}

.u-font_lato {
  font-family: "Lato", sans-serif;
}

/*# sourceMappingURL=cmn_layout.css.map */
