@charset "UTF-8";
/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
:root {
  --font-Noto_jp: "Noto Serif JP", serif;
  --co-secondary: #006ab1;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.6;
  scroll-behavior: auto !important;
}
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: "Noto Sans JP", 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;
  touch-action: none;
}
@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;
}
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: 120rem;
    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: 2rem;
    right: 1rem;
  }
}
#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: #063190;
  text-decoration: none;
  overflow: hidden;
  color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
  border: 0.1rem solid #063190;
}
@media only screen and (min-width: 768px) {
  #page-up a {
    width: 8.4rem;
    height: 8.4rem;
    border-radius: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  #page-up a {
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
  }
}
#page-up a span.cm-arr {
  position: relative;
  width: 2rem;
  height: 1.3rem;
  display: block;
  margin-bottom: 0.5rem;
}
#page-up a span.cm-arr:before {
  content: "";
  border: solid #fff;
  border-width: 0 0.1rem 0.1rem 0;
  padding: 0.4rem;
  top: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) rotate(-135deg);
  transform: translateX(-50%) rotate(-135deg);
}
#page-up a span.cm-arr:after {
  content: "";
  width: 0.1rem;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#page-up a span.txt {
  display: block;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #page-up a span.txt {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  #page-up a span.txt {
    font-size: 1rem;
  }
}

/*====================================================================================
3. START HAMBURGER
====================================================================================*/
.trigger-menu {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  background: var(--co-secondary);
  display: block;
}
@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;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .trigger-menu span.line {
    width: 3rem;
    height: 0.3rem;
    margin: auto auto 0.7rem;
    background: #fff;
    display: block;
  }
  .trigger-menu span.line:last-child {
    margin-bottom: 0;
  }
}
.trigger-menu.active span.line {
  width: 3rem;
  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);
}

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

/*====================================================================================
10. START COPPYRIGHT
====================================================================================*/
.copyright {
  color: #b3b3b3;
  letter-spacing: -0.02em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .copyright {
    font-size: 1.6rem;
    margin: 0;
    position: absolute;
    left: 3rem;
    bottom: 2.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .copyright {
    font-size: 1.3rem;
    margin: 3rem 0 1rem;
  }
}

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

#cm-main {
  margin-top: var(--headerH);
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 9999;
}
@media only screen and (min-width: 768px) {
  .header {
    padding: 0 3.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    padding: 0 0 0 1.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .header_logo {
    width: 34.5rem;
    margin: 3.5rem 0 0 0;
  }
}
@media only screen and (max-width: 1300px) {
  .header_logo {
    width: 30rem;
  }
}
@media only screen and (max-width: 767px) {
  .header_logo {
    width: 20rem;
    display: block;
    margin: 0;
  }
  .header_logo img {
    width: 20.5rem;
    height: 1.8rem;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .header_contact {
    padding: 2.6rem 0 2.7rem;
  }
}
.header_contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .header_contact a {
    padding: 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .header_contact a span {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    display: block;
    background: #120d3c url(../images/common_img/ico_mail_w.webp) no-repeat center center;
    background-size: 2.4rem auto;
    border: 0.1rem solid #120d3c;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
}
@media only screen and (max-width: 767px) {
  .header_contact a span {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .header_contact a:hover {
    color: #120d3c;
  }
  .header_contact a:hover span {
    background: #fff url(../images/common_img/ico_mail_bl.webp) no-repeat center center;
    background-size: 2.4rem auto;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu {
    position: fixed;
    top: 6rem;
    width: 100%;
    height: calc(100% - 6rem);
    z-index: 9999;
    left: 0;
    background: #fff;
    padding: 2rem;
    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_nav {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .header_menu_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5.2rem;
  }
}
@media only screen and (max-width: 1400px) {
  .header_menu_nav {
    gap: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .header_menu .menu_sub:hover .header_menu_sub:after {
    width: 100%;
  }
  .header_menu .menu_sub:hover .header_menu_child {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu .menu_sub {
    border-bottom: 1px solid var(--co-secondary);
    padding: 1.5rem;
  }
  .header_menu .menu_sub .header_menu_link {
    border-bottom: none;
    padding: 0;
  }
  .header_menu .menu_sub.open .icon:before {
    opacity: 0;
  }
  .header_menu .menu_sub.open .header_menu_child {
    display: block;
  }
}
.header_menu .header_menu_link {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .header_menu .header_menu_link {
    padding: 3.6rem 0 3.5rem;
  }
  .header_menu .header_menu_link:hover:after {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu .header_menu_link {
    padding: 1.5rem;
    display: block;
    border-bottom: 1px solid var(--co-secondary);
  }
}
.header_menu .header_menu_link:after {
  content: "";
  width: 0;
  height: 0.2rem;
  background: #120d3c;
  position: absolute;
  top: 6.9rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.header_menu .header_menu_sub {
  margin: 0;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .header_menu .header_menu_sub {
    padding: 3.6rem 0 3.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu .header_menu_sub {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.header_menu .header_menu_sub .icon {
  width: 1rem;
  height: 1rem;
  position: relative;
}
.header_menu .header_menu_sub .icon:before,
.header_menu .header_menu_sub .icon:after {
  content: "";
  width: 100%;
  height: 0.2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #000;
}
.header_menu .header_menu_sub .icon:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.header_menu li {
  list-style-type: none;
  position: relative;
}
.header_menu li a {
  letter-spacing: 0.05em;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .header_menu .header_menu_child {
    position: absolute;
    top: 100%;
    left: -0.8rem;
    display: none;
    width: 39.2rem;
    padding: 2.3rem 0 0;
  }
  .header_menu .header_menu_child:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-bottom: 1.9rem solid #fff;
    position: absolute;
    top: 0.5rem;
    left: 4.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu .header_menu_child {
    padding: 1rem 0 0;
    display: none;
  }
}
.header_menu .header_menu_child ul {
  margin: 0;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .header_menu .header_menu_child ul {
    padding: 3.6rem 3.5rem 2.9rem 4.4rem;
    border-radius: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header_menu .header_menu_child ul {
    padding: 0;
  }
}
.header_menu .header_menu_child ul li {
  position: relative;
  padding-left: 15px;
}
@media only screen and (min-width: 768px) {
  .header_menu .header_menu_child ul li:hover a {
    color: #006ab1;
    font-weight: 500;
  }
}
.header_menu .header_menu_child ul li a {
  letter-spacing: -0.02em;
  line-height: 2.5;
}
.header_menu .header_menu_child ul li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .header_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  .header_right .sp_contact {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header_right .sp_contact {
    font-size: 0;
    width: 6rem;
    height: 6rem;
    background: #120d3c url(../images/common_img/ico_mail_w.webp) no-repeat center center;
    background-size: 3.4rem auto;
    display: block;
  }
}

.cm-title {
  color: var(--co-secondary);
  font-family: var(--font-Noto_jp);
}
@media only screen and (min-width: 768px) {
  .cm-title {
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title {
    margin: 0 0 2rem;
  }
}
.cm-title_jp {
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
}
@media only screen and (min-width: 768px) {
  .cm-title_jp {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title_jp {
    font-size: 2.6rem;
  }
}
.cm-title_en {
  font-weight: 400;
  display: block;
}
@media only screen and (min-width: 768px) {
  .cm-title_en {
    font-size: 1.8rem;
    margin-top: 0.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-title_en {
    font-size: 1.5rem;
    margin-top: 0.3rem;
  }
}

.text_center {
  text-align: center;
}

.cm-btn {
  border: 0.1rem solid var(--co-secondary);
  border-radius: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  text-decoration: none;
  color: var(--co-secondary);
  letter-spacing: 0.1em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .cm-btn {
    width: 24.3rem;
    height: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn {
    width: 22rem;
    height: 5rem;
    margin: auto;
  }
}
.cm-btn.cm-btn_w {
  border: 0.1rem solid #fff;
  color: #fff;
}
.cm-btn.cm-btn_w .icon {
  background: #fff;
}
.cm-btn .icon {
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: var(--co-secondary);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media only screen and (min-width: 768px) {
  .cm-btn:hover {
    background: var(--co-secondary);
    color: #fff;
  }
  .cm-btn:hover .icon {
    background: #fff;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.s-contact {
  background: url(../images/common_img/bg-contact.webp) no-repeat center center;
  background-size: cover;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .s-contact {
    padding: 8.4rem 0 9.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .s-contact {
    padding: 4rem 0;
  }
}
.s-contact .cm-title {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .s-contact_ct {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.s-contact_ttl {
  font-family: var(--font-Noto_jp);
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .s-contact_ttl {
    font-size: 2.4rem;
    margin: 3.5rem 0 2.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .s-contact_ttl {
    font-size: 1.8rem;
    margin: 0 0 1.5rem;
    text-align: center;
  }
}
.s-contact p {
  margin: 0;
}
.s-contact_btn {
  border-radius: 6rem;
  border: 0.1rem solid #063190;
  -webkit-transition: none !important;
  transition: none !important;
}
@media only screen and (min-width: 768px) {
  .s-contact_btn {
    width: 35.8rem;
    height: 8rem;
    background: #fff url(../images/common_img/ico_mail_bl1.webp) no-repeat left 3.8rem center;
    background-size: 3.2rem auto;
    margin-top: 5.8rem;
    padding-left: 2rem;
  }
  .s-contact_btn:hover {
    background: #063190 url(../images/common_img/ico_mail_w.webp) no-repeat left 3.8rem center;
    background-size: 3.2rem auto;
  }
}
@media only screen and (max-width: 767px) {
  .s-contact_btn {
    background: #fff url(../images/common_img/ico_mail_bl1.webp) no-repeat left 2rem center;
    background-size: 2.8rem auto;
    margin-top: 3rem;
    padding-left: 2rem;
    gap: 1.5rem;
  }
}

.footer {
  background: #120d3c;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .footer {
    padding-top: 7rem;
    padding-bottom: 5.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 4rem 0 1rem;
  }
}
.footer a {
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .footer a:hover {
    color: var(--co-secondary);
  }
}
.footer_inner {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.footer ul {
  padding: 0;
  margin: 0;
}
.footer ul li {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0.3rem;
}
.footer ul ul {
  padding-left: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .footer ul ul {
    margin-top: 0.8rem;
  }
}
.footer ul ul a {
  text-decoration: none;
  letter-spacing: -0.02em;
}
.footer ul ul li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0;
}
.footer ul ul li:before {
  content: "・";
  font-size: 1.6rem;
  position: absolute;
  left: 0;
  top: 0;
}
.footer .link-icon {
  text-decoration: none;
  letter-spacing: -0.02em;
  position: relative;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .footer .link-icon {
    padding-left: 1.7rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer .link-icon {
    padding-left: 1.5rem;
  }
}
.footer .link-icon:before {
  content: "";
  border-radius: 0.2rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: var(--co-secondary);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .footer .link-icon:before {
    width: 1rem;
    height: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer .link-icon:before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.footer_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) {
  .footer_right {
    width: 50.5rem;
    margin-top: -0.6rem;
    gap: 6.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer_right {
    gap: 1rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer_left {
    text-align: center;
  }
  .footer_left .footer_logo {
    width: 28rem;
    margin: auto;
  }
}
.footer_left p {
  margin: 2.2rem 0 0;
  letter-spacing: -0.02em;
  line-height: 1.9;
}
