/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
:root {
  --font-Noto_jp: "Noto Serif JP", serif;
  --font-Zen_kaku: "Zen Kaku Gothic New", sans-serif;
  --font-Inter: "Inter", sans-serif;
  --font-Zen_maru: "Zen Maru Gothic", sans-serif;
  --font-Jost: "Jost", sans-serif;
  --font-shippori: "Shippori Mincho B1", serif;
  --co-primary: #b37915;
  --co-strongcolor: #dd3000;
  --co-accent: #dcc798;
  --co-accentcolor: #d6b427;
  --co-secondry: #bc9d59;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.6;
}
html.no-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.75vw;
  }
}

:where(html:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

:where(figure:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.05em;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
body.no-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 47.9375em) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 350px) {
  body {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

:where(body) {
  margin: 0;
}

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 32rem;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  body {
    min-width: 120rem;
  }
  body #cm-header {
    width: 120rem;
  }
  body #wrapper {
    max-width: 120rem;
  }
}
.w-brall {
  word-break: break-all;
}

/* ---------- START ANCHORLINK ---------- */
a {
  color: #000;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer !important;
}
a:hover, a:active, a:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  a:hover {
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  a:hover img {
    opacity: 0.8;
  }
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #000;
}
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/*---------- START HOVER IMG  ----------*/
.ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

/* ----------  START code set ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}

pre,
code,
kbd,
samp,
var,
.font_mono {
  font-size: 1.3rem;
  line-height: 1.6;
}

pre {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 0.1rem solid #ddd;
  background-color: #f4f4f4;
  overflow-x: auto;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  -webkit-transition: All 0.3s ease;
  transition: All 0.3s ease;
}

button,
input[type=submit],
input[type=button] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

picture {
  display: block;
  line-height: 1.6;
}

figure {
  margin: 0;
  padding: 0;
}

.white-space_pre-wrap {
  display: -ms-grid;
  display: grid;
  width: 100%;
  white-space: pre-line;
}

/*====================================================================================
2. START COMMON CONTAINER.
====================================================================================*/
.container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 123rem;
    padding: 0 4.5rem;
  }
}
@media only screen and (max-width: 1235px) {
  .container {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 1.2rem;
  }
}

/*---------- START page-up ----------*/
#page-up {
  display: none;
  position: fixed;
  z-index: 9;
}
@media only screen and (min-width: 768px) {
  #page-up {
    bottom: 2rem;
    right: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  #page-up {
    bottom: 5rem;
    right: 0;
  }
}
#page-up a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #b37a17;
  text-decoration: none;
  overflow: hidden;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
  border: 0.1rem solid #b37a17;
}
@media only screen and (min-width: 768px) {
  #page-up a {
    width: 8rem;
    height: 8rem;
  }
  #page-up a:hover:after {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #page-up a:hover:before {
    border-color: #fff;
  }
  #page-up a:hover .txt {
    color: #0f174f;
  }
  #page-up a:hover span.cm-arr {
    border: solid #0f174f;
    border-width: 0 0.2rem 0.2rem 0;
  }
}
@media only screen and (max-width: 767px) {
  #page-up a {
    width: 4.5rem;
    height: 4.5rem;
  }
}
#page-up a span.cm-arr {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  content: "";
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.3rem;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  display: block;
}
#page-up a span.txt {
  display: block;
  width: 100%;
  text-align: center;
}
#page-up a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}

/*====================================================================================
3. START HAMBURGER
====================================================================================*/
.trigger-menu {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}
@media only screen and (min-width: 768px) {
  .trigger-menu {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .trigger-menu {
    height: 6rem;
    width: 6rem;
    position: relative;
    background: #a88d52;
  }
}
@media only screen and (max-width: 767px) {
  .trigger-menu span.line {
    width: 3rem;
    height: 3px;
    margin: auto auto 0.6rem;
    background: #fff;
    display: block;
  }
  .trigger-menu span.line:last-child {
    margin-bottom: 0;
  }
}
.trigger-menu.active span.line {
  width: 3.5rem;
  height: 0.3rem;
  display: block;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
}
.trigger-menu.active span.line:nth-child(2) {
  display: none;
}
.trigger-menu.active span.line:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.trigger-menu.active span.line:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.trigger-menu.active span.txt {
  margin-top: 2.5rem;
}

/*====================================================================================
3. START FADE-UP
====================================================================================*/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.fadein.fadein_on {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
@media only screen and (min-width: 768px) {
  .header {
    height: 15rem;
  }
}
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-left {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media only screen and (min-width: 768px) {
  .header-left {
    width: 33.4rem;
    padding: 3.5rem 0 0 4rem;
  }
}
@media only screen and (max-width: 1440px) {
  .header-left {
    padding: 1.5rem 0 0 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-left {
    width: 20.6rem;
    padding: 0;
    margin: 0.5rem 0 0 1.5rem;
  }
}
.header-logo {
  text-decoration: none !important;
}
.header-logo p {
  font-family: var(--font-Inter);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media only screen and (min-width: 768px) {
  .header-logo p {
    font-size: 1.6rem;
    margin: 0 0 0.3rem;
  }
}
@media only screen and (max-width: 1440px) {
  .header-logo p {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-logo p {
    font-size: 1.1rem;
    margin: 0 0 0.1rem;
  }
}
.header-logo img {
  display: block;
  width: 29.4rem;
}
@media only screen and (max-width: 767px) {
  .header-logo img {
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .header-right {
    width: calc(100% - 33.4rem);
  }
}
@media only screen and (max-width: 767px) {
  .header-right {
    width: 12rem;
  }
  .header-right .btn-pc {
    display: none !important;
  }
}
.header-right__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header .btn-contact {
  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;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0;
  gap: 1.3rem;
}
@media only screen and (min-width: 768px) {
  .header .btn-contact {
    width: 28.4rem;
    height: 8rem;
    background: #b37a17;
  }
}
@media only screen and (max-width: 767px) {
  .header .btn-contact {
    width: 30rem;
    height: 6rem;
    margin: auto;
    background: var(--co-accentcolor);
  }
}
.header .btn-contact img {
  width: 3.1rem;
  display: block;
}
.header .btn-line {
  background: #06c755;
  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;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0;
  padding-right: 1.4rem;
  gap: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .header .btn-line {
    width: 18rem;
    height: 8rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .btn-line {
    width: 30rem;
    height: 6rem;
    margin: 0 auto 2rem;
  }
}
.header .btn-line img {
  width: 3.6rem;
  display: block;
}
@media only screen and (min-width: 768px) {
  .header .tel {
    margin-right: 1.9rem;
  }
}
.header .tel .tel_txt {
  margin: 0 0 -0.5rem 0;
  text-align: center;
  color: #ba8220;
}
.header .tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-shippori);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .header .tel a {
    font-size: 3.5rem;
    gap: 0.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .tel a {
    width: 6rem;
    height: 6rem;
    font-size: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--co-accent);
  }
}
.header .tel a img {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .header .tel a img {
    top: 0.2rem;
    width: 2.8rem;
  }
}
.header .tel p {
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .header .tel p {
    margin: 0 0 0 -0.2rem;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .tel p {
    display: none;
  }
}
@media only screen and (max-width: 1440px) {
  .header-menu {
    margin-top: 2.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu {
    margin: 0;
    position: fixed;
    top: 6rem;
    width: 100%;
    left: 0;
    height: calc(100% - 6rem);
    background: #a88d52;
    padding: 3rem 2.5rem;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .header-menu.visible {
    opacity: 1;
    visibility: visible;
  }
}
.header-menu__gnav {
  font-family: var(--font-Inter);
  letter-spacing: 0;
}
@media only screen and (max-width: 1440px) {
  .header-menu__gnav {
    margin: 1rem 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .header-menu__gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: -1rem 0 0;
    padding: 0 3.4rem 0 0;
    gap: 3.6rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu__gnav {
    margin: 0;
    padding: 0;
  }
}
.header-menu__gnav li {
  list-style-type: none;
  position: relative;
}
.header-menu__gnav a {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .header-menu__gnav a {
    font-size: 1.6rem;
    color: #fff;
  }
}
.header-menu__link:hover {
  color: var(--co-primary);
}
@media only screen and (max-width: 767px) {
  .header-menu__link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--co-accentcolor);
  }
}
@media only screen and (min-width: 768px) {
  .header-menu__parent:hover .header-menu__anchor {
    color: var(--co-primary);
  }
  .header-menu__parent:hover .header-menu__anchor:after {
    border: solid var(--co-primary);
    border-width: 0 0.2rem 0.2rem 0;
  }
  .header-menu__parent:hover .header-menu__sub {
    opacity: 1;
    visibility: visible;
  }
  .header-menu__parent:hover .header-menu__sub a:hover {
    color: var(--co-accentcolor);
  }
}
@media only screen and (max-width: 767px) {
  .header-menu__parent.open .header-menu__sub {
    display: block;
  }
}
.header-menu__anchor {
  padding-right: 1.8rem;
  position: relative;
  cursor: pointer;
}
.header-menu__anchor:after {
  content: "";
  border: solid black;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.3rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .header-menu__anchor {
    font-size: 1.6rem;
    color: #fff;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--co-accentcolor);
  }
  .header-menu__anchor:after {
    border: solid #fff;
    border-width: 0 0.2rem 0.2rem 0;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}
@media only screen and (min-width: 768px) {
  .header-menu__splink {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu__splink {
    display: block;
    margin-top: 2rem;
    text-align: center;
  }
}
.header-menu__sub {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .header-menu__sub {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: var(--co-secondry);
    z-index: 999;
    padding: 1rem 2rem;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu__sub {
    margin: 0;
    padding: 0;
    display: none;
  }
}
.header-menu__sub a {
  display: block;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .header-menu__sub a {
    border-bottom: 1px solid #fff;
    padding: 0.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu__sub a {
    padding: 1rem 2.5rem;
    background: #fff;
    border-bottom: 1px solid var(--co-primary);
    color: #b37915;
  }
}
.header-menu__sub li:last-child a {
  border-bottom: none;
}

@media only screen and (min-width: 768px) {
  #cm-main {
    margin-top: 15rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-main {
    margin-top: 6rem;
  }
}

.cm-title {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cm-title {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title {
    margin: 0 0 3rem;
  }
}
.cm-title__jp {
  font-weight: 500;
  letter-spacing: 0;
  display: block;
  font-family: var(--font-Noto_jp);
}
@media only screen and (min-width: 768px) {
  .cm-title__jp {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title__jp {
    font-size: 2rem;
  }
}
.cm-title__jp span {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.cm-title__en {
  font-weight: 500;
  letter-spacing: 0;
  color: var(--co-accentcolor);
  display: block;
}
@media only screen and (min-width: 768px) {
  .cm-title__en {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title__en {
    font-size: 1.4rem;
    margin: -0.5rem;
  }
}

.cm-btn {
  background: var(--co-accent);
  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;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  height: 7.5rem;
}
.cm-btn:after {
  content: "";
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.35rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 2.2rem;
}
.cm-btn:before {
  content: "";
  width: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  height: 100%;
  background: var(--co-primary);
  position: absolute;
  left: 0;
  top: 0;
}
.cm-btn span {
  position: relative;
  z-index: 9;
}
.cm-btn:hover:before {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .cm-btn.cm-btn01 {
    width: 26rem;
    height: 6.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn.cm-btn01 {
    width: 26rem;
    height: 6rem;
  }
}
@media only screen and (min-width: 768px) {
  .cm-btn.cm-btn02 {
    width: 38rem;
    height: 7.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn.cm-btn02 {
    width: 30rem;
    height: 6rem;
  }
}
.cm-btn.cm-black {
  color: #000;
}
.cm-btn.cm-black:after {
  border: solid #000;
  border-width: 0 0.2rem 0.2rem 0;
}
.cm-btn.cm-back:after {
  right: auto;
  left: 2.2rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.cm-btn.cm-btn03:after {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.btn-more {
  font-weight: 500;
  position: relative;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .btn-more {
    font-size: 1.8rem;
    padding-right: 1rem;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
}
@media only screen and (max-width: 767px) {
  .btn-more {
    font-size: 1.4rem;
    padding-right: 1rem;
  }
}
.btn-more:after {
  content: "";
  border: solid black;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.3rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.cm-contact {
  background: #e9e4d6;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cm-contact {
    padding: 8.2rem 0 9.5rem;
  }
  .cm-contact .cm-title__jp {
    font-size: 3.6rem;
    font-weight: 700;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact {
    padding: 4rem 1.2rem;
  }
}
.cm-contact__ttl {
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .cm-contact__ttl {
    font-size: 2.8rem;
    margin: 4rem 0 1.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact__ttl {
    font-size: 1.6rem;
    margin: 0 0 1.7rem;
  }
}
.cm-contact__txt {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .cm-contact__txt {
    font-size: 1.8rem;
    line-height: 1.7777777778;
  }
}
.cm-contact__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 768px) {
  .cm-contact__end {
    gap: 3.3rem;
    margin-top: 5.7rem;
    padding-left: 0.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact__end {
    margin-top: 2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  .cm-contact__end .tel {
    margin-top: -0.7rem;
  }
}
.cm-contact__end .tel .header .tel .tel_txt {
  padding-left: 3.6rem;
  margin: 0 0 -0.5rem 0;
}
.cm-contact__end .tel a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-shippori);
  font-weight: 500;
  letter-spacing: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .cm-contact__end .tel a {
    font-size: 4.5rem;
    gap: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact__end .tel a {
    font-size: 4rem;
    gap: 0.8rem;
  }
}
.cm-contact__end .tel a img {
  position: relative;
  top: 0.4rem;
}
@media only screen and (min-width: 768px) {
  .cm-contact__end .tel a img {
    width: 3.5rem;
    height: 3.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact__end .tel a img {
    width: 3rem;
    height: 2.8rem;
  }
}
.cm-contact__end .tel p {
  text-align: center;
  margin: 0;
}
.cm-contact__end .tel p .tel_txt {
  margin: 0 0 0 5.2rem;
}
.cm-contact__end .list_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .cm-contact__end .list_btn {
    gap: 2.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact__end .list_btn {
    gap: 1.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2rem;
  }
}
.cm-contact__btn01 {
  font-weight: 500;
  color: #fff;
  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;
  text-decoration: none;
  letter-spacing: 0.1rem;
  padding-left: 3.6rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media only screen and (min-width: 768px) {
  .cm-contact__btn01 {
    background: #b37a17 url(../images/common_img/ico_mail.svg) no-repeat left 3.1rem center;
    background-size: 3.1rem 3.1rem;
    width: 36rem;
    height: 10rem;
    font-size: 1.8rem;
  }
  .cm-contact__btn01:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact__btn01 {
    background: #b37a17 url(../images/common_img/ico_mail.svg) no-repeat left 2rem center;
    background-size: 2rem 2.4rem;
    width: 25rem;
    height: 7rem;
    font-size: 1.6rem;
  }
}
.cm-contact__btn02 {
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  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;
  text-decoration: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cm-contact__btn02:hover {
  opacity: 0.7;
}
@media only screen and (min-width: 768px) {
  .cm-contact__btn02 {
    padding-left: 2.9rem;
    width: 35.3rem;
    height: 10rem;
    background: #06c755 url(../images/common_img/ico_line.svg) no-repeat left 2.4rem center;
    background-size: 5.6rem 5.6rem;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact__btn02 {
    background: #06c755 url(../images/common_img/ico_line.svg) no-repeat left 1.5rem center;
    background-size: 3rem auto;
    width: 25rem;
    height: 7rem;
    font-size: 1.6rem;
  }
}

.footer {
  background: #f5f2ea;
}
@media only screen and (min-width: 768px) {
  .footer {
    padding: 4.8rem 0 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-menu {
    display: none;
  }
}
.footer-menu ul {
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .footer-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer-menu li {
  list-style-type: none;
}
@media only screen and (max-width: 767px) {
  .footer-menu li {
    width: 50%;
  }
}
.footer-menu a {
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .footer-menu a {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .footer-menu a:hover {
    color: var(--co-accentcolor);
  }
}
@media only screen and (max-width: 767px) {
  .footer-menu a {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 768px) {
  .footer-end {
    margin-top: 6.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-end {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .footer-end01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-end01 {
    text-align: center;
  }
}
.footer-end01 p {
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footer-end01 p {
    margin: auto auto 1rem;
  }
}
.footer-end__logo {
  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;
}
@media only screen and (max-width: 767px) {
  .footer-end__logo {
    margin: auto;
  }
}
.footer-end__logo img {
  width: 23rem;
}
@media only screen and (min-width: 768px) {
  .footer-end .ct {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-end .ct {
    margin-top: 2rem;
  }
}
.footer-end .ct p {
  font-weight: 500;
  letter-spacing: 0;
  margin: 0;
  line-height: normal;
}
.footer .copyright {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .footer .copyright {
    margin: 8.5rem 0 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer .copyright {
    margin: 3rem 0 0;
  }
}