/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
:root {
  --font-jost: "Jost", sans-serif;
  --font-zenmincho: "Zen Old Mincho", serif;
  --co-accent: #7fb9fb;
  --co-secondry: #878787;
  --co-primary: #003894;
  --co-scent: #ec6bae;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
}
html.no-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 2.666vw;
  }
}
: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;
  letter-spacing: 0.1rem;
  color: #000;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 47.9375em) {
  body {
    font-size: 1.4rem;
    line-height: 1.875;
  }
}
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
body.no-scroll {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

#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: #4b3f2c;
  text-decoration: underline;
  background-color: transparent;
}
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: #4b3f2c;
}
@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: 1px 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;
  font-family: "Zen Kaku Gothic New", serif;
}

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;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 120rem;
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 1.2rem;
  }
}

/*====================================================================================
3. START COMMON HEADER
====================================================================================*/
.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

#cm-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 9999;
}
#cm-header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#cm-header .header-inner__logo {
  background: #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;
}
@media only screen and (min-width: 768px) {
  #cm-header .header-inner__logo {
    width: 12.6rem;
    height: 13rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .header-inner__logo {
    width: 6rem;
    height: 6rem;
  }
}
#cm-header .header-inner__logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  #cm-header .header-inner__logo img {
    width: 5rem;
    height: 5.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .header-inner__logo img {
    width: 4rem;
    height: 4.4rem;
  }
}
@media only screen and (min-width: 768px) {
  #cm-header .header-inner__right {
    padding: 4rem 4rem 2rem;
  }
  #cm-header .header-inner__right .menu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .header-right__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--co-primary);
    z-index: 999;
    padding: 8rem 2rem;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  #cm-header .header-right__menu.active {
    opacity: 1;
    visibility: visible;
  }
}
#cm-header .menu-btn__contact {
  height: 6.5rem;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  #cm-header .menu-btn__contact {
    width: 22rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .menu-btn__contact {
    width: 100%;
    margin: 3rem auto 0;
  }
}
#cm-header .menu-btn__contact a {
  width: 100%;
  height: 100%;
  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: var(--co-accent);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media only screen and (min-width: 768px) {
  #cm-header .menu-btn__contact a:hover {
    background: var(--co-primary);
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .menu-link__b {
    border-bottom: 1px solid #000;
  }
}
#cm-header .menu-link__b a {
  color: #fff;
  text-decoration: none;
  display: block;
}
@media only screen and (min-width: 768px) {
  #cm-header .menu-link__b a {
    padding: 1.6rem 2rem 1.9rem 0;
  }
  #cm-header .menu-link__b a:hover {
    color: var(--co-primary);
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .menu-link__b a {
    font-size: 1.6rem;
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .menu-link__a {
    border-bottom: 1px solid #000;
  }
}
#cm-header .menu-link__a a {
  color: #fff;
  text-decoration: none;
  background: url(../images/common_img/link.svg) no-repeat right center;
  background-size: 1.4rem 1.4rem;
  display: block;
}
@media only screen and (min-width: 768px) {
  #cm-header .menu-link__a a {
    padding: 1.6rem 2rem 1.9rem 0;
  }
  #cm-header .menu-link__a a:hover {
    background: url(../images/common_img/link_bl.svg) no-repeat right center;
    background-size: 1.4rem 1.4rem;
    color: var(--co-primary);
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .menu-link__a a {
    font-size: 1.6rem;
    padding: 1.5rem;
  }
}
#cm-header .menu-link__parent {
  color: #fff;
  text-decoration: none;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #cm-header .menu-link__parent {
    padding: 1.6rem 1.9rem 1.9rem 0;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .menu-link__parent {
    font-size: 1.6rem;
    padding: 1.5rem;
  }
}
#cm-header .menu-link__parent:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  border-top: 0.9rem solid #fff;
  position: absolute;
  right: 0.2rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media only screen and (min-width: 768px) {
  #cm-header .menu-link__parent:after {
    top: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .menu-link__parent:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
#cm-header .menu-link__p {
  position: relative;
}
@media only screen and (min-width: 768px) {
  #cm-header .menu-link__p:hover .menu-link__parent {
    color: var(--co-primary);
  }
  #cm-header .menu-link__p:hover .menu-link__parent:after {
    border-left: 0.6rem solid transparent;
    border-right: 0.6rem solid transparent;
    border-top: 0.9rem solid var(--co-primary);
  }
  #cm-header .menu-link__p:hover .submenu {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .menu-link__p {
    border-bottom: 1px solid #000;
  }
  #cm-header .menu-link__p.active .menu-link__parent:after {
    -webkit-transform: translateY(-50%) rotate(-60deg);
            transform: translateY(-50%) rotate(-60deg);
  }
}
@media only screen and (min-width: 768px) {
  #cm-header .submenu {
    position: absolute;
    top: 100%;
    width: 25rem;
    padding-top: 0.7rem;
    display: none;
  }
  #cm-header .submenu.submenu2 {
    width: 46rem;
  }
  #cm-header .submenu.submenu2 .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 1.8rem;
    padding: 3.5rem 3rem 3.2rem;
    background: #fff;
  }
  #cm-header .submenu.submenu2 .inner ul {
    padding: 0;
  }
  #cm-header .submenu:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 0.9rem solid transparent;
    border-right: 0.9rem solid transparent;
    border-bottom: 1.5rem solid #fff;
    position: absolute;
    top: -0.8rem;
    left: 2.1rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .submenu {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 1s ease;
    transition: max-height 1s ease;
  }
  #cm-header .submenu.active {
    max-height: 50rem;
  }
  #cm-header .submenu .inner ul {
    border-bottom: 1px solid #000;
  }
  #cm-header .submenu .inner ul:last-child {
    border-bottom: none;
  }
}
#cm-header .submenu ul {
  background: #fff;
}
@media only screen and (min-width: 768px) {
  #cm-header .submenu ul {
    padding: 3.5rem 3rem 3.2rem;
  }
}
@media only screen and (min-width: 768px) {
  #cm-header .submenu li {
    margin-bottom: 1.2rem;
  }
}
#cm-header .submenu li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #cm-header .submenu li:last-child a {
    border-bottom: none;
  }
}
#cm-header .submenu li a {
  color: #000;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  #cm-header .submenu li a {
    padding: 0.4rem 1rem 0.4rem 4rem;
  }
  #cm-header .submenu li a:hover {
    background: #edf5f6;
    color: var(--co-primary);
  }
  #cm-header .submenu li a:hover:before {
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 0.9rem solid var(--co-primary);
  }
}
@media only screen and (max-width: 767px) {
  #cm-header .submenu li a {
    padding: 1.5rem 2rem 1.5rem 4rem;
    font-size: 1.6rem;
    border-bottom: 1px solid #000;
  }
}
#cm-header .submenu li a:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.9rem solid #000;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 768px) {
  #cm-header.fixed {
    background: #f5f5f5;
  }
}
@media only screen and (min-width: 768px) {
  #cm-header.fixed .header-inner__right {
    padding: 3.2rem 4rem;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
}
@media only screen and (min-width: 768px) {
  #cm-header.fixed .menu-link__b a {
    color: #000;
  }
  #cm-header.fixed .menu-link__a a {
    color: #000;
    background: url(../images/common_img/link_blk.svg) no-repeat right center;
    background-size: 1.4rem 1.4rem;
  }
  #cm-header.fixed .menu-link__a a:hover {
    color: var(--co-primary);
    background: url(../images/common_img/link_bl.svg) no-repeat right center;
  }
  #cm-header.fixed .menu-link__parent {
    color: #000;
  }
  #cm-header.fixed .menu-link__parent:after {
    border-left: 0.6rem solid transparent;
    border-right: 0.6rem solid transparent;
    border-top: 0.9rem solid #000;
  }
}

.cm-title01 {
  text-align: center;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .cm-title01 {
    margin-bottom: 2rem;
  }
}
.cm-title01 span {
  display: block;
}
.cm-title01 span.jp {
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  .cm-title01 span.jp {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title01 span.jp {
    font-size: 2.4rem;
  }
}
.cm-title01 span.en {
  color: var(--co-primary);
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .cm-title01 span.en {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title01 span.en {
    font-size: 1.4rem;
  }
}
.cm-title02 {
  text-align: center;
  letter-spacing: 0.05em;
  color: var(--co-primary);
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .cm-title02 {
    font-size: 3rem;
    margin: 0 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title02 {
    font-size: 2rem;
    margin: 0 0 1.5rem;
  }
}

/*---------- START HAMBURGER ----------*/
.trigger-menu {
  width: 6rem;
  height: 6rem;
  background: var(--co-primary);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  z-index: 99;
  border: none;
  position: relative;
  z-index: 9999;
}
.trigger-menu span {
  display: block;
  position: absolute;
  width: 3rem;
  height: 0.2rem;
  background: #fff;
  opacity: 1;
  left: 50%;
  margin: auto;
  -webkit-transform: translateX(-50%) rotate(0deg);
          transform: translateX(-50%) rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.trigger-menu span:nth-child(1) {
  top: 2rem;
}
.trigger-menu span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.trigger-menu span:nth-child(3) {
  bottom: 2rem;
}
.trigger-menu.active {
  background: #fff;
}
.trigger-menu.active span {
  background: var(--co-primary);
  position: absolute;
}
.trigger-menu.active span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
}
.trigger-menu.active span:nth-child(2) {
  opacity: 0;
}
.trigger-menu.active span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
}
@media only screen and (min-width: 768px) {
  .trigger-menu {
    display: none;
  }
}

/*---------- START copyright ----------*/
.copyright {
  background: var(--bg-brown);
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .copyright {
    padding: 5.7rem 0 5.1rem;
  }
}
@media only screen and (max-width: 767px) {
  .copyright {
    padding: 3rem 0 2rem;
  }
}

/*---------- START page-up ----------*/
#page-up {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 3.7rem;
  z-index: 999;
}
#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;
  border: 0.1rem solid var(--co-primary);
  border-radius: 50%;
  text-decoration: none;
  overflow: hidden;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
  background: #fff;
}
#page-up a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: var(--co-primary);
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}
@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 .icon:before {
    background: #fff;
  }
  #page-up a:hover .icon:after {
    border: solid #fff;
    border-width: 0 0.2rem 0.2rem 0;
  }
}
@media only screen and (max-width: 767px) {
  #page-up a {
    width: 5rem;
    height: 5rem;
  }
}
#page-up a .icon {
  height: 1.8rem;
  width: 0.9rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  display: block;
}
#page-up a .icon:before {
  width: 0.2rem;
  height: 100%;
  background: var(--co-primary);
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#page-up a .icon:after {
  content: "";
  border: solid var(--co-primary);
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 3px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-135deg);
          transform: translateX(-50%) rotate(-135deg);
}
@media only screen and (min-width: 768px) {
  #page-up {
    bottom: 19rem;
  }
  #page-up a {
    width: 8rem;
    height: 8rem;
  }
}

/*====================================================================================
5. START COMMON CSS
====================================================================================*/
.a-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

/*---------- 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);
}

/*---------- START ARROW   ----------*/
.cm-arr {
  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;
  background: var(--bg-pink);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}
.cm-arr:before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 0.2rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cm-arr--white {
  background: #fff;
}
.cm-arr--white:before {
  border-top: 2px solid var(--bg-brown);
  border-right: 2px solid var(--bg-brown);
}
.cm-arr--brown {
  background: var(--bg-brown);
}
.cm-arr--lg {
  width: 3rem;
  height: 3rem;
}
.cm-arr--md {
  width: 2rem;
  height: 2rem;
}
.cm-arr--md:before {
  width: 0.7rem;
  height: 0.7rem;
  left: -0.2rem;
}
.cm-arr--md2 {
  width: 1.7rem;
  height: 1.7rem;
}
.cm-arr--md2:before {
  width: 0.7rem;
  height: 0.7rem;
  left: -0.2rem;
}
.cm-arr--sm {
  width: 1.5rem;
  height: 1.5rem;
}
.cm-arr--sm:before {
  width: 0.7rem;
  height: 0.7rem;
  top: -0.2rem;
}
.cm-arr--right:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cm-arr--down:before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.cm-arr--down.cm-arr--md2:before {
  left: 0;
  top: -0.2rem;
}
.cm-arr--up:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

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

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

.cm-btn01 {
  background: var(--co-primary);
  border: 0.2rem solid var(--co-primary);
  position: relative;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .cm-btn01 {
    width: 49.5rem;
    height: 10rem;
  }
  .cm-btn01:after {
    width: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .cm-btn01:hover:after {
    width: 100%;
  }
  .cm-btn01:hover a {
    color: var(--co-primary);
  }
  .cm-btn01:hover .icon:before {
    background: var(--co-primary);
  }
  .cm-btn01:hover .icon:after {
    border: solid var(--co-primary);
    border-width: 0 0.2rem 0.2rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn01 {
    width: 25rem;
    height: 6rem;
  }
}
.cm-btn01 a {
  width: 100%;
  height: 100%;
  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;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  z-index: 9;
}
@media only screen and (min-width: 768px) {
  .cm-btn01 a {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn01 a {
    font-size: 1.4rem;
  }
}
.cm-btn01 .icon {
  width: 1.8rem;
  height: 0.9rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}
@media only screen and (min-width: 768px) {
  .cm-btn01 .icon {
    right: 2.9rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn01 .icon {
    right: 1.5rem;
  }
}
.cm-btn01 .icon:before {
  width: 100%;
  height: 0.2rem;
  background: #fff;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cm-btn01 .icon:after {
  content: "";
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.cm-btn02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 1px solid #000;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  padding-bottom: 0.3rem;
}
@media only screen and (min-width: 768px) {
  .cm-btn02:hover {
    color: var(--co-primary);
    border-bottom: 1px solid var(--co-primary);
  }
  .cm-btn02:hover .icon:before {
    background: var(--co-primary);
  }
  .cm-btn02:hover .icon:after {
    border: solid var(--co-primary);
    border-width: 0 0.2rem 0.2rem 0;
  }
}
.cm-btn02 .icon {
  width: 1.7rem;
  height: 0.9rem;
  display: block;
  position: relative;
  top: -0.3rem;
}
.cm-btn02 .icon:before {
  width: 100%;
  height: 0.2rem;
  background: #000;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cm-btn02 .icon:after {
  content: "";
  border: solid #000;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

#cm-footer {
  background: #000409 url(../images/common_img/f_bg.webp) no-repeat top center;
  background-size: 100% auto;
}
#cm-footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  #cm-footer .footer {
    margin-top: 13.1rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  #cm-footer .footer {
    margin-top: 6rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#cm-footer .footer a {
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #cm-footer .footer_logo {
    text-align: center;
  }
}
#cm-footer .footer_logo_img {
  background: #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;
}
@media only screen and (min-width: 768px) {
  #cm-footer .footer_logo_img {
    width: 17.9rem;
    height: 18.9rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-footer .footer_logo_img {
    width: 9rem;
    height: 9rem;
    margin: auto;
  }
}
#cm-footer .footer_logo_img img {
  display: block;
}
@media only screen and (min-width: 768px) {
  #cm-footer .footer_logo_img img {
    width: 11.2rem;
    height: 12.3rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-footer .footer_logo_img img {
    width: 6rem;
    height: 6.6rem;
  }
}
#cm-footer .footer .ttl {
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  #cm-footer .footer .ttl {
    font-size: 1.8rem;
    margin: 1.7rem 0 0.3rem;
  }
}
@media only screen and (max-width: 767px) {
  #cm-footer .footer .ttl {
    font-size: 1.6rem;
    margin: 1.5rem 0 0.3rem;
  }
}
#cm-footer .footer .txt1 {
  letter-spacing: 0.1em;
}
#cm-footer .footer .txt2 {
  letter-spacing: 0.1em;
  margin-top: 0.9rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  #cm-footer .footer .txt2 {
    font-size: 1.6rem;
  }
  #cm-footer .footer .txt2 a {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) {
  #cm-footer .footer_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 76.5rem;
    margin-top: 3.3rem;
    gap: 2.5rem 0;
  }
}
@media only screen and (max-width: 767px) {
  #cm-footer .footer_right {
    display: none;
  }
}
#cm-footer .footer_right .item p,
#cm-footer .footer_right .item a {
  letter-spacing: 0.1em;
}
#cm-footer .footer_right .item:nth-child(1) {
  margin-right: 6rem;
}
#cm-footer .footer_right .item:nth-child(2) {
  margin-right: 4.4rem;
}
#cm-footer .footer_right .item:nth-child(3) {
  margin-right: 5.5rem;
}
#cm-footer .footer_right .item:nth-child(4) {
  margin-right: 4.8rem;
}
#cm-footer .footer_right .item:nth-child(5) a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
}
#cm-footer .footer_right .item:nth-child(6) {
  margin-right: 6rem;
}
#cm-footer .footer_right .item ul {
  margin-top: 1rem;
}
#cm-footer .footer_right .item ul li {
  line-height: 2.1875;
}
@media only screen and (min-width: 768px) {
  #cm-footer .footer_right a:hover {
    color: var(--co-accent);
  }
  #cm-footer .footer_right a:hover img {
    opacity: 0.6;
  }
}

.cm-contact {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .cm-contact {
    padding-top: 9.1rem;
  }
  .cm-contact .cm-title01 .jp {
    font-size: 3rem;
    margin-bottom: 0.9rem;
  }
  .cm-contact .cm-title01 .en {
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact {
    padding: 4rem 1.5rem 0;
  }
  .cm-contact .cm-title01 .en {
    color: #fff;
  }
}
.cm-contact__txt {
  text-align: center;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .cm-contact__txt {
    margin: 3.1rem 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .cm-contact__in {
    max-width: 126rem;
    padding: 0 3rem;
    margin: 9.1rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact__in {
    margin: 6rem 0 0;
  }
}
.cm-contact .ttl {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .cm-contact .ttl {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact .ttl {
    font-size: 1.8rem;
  }
}
.cm-contact .cm-tel {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cm-contact .cm-tel {
    width: 50%;
  }
}
.cm-contact .cm-tel a {
  color: #fff;
}
.cm-contact .cm-tel a img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cm-contact .cm-tel a img {
    margin: 5.1rem auto 5.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact .cm-tel a img {
    margin: 1rem auto;
    width: 3.5rem;
  }
}
.cm-contact .cm-tel a span {
  font-family: var(--font-jost);
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .cm-contact .cm-tel a span {
    font-size: 7rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact .cm-tel a span {
    font-size: 4rem;
  }
}
.cm-contact .cm-tel .txt {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}
@media only screen and (min-width: 768px) {
  .cm-contact .cm-tel .txt {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact .cm-tel .txt {
    font-size: 1.6rem;
  }
}
.cm-contact .cm-mail {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cm-contact .cm-mail {
    width: 50%;
    padding: 0 5.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact .cm-mail {
    margin-top: 6rem;
    padding-top: 6rem;
    position: relative;
  }
  .cm-contact .cm-mail:before {
    content: "";
    width: 10rem;
    height: 0.1rem;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (min-width: 768px) {
  .cm-contact .cm-mail img {
    margin: 5.4rem auto 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact .cm-mail img {
    margin: 1rem auto 2rem;
    width: 4rem;
  }
}
.cm-contact .cm-mail .btn-contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--co-accent);
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .cm-contact .cm-mail .btn-contact {
    height: 12rem;
    font-size: 1.8rem;
  }
  .cm-contact .cm-mail .btn-contact:hover {
    background: var(--co-primary);
  }
}
@media only screen and (max-width: 767px) {
  .cm-contact .cm-mail .btn-contact {
    height: 6rem;
    font-size: 1.6rem;
    max-width: 25rem;
    margin: auto;
  }
}