/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-Roboto: "Roboto", sans-serif;
  --font-Figtree: "Figtree", sans-serif;
  --co-oranger: #ff945d;
  --co-blue: #134368;
  --co-brown: #00b900;
  --co-primary: #49c0e5;
  --co-org: #f96518;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.08333vw;
  }
}

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02rem;
  color: #222222;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.8rem;
    line-height: 1.875;
  }
}
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

#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: #222222;
  text-decoration: underline;
  background-color: transparent;
}
a:hover, a:active, a:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    text-decoration: none;
    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: 0.1rem solid #ddd;
  background-color: #f4f4f4;
  overflow-x: auto;
}

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

button,
input[type=submit],
input[type=button] {
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
}

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

figure {
  margin: 0;
  padding: 0;
}

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

/*====================================================================================
2. START COMMON CONTAINER.
====================================================================================*/
.container {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 112rem;
    padding: 0 2rem;
  }
}
@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%;
}

.link-map a {
  background: url("../images/common_img/icon_location.webp") no-repeat center left;
  padding-left: 2rem;
}
@media only screen and (min-width: 768px) {
  .link-map a:hover {
    background: url("../images/common_img/icon_location-pink.webp") no-repeat center left;
    color: var(--co-pink);
  }
}

/*---------- START HAMBURGER ----------*/
.trigger-menu {
  width: 5.2rem;
  height: 5.2rem;
  background: #175e94;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  z-index: 99;
  border: none;
}
.trigger-menu span {
  display: block;
  position: absolute;
  width: 3.4rem;
  height: 0.2rem;
  background: #fff;
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.trigger-menu span:nth-child(1) {
  top: 1.6rem;
  transform-origin: left center;
}
.trigger-menu span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left center;
}
.trigger-menu span:nth-child(3) {
  bottom: 1.6rem;
  transform-origin: left center;
}
@media only screen and (min-width: 768px) {
  .trigger-menu {
    display: none;
  }
}

/*---------- START btn-contact ----------*/
.btn-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-pink);
  color: #fff;
  border-radius: 0 0 1.5rem 1.5rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  width: 16.7rem;
  height: 4.8rem;
}
.btn-contact a .icon {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .btn-contact a:hover {
    background: var(--bg-brown);
  }
  .btn-contact a .icon {
    padding-top: 0.5rem;
    padding-right: 1rem;
  }
  .btn-contact a .cm-arr {
    background: none;
  }
  .btn-contact a .cm-arr::before {
    top: 0.2rem;
  }
}

/*====================================================================================
4. START COMMON FOOTER
====================================================================================*/
/*---------- START copyright ----------*/
.copyright {
  background: #175e94;
  text-align: center;
  padding: 0.5rem 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 3.2rem;
}

/*---------- START page-up ----------*/
#page-up {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 3.7rem;
  z-index: 9;
}
#page-up a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 4.5rem;
  height: 4.5rem;
  background: #175e94;
  border-radius: 50%;
  text-decoration: none;
  overflow: hidden;
  color: #fff;
  transition: all 0.5s;
  z-index: 2;
}
#page-up a span {
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1;
}
#page-up a span.cm-arr {
  background: none;
  height: 1rem;
}
#page-up a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: #fff;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  #page-up a:hover .txt {
    color: #175e94;
  }
  #page-up a:hover:after {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
  }
  #page-up a:hover:before {
    border-color: #fff;
  }
  #page-up a:hover .cm-arr:before {
    border-top: 2px solid #175e94;
    border-right: 2px solid #175e94;
  }
}
@media only screen and (min-width: 768px) {
  #page-up {
    bottom: 19rem;
  }
  #page-up a {
    width: 6rem;
    height: 6rem;
  }
}

/*---------- START ARROW   ----------*/
.cm-arr {
  position: relative;
  display: flex;
  justify-content: 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;
  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 {
  transform: rotate(-45deg);
}
.cm-arr--down:before {
  transform: rotate(135deg);
}
.cm-arr--down.cm-arr--md2:before {
  left: 0;
  top: -0.2rem;
}
.cm-arr--up:before {
  transform: rotate(-45deg);
}

/*====================================================================================
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;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fadein.fadein_on {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s;
  z-index: 9999;
}
.header.fixed {
  box-shadow: 0 0 5px #49c0e5;
}
.header-inner {
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .header-inner {
    padding-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-inner {
    padding: 0 1rem 1.2rem;
  }
}
@media only screen and (min-width: 768px) {
  .header-logo {
    width: 35.6rem;
    margin: 2.8rem 0 0 3rem;
  }
}
@media only screen and (max-width: 1300px) and (min-width: 768px) {
  .header-logo {
    width: 28.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-logo {
    width: 22.9rem;
    margin: 0.5rem 0 0 0;
  }
}
.header-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .header-logo img {
    width: 35.6rem;
    height: 5.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-logo img {
    width: 22.9rem;
    height: 3.7rem;
  }
}
.header-right__top {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0 1.6rem;
}
.header-right__btn {
  display: flex;
  gap: 0.1rem;
  width: 31.2rem;
  border-radius: 0 0 0 0.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .header-right__btn {
    display: none;
  }
}
.header-right__btn a {
  width: calc(33.3333333333% - 0.1rem);
  display: block;
  height: 5.7rem;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  padding-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .header-right__btn a:hover {
    opacity: 0.7;
  }
}
.header-right__btn a img {
  display: block;
  margin: auto auto 0.1rem;
}
.header-right__btn a.btn1 {
  background: #ff945d;
  padding-top: 1.2rem;
}
.header-right__btn a.btn1 img {
  margin: auto auto 0.4rem;
}
.header-right__btn a.btn2 {
  background: #00b900;
}
.header-right__btn a.btn3 {
  background: #49c0e5;
}
.header-right__tel {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .header-right__tel {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-right__tel {
    margin: 0;
    align-items: center;
    gap: 0;
  }
}
.header-right__tel .tel_box {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .header-right__tel .tel_box {
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-right__tel .tel_box {
    width: 6.35rem;
    height: 5.2rem;
    position: relative;
    border: 1px solid #175e94;
  }
  .header-right__tel .tel_box::before {
    content: "";
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    top: 0.3rem;
    transform: translateX(-50%);
    left: 50%;
    border-radius: 50%;
  }
}
.header-right__tel .tel_box span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .header-right__tel .tel_box span {
    width: 4.2rem;
    height: 4.2rem;
    font-size: 1.4rem;
    top: 0.1rem;
    border-radius: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .header-right__tel .tel_box span {
    font-size: 1.25rem;
    color: #222222;
    padding-top: 2.5rem;
    text-align: center;
    display: block;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .header-right__tel .tel_box p {
    font-size: 2.8rem;
    line-height: 4.2rem;
    gap: 0.3rem;
    display: flex;
    align-items: center;
    font-family: var(--font-Figtree);
    font-weight: 500;
    letter-spacing: 0;
    color: #222222;
  }
}
@media only screen and (max-width: 1250px) {
  .header-right__tel .tel_box p {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-right__tel .tel_box p {
    display: none;
  }
}
.header-right__tel .tel_box p img {
  position: relative;
  top: 0.2rem;
}
@media only screen and (min-width: 768px) {
  .header-right__tel .tel_box.tel_box1 {
    padding-right: 20px;
    margin-right: 2rem;
    position: relative;
  }
  .header-right__tel .tel_box.tel_box1:after {
    content: "";
    width: 0.1rem;
    height: 3.2rem;
    background: #222222;
    position: absolute;
    top: 0.5rem;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header-right__tel .tel_box.tel_box1 {
    border-right: none;
  }
  .header-right__tel .tel_box.tel_box1:before {
    background: #175e94 url(../images/common_img/ico_tell_w.svg) no-repeat center center;
    background-size: 1.1rem 1.45rem;
  }
}
@media only screen and (min-width: 768px) {
  .header-right__tel .tel_box.tel_box1 span {
    border: 0.1rem solid #175e94;
  }
}
@media only screen and (max-width: 767px) {
  .header-right__tel .tel_box.tel_box2:before {
    background: #49c0e5 url(../images/common_img/ico_tell_w.svg) no-repeat center center;
    background-size: 1.1rem 1.45rem;
  }
}
@media only screen and (min-width: 768px) {
  .header-right__tel .tel_box.tel_box2 span {
    border: 0.1rem solid #49c0e5;
  }
}
@media only screen and (min-width: 768px) {
  .header-right__menu .inner {
    display: flex;
    justify-content: flex-end;
    padding-right: 3.5rem;
    gap: 5rem;
    margin-top: 1.6rem;
  }
}
@media only screen and (max-width: 1250px) {
  .header-right__menu .inner {
    gap: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-right__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 5.2rem 0 0;
    display: block;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-out;
  }
  .header-right__menu.is-visible {
    opacity: 1;
    visibility: visible;
  }
  .header-right__menu .inner {
    border-top: 0.1rem solid #b1b1b1;
    border-bottom: 0.1rem solid #b1b1b1;
    padding: 0 1.7rem 2rem;
  }
}
.header-right__menu a {
  text-decoration: none;
  letter-spacing: 0;
  color: #222;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .header-right__menu a:hover {
    color: var(--co-primary);
  }
}
@media only screen and (max-width: 767px) {
  .header-right__menu a {
    display: block;
    font-weight: 500;
    letter-spacing: 0;
  }
  .header-right__menu a:last-child {
    border-bottom: none;
  }
  .header-right__menu a.link-a {
    border-bottom: 0.1rem solid #b1b1b1;
    padding: 1.1rem 0;
  }
}
@media only screen and (min-width: 768px) {
  .header-right__menu .link_contact {
    background: url(../images/common_img/ico_mail.svg) no-repeat left top 1.2rem;
    background-size: 1.7rem auto;
    padding-left: 2.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-right__menu .link_contact {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .header-right__menu .btn-menu_close {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-right__menu .btn-menu_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 7rem;
    height: 6rem;
  }
  .header-right__menu .btn-menu_close span {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    float: right;
  }
  .header-right__menu .btn-menu_close span:before, .header-right__menu .btn-menu_close span:after {
    content: "";
    width: 3rem;
    height: 0.1rem;
    background: #020001;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .header-right__menu .btn-menu_close span::before {
    transform: translate(-50%, -50%) rotate(40deg);
  }
  .header-right__menu .btn-menu_close span::after {
    transform: translate(-50%, -50%) rotate(-40deg);
  }
}
@media only screen and (min-width: 768px) {
  .header-right__menu .menu_tel {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-right__menu .menu_tel {
    display: flex;
    margin-top: 2.6rem;
  }
  .header-right__menu .menu_tel .tel_box {
    display: flex;
    align-items: center;
    gap: 0.9rem;
  }
  .header-right__menu .menu_tel .tel_box.tel_box1 {
    padding-right: 1.8rem;
    margin-right: 1.5rem;
    position: relative;
  }
  .header-right__menu .menu_tel .tel_box.tel_box1:after {
    content: "";
    width: 0.1rem;
    height: 2.5rem;
    background: #222222;
    position: absolute;
    top: 0.5rem;
    right: 0;
  }
  .header-right__menu .menu_tel .tel_box.tel_box1 span {
    border: 0.1rem solid #175e94;
  }
  .header-right__menu .menu_tel .tel_box.tel_box2 span {
    border: 0.1rem solid #49c0e5;
  }
  .header-right__menu .menu_tel span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    letter-spacing: 0;
    position: relative;
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.1rem;
    top: 0.1rem;
    border-radius: 50%;
  }
  .header-right__menu .menu_tel p {
    font-size: 2.2rem;
    line-height: 3.35rem;
    gap: 0.25rem;
    display: flex;
    align-items: center;
    font-family: var(--font-Figtree);
    font-weight: 500;
    letter-spacing: 0;
    color: #222222;
  }
  .header-right__menu .menu_tel p img {
    position: relative;
    top: 0.2rem;
    width: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .header-list_sp {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-list_sp {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem 1.5rem;
  }
  .header-list_sp a {
    width: calc(25% - 0.375rem);
    height: 5.25rem;
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    display: block;
    text-align: center;
    padding-top: 0.9rem;
  }
  .header-list_sp a img {
    display: block;
    margin: auto;
  }
  .header-list_sp a.btn1 {
    background: #ff945d;
  }
  .header-list_sp a.btn1 img {
    width: auto;
    height: 1.5rem;
  }
  .header-list_sp a.btn2 {
    background: #00b900;
    padding-top: 0.8rem;
  }
  .header-list_sp a.btn2 img {
    width: auto;
    height: 1.7rem;
  }
  .header-list_sp a.btn3 {
    background: #49c0e5;
  }
  .header-list_sp a.btn3 img {
    width: auto;
    height: 1.8rem;
    margin-bottom: -0.2rem;
  }
  .header-list_sp a.btn4 {
    background: #f7ca5c;
    padding-top: 1.1rem;
  }
  .header-list_sp a.btn4 img {
    width: auto;
    height: 1.2rem;
    margin-bottom: 0.2rem;
  }
}
#cm-main {
  padding-top: var(--headerH);
}
.cm-title {
  color: var(--co-blue);
  font-weight: 500;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .cm-title {
    font-size: 4rem;
    padding-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title {
    font-size: 3rem;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
  }
}
.cm-title:after {
  content: "";
  width: 5.3rem;
  height: 0.1rem;
  background: var(--co-primary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cm_btn {
  border-radius: 5rem;
  background: var(--co-primary);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0.2rem solid var(--co-primary);
}
@media only screen and (min-width: 768px) {
  .cm_btn {
    width: 26rem;
    height: 6.4rem;
    transition: 0.3s all;
    padding: 0 2.1rem 0 2.8rem;
  }
  .cm_btn:hover {
    background: #fff;
    color: var(--co-primary);
  }
  .cm_btn:hover span {
    background: var(--co-primary);
  }
  .cm_btn:hover span:after {
    border: solid #fff;
    border-width: 0 0.2rem 0.2rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .cm_btn {
    width: 25rem;
    height: 5.5rem;
    padding: 0 1.5rem 0 2rem;
  }
}
.cm_btn span {
  display: block;
  background: #fff;
  border-radius: 50%;
  position: relative;
  transition: 0.3s all;
}
@media only screen and (min-width: 768px) {
  .cm_btn span {
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm_btn span {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.cm_btn span:after {
  content: "";
  border: solid var(--co-primary);
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 0.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  margin-left: -0.1rem;
}

.cm_btn .icon-down:after {
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: 0rem;
}
.cm_btn .icon-up:after {
  transform: translate(-50%, -50%) rotate(-135deg);
  margin-left: 0rem;
}
.footer {
  border-top: 0.2rem solid #e7f6f9;
}
@media only screen and (min-width: 768px) {
  .footer {
    margin-top: 15rem;
    padding-top: 4.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    margin-top: 6rem;
    padding-top: 5rem;
  }
}
.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .footer-top {
    padding-left: 5.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top img {
    width: 35rem;
  }
}
.footer-top p {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer-top p {
    padding-left: 3rem;
    margin-left: 3rem;
  }
  .footer-top p:before {
    width: 0.1rem;
    content: "";
    height: 3.8rem;
    background: #222222;
    position: absolute;
    left: 0;
    top: 0.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top p {
    margin-top: 2rem;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .footer-address {
    display: flex;
    margin-top: 5.1rem;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .footer-address {
    margin-top: 3rem;
  }
}
.footer-address .map {
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .footer-address .map {
    width: 47.8rem;
    height: 46.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-address .map {
    width: 100%;
    height: 30rem;
  }
}
.footer-address .map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media only screen and (min-width: 768px) {
  .footer-address__txt {
    width: calc(100% - 47.8rem);
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-address__txt {
    width: 100%;
    margin-top: 3rem;
  }
}
.footer-address__txt .title {
  display: flex;
  font-size: 2.4rem;
  font-weight: 500;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.8rem;
}
.footer-address__txt .txt {
  font-weight: 500;
  letter-spacing: 0;
}
.footer-address__txt .txt span {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #49c0e5;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.7rem;
  position: relative;
  top: -0.2rem;
}
.footer-address__box {
  width: 100%;
  border-radius: 1rem;
  background: #fff;
  z-index: 99;
  border: 0.1rem solid #cccccc;
  padding: 1.7rem 2.5rem 1.3rem;
  margin-top: 2.6rem;
}
.footer-address__box .calendar {
  width: 100%;
}
.footer-address__box .calendar tr {
  border-bottom: 0.1rem solid #222;
}
.footer-address__box .calendar tr:last-child {
  border-bottom: none;
}
.footer-address__box .calendar th {
  font-weight: 700;
  text-align: center;
  font-size: 1.5rem;
  padding: 0.5rem 0;
}
.footer-address__box .calendar th.th01 {
  font-family: var(--font-Figtree);
  width: 22.5rem;
  text-align: left;
  font-size: 1.6rem;
}
.footer-address__box .calendar th.th01 span {
  font-size: 1.4rem;
}
.footer-address__box .calendar th.th02 {
  display: flex;
  align-items: center;
  text-align: left;
}
.footer-address__box .calendar th.th02 span {
  font-size: 1.2rem;
}
.footer-address__box .calendar th.th02 img {
  margin-right: 0.5rem;
}
.footer-address__box .calendar td {
  text-align: center;
  padding: 0.5rem 0;
}
.footer-address__box .calendar td span {
  display: block;
  margin: auto;
}
.footer-address__box .calendar td .line {
  width: 1.2rem;
  height: 0.1rem;
  background: #222222;
}
.footer-address__box .calendar td .circle {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--co-primary);
}
.footer-address__box .txt {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  margin: 0.2rem 0 0.9rem;
}
@media only screen and (max-width: 767px) {
  .footer-address__box .txt {
    font-size: 1.6rem;
  }
}
.footer-address__tel {
  display: flex;
  margin-top: 3rem;
}
.footer-address__tel .tel_box {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .footer-address__tel .tel_box {
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-address__tel .tel_box {
    gap: 0.9rem;
  }
}
.footer-address__tel .tel_box span {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer-address__tel .tel_box span {
    width: 4.2rem;
    height: 4.2rem;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-address__tel .tel_box span {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.1rem;
  }
}
.footer-address__tel .tel_box p {
  display: flex;
  align-items: center;
  font-family: var(--font-Figtree);
  font-weight: 500;
  letter-spacing: 0;
  color: #222222;
}
@media only screen and (min-width: 768px) {
  .footer-address__tel .tel_box p {
    font-size: 2.8rem;
    line-height: 4.2rem;
    gap: 0.3rem;
  }
}
@media only screen and (max-width: 1250px) {
  .footer-address__tel .tel_box p {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-address__tel .tel_box p {
    font-size: 2.2rem;
    line-height: 3.35rem;
    gap: 0.25rem;
  }
}
.footer-address__tel .tel_box p img {
  position: relative;
  top: 0.2rem;
}
@media only screen and (max-width: 767px) {
  .footer-address__tel .tel_box p img {
    width: 1rem;
  }
}
.footer-address__tel .tel_box.tel_box1 {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer-address__tel .tel_box.tel_box1 {
    padding-right: 2rem;
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-address__tel .tel_box.tel_box1 {
    padding-right: 1.8rem;
    margin-right: 1.5rem;
  }
}
.footer-address__tel .tel_box.tel_box1:after {
  content: "";
  width: 0.1rem;
  background: #222222;
  position: absolute;
  top: 0.5rem;
  right: 0;
}
@media only screen and (min-width: 768px) {
  .footer-address__tel .tel_box.tel_box1:after {
    height: 3.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-address__tel .tel_box.tel_box1:after {
    height: 2.5rem;
  }
}
.footer-address__tel .tel_box.tel_box1 span {
  border: 0.1rem solid #175e94;
}
.footer-address__tel .tel_box.tel_box2 span {
  border: 0.1rem solid #49c0e5;
}
.footer-btn {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .footer-btn {
    margin-top: 4rem;
    gap: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-btn {
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
}
.footer-btn a {
  height: 4.4rem;
  position: relative;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  text-decoration: none;
  border-radius: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  .footer-btn a {
    font-size: 1.5rem;
    width: calc(25% - 3rem);
  }
  .footer-btn a:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .footer-btn a {
    font-size: 1.6rem;
    width: calc(50% - 1rem);
  }
}
.footer-btn a img {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.footer-btn a:after {
  content: "";
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  right: 1.9rem;
}
.footer-btn a.btn1 {
  background: #ff945d;
}
.footer-btn a.btn2 {
  background: #00b900;
}
.footer-btn a.btn3 {
  background: #49c0e5;
}
.footer-btn a.btn4 {
  background: #377fd2;
}
.footer-menu {
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .footer-menu {
    margin-top: 3.6rem;
    padding-bottom: 2.1rem;
    border-bottom: 0.1rem solid #c2c2c2;
  }
}
@media only screen and (max-width: 767px) {
  .footer-menu {
    flex-wrap: wrap;
    margin-top: 3rem;
    border-top: 0.1rem solid #c2c2c2;
  }
}
.footer-menu a {
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer-menu a {
    padding: 0 4.9rem;
  }
  .footer-menu a:after {
    content: "";
    width: 0.1rem;
    height: 1.5rem;
    background: #c2c2c2;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .footer-menu a:first-child {
    padding-left: 0;
  }
  .footer-menu a:first-child:after {
    content: none;
  }
  .footer-menu a:last-child {
    padding-right: 0;
  }
  .footer-menu a:hover {
    color: var(--co-primary);
  }
}
@media only screen and (max-width: 767px) {
  .footer-menu a {
    display: block;
    width: 100%;
    border-bottom: 0.1rem solid #c2c2c2;
    padding: 1rem 0;
  }
}
@media only screen and (min-width: 768px) {
  .footer-end {
    display: flex;
    justify-content: space-between;
    margin-top: 3.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-end {
    margin-top: 3rem;
  }
}
.footer-end .footer_logo {
  border: 0.3rem solid #e1e1e1;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.45rem;
}
@media only screen and (min-width: 768px) {
  .footer-end .footer_logo {
    width: 31rem;
    height: 6.6rem;
  }
  .footer-end .footer_logo:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 767px) {
  .footer-end .footer_logo {
    width: 38rem;
    height: 7rem;
    margin: auto;
  }
}
.footer-end .list_banner {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .footer-end .list_banner {
    gap: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-end .list_banner {
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
  }
}
.footer-end .list_banner div {
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .footer-end .list_banner div {
    font-size: 1.4rem;
    gap: 0.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer-end .list_banner div {
    width: 100%;
    font-size: 1.8rem;
    width: 30rem;
    gap: 1.5rem;
  }
  .footer-end .list_banner div p {
    width: 4rem;
  }
  .footer-end .list_banner div span {
    width: calc(100% - 5.5rem);
  }
  .footer-end .list_banner div img {
    height: 3.8rem;
    width: auto;
  }
}