@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap");
:root {
  --text: #1f1f1f;
  --bg: #F7F7F7;
  --main: #00AEBA;
  --sub: #83CDD2;
  --lh: 1.5;
  --headerHeight: 50px;
  --wave: url(../img/common/bg_wave-sp.jpg);
}
@media screen and (min-width: 768px) {
  :root {
    --lh: 1.8;
    --wave: url(../img/common/bg_wave-pc.jpg);
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --headerHeight: 80px;
  }
}

* {
  line-height: var(--lh);
}

html {
  margin: 0 !important;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
body::-webkit-scrollbar {
  display: none;
}

section {
  position: relative;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
a:hover {
  outline-width: 0;
  text-decoration: none;
  opacity: 0.8;
}
a.underline {
  text-decoration: underline;
}
a.underline:hover {
  text-decoration: none;
}
a.disabled {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

/* ============= common class ================ */
.inner {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1200px;
  }
}

.disp_none {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .disp_sm {
    display: none !important;
  }
}
@media screen and (min-width: 576px) {
  .disp_xs {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .disp_tab, .disp_pc, .disp_notsp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .disp_sm {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .disp_sp, .disp_pc {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .disp_sp, .disp_tab, .disp_notpc {
    display: none !important;
  }
}

.en {
  font-family: "Roboto", "Zen Kaku Gothic New", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.js-collapse {
  cursor: pointer;
}

.block {
  width: 100%;
  display: block;
}

.btn {
  width: 100%;
  padding: 18px 20px;
  background-color: var(--text);
  border: 1px solid var(--text);
  border-radius: 4px;
  color: #FFF;
  font-size: 14px;
  --lh: 1;
  text-align: center;
  display: inline-block;
}
.btn:hover {
  background-color: #fff;
  color: var(--text);
  opacity: 1;
}
.btn--dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-gap: 16px;
}
.btn--dot::after {
  content: "";
  width: 0.7143em;
  height: 0.7143em;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.btn--dot:hover::after {
  background-color: var(--text);
}

.fit {
  position: relative;
  overflow: hidden;
}
.fit__item {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------------------------------------------------
    header
-------------------------------------------------------*/
.header {
  width: 100%;
  height: var(--headerHeight);
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
}
.header.scrolled {
  background-color: #fff;
}
@media screen and (min-width: 1024px) {
  .header:has(.sub-menu.visible)::before {
    content: "";
    width: 100vw;
    height: 100vh;
    background: rgba(31, 31, 31, 0.6);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }
}
.header__inner {
  width: calc(100% - 20px);
  height: 100%;
  padding: 0 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    width: calc(100% - 40px);
    max-width: 1374px;
  }
}
@media screen and (min-width: 1440px) {
  .header__inner {
    padding: 0 0 0 13px;
  }
}
.header__sitelogo {
  width: 128px;
}
@media screen and (min-width: 768px) {
  .header__sitelogo {
    width: 155px;
  }
}
@media screen and (min-width: 1024px) {
  .header__sitelogo {
    width: 150px;
  }
}
@media screen and (min-width: 1200px) {
  .header__sitelogo {
    width: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .header__sitelogo {
    width: 256px;
  }
}
@media screen and (max-width: 1023px) {
  .header__navWrap {
    width: 100%;
    height: 100vh;
    padding-bottom: 60px;
    background: #fff center bottom/100% no-repeat;
    background-image: var(--wave);
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 26px;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.3s;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
  }
  .header__navWrap.visible {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1024px) {
  .header__navWrap {
    display: flex;
    align-items: center;
    grid-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .header__navWrap {
    grid-gap: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .header__navWrap {
    grid-gap: 50px;
  }
}
.header__gnav {
  display: flex;
}
.header__gnav li {
  position: relative;
}
.header__gnav li.hasSub > a::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M12 3.84L11.1 3L6.6 7.44L2.1 3L1.2 3.84L6.6 9.24L12 3.84Z" fill="%23282828"/></svg>') center/contain no-repeat;
  display: block;
  transition: 0.3s;
}
.header__gnav li.hasSub > a:hover::after, .header__gnav li.hasSub > a:active::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M12 3.84L11.1 3L6.6 7.44L2.1 3L1.2 3.84L6.6 9.24L12 3.84Z" fill="%2300AEBA"/></svg>') center/contain no-repeat;
}
.header__gnav li.hasSub > a.open::after {
  transform: rotate(180deg);
}
.header__gnav li.window > a {
  grid-gap: 4px;
}
.header__gnav li.window > a::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M8 10V5.5H2V10H8ZM9 7.5V6.5H10V2H4V4.5H3V2C3 1.725 3.098 1.48967 3.294 1.294C3.49 1.09833 3.72533 1.00033 4 1H10C10.275 1 10.5105 1.098 10.7065 1.294C10.9025 1.49 11.0003 1.72533 11 2V6.5C11 6.775 10.9022 7.0105 10.7065 7.2065C10.5108 7.4025 10.2753 7.50033 10 7.5H9ZM2 11C1.725 11 1.48967 10.9022 1.294 10.7065C1.09833 10.5108 1.00033 10.2753 1 10V5.5C1 5.225 1.098 4.98967 1.294 4.794C1.49 4.59833 1.72533 4.50033 2 4.5H8C8.275 4.5 8.5105 4.598 8.7065 4.794C8.9025 4.99 9.00033 5.22533 9 5.5V10C9 10.275 8.90217 10.5105 8.7065 10.7065C8.51083 10.9025 8.27533 11.0003 8 11H2Z" fill="%23282828"/></svg>') center/contain no-repeat;
  display: block;
}
.header__gnav li.window > a:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M8 10V5.5H2V10H8ZM9 7.5V6.5H10V2H4V4.5H3V2C3 1.725 3.098 1.48967 3.294 1.294C3.49 1.09833 3.72533 1.00033 4 1H10C10.275 1 10.5105 1.098 10.7065 1.294C10.9025 1.49 11.0003 1.72533 11 2V6.5C11 6.775 10.9022 7.0105 10.7065 7.2065C10.5108 7.4025 10.2753 7.50033 10 7.5H9ZM2 11C1.725 11 1.48967 10.9022 1.294 10.7065C1.09833 10.5108 1.00033 10.2753 1 10V5.5C1 5.225 1.098 4.98967 1.294 4.794C1.49 4.59833 1.72533 4.50033 2 4.5H8C8.275 4.5 8.5105 4.598 8.7065 4.794C8.9025 4.99 9.00033 5.22533 9 5.5V10C9 10.275 8.90217 10.5105 8.7065 10.7065C8.51083 10.9025 8.27533 11.0003 8 11H2Z" fill="%2300AEBA"/></svg>') center/contain no-repeat;
}
.header__gnav a {
  font-weight: 400;
  --lh: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  grid-gap: 8px;
  position: relative;
	  font-size: 14px;
}
.header__gnav a:hover {
  color: var(--main);
  opacity: 1;
}
.header__gnav .sub-menu {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: 0.3s;
}
.header__gnav .sub-menu.visible {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1023px) {
  .header__gnav {
    padding-top: 80px;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 4px;
	  max-width: 300px;
  }
  .header__gnav .sub-menu {
    max-height: 0;
    padding-left: 10px;
  }
  .header__gnav .sub-menu_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 0;
  }
  .header__gnav .sub-menu a {
    padding: 8px 0;
	  font-size: 16px;
  }
  .header__gnav .sub-menu.visible {
    max-height: 10000px;
  }
  .header__gnav a {
    padding: 10px 0;
  font-size: 20px;
  }
  .header__gnav a.disabled {
    color: #E3E3E3;
    position: relative;
  }
  .header__gnav a.disabled::after {
    content: "- coming soon -";
    color: #83CDD2;
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1024px) {
  .header__gnav {
    grid-gap: 0;
    align-self: stretch;
  }
  .header__gnav > li {
    padding: 0 5px;
    display: flex;
    align-items: center;
  }
  .header__gnav > li:first-child {
    padding-left: 0;
  }
  .header__gnav > li:last-child {
    padding-right: 0;
  }
  .header__gnav > li:has(.visible) > a {
    color: var(--main);
  }
  .header__gnav > li:has(.visible) > a::after {
    background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M12 3.84L11.1 3L6.6 7.44L2.1 3L1.2 3.84L6.6 9.24L12 3.84Z" fill="%2300AEBA"/></svg>') center/contain no-repeat;
  }
  .header__gnav a {
    grid-gap: 4px;
  }
  .header__gnav .sub-menu {
    padding: 30px 26px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    grid-gap: 27px;
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 2;
  }
  .header__gnav .sub-menu_ttl {
    padding-right: 48px;
    border-right: 1px solid #e7e7e7;
    font-size: 30px;
    --lh: 1;
  }
  .header__gnav .sub-menu_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px 20px;
  }
  .header__gnav .sub-menu_list a {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 8.5px;
  }
  .header__gnav .sub-menu_list a figure {
    width: 221px;
    height: 124px;
    border-radius: 6px;
    transition: 0.3s;
  }
  .header__gnav .sub-menu_list a figure.borderd {
    border: 1px solid #ccc;
  }
  .header__gnav .sub-menu_list a span {
    padding-left: 4px;
  }
  .header__gnav .sub-menu_list a:hover figure {
    opacity: 0.8;
  }
  .header__gnav .sub-menu_list a.disabled figure::after {
    content: "coming soon";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .header__gnav > li {
    padding: 0 8px;
  }
  .header__gnav a {
    grid-gap: 8px;
  }
  .header__gnav .sub-menu--service {
    right: auto;
  }
}
@media screen and (min-width: 1440px) {
  .header__gnav .sub-menu--product {
    right: calc(50vw - 600px);
  }
}
@media screen and (max-width: 1023px) {
  .header__btnsWrap {
    width: 100%;
    max-width: 300px;
    display: grid;
    grid-gap: 20px;
  }
  .header__btnsWrap .btn {
    padding: 15px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .header__btnsWrap {
    width: auto;
    display: flex;
    align-items: center;
    grid-gap: 10px;
  }
  .header__btnsWrap .btn {
	  white-space: nowrap;
    padding: 10px 10px;
    font-size: min(1vw,13px);
  }
}
@media screen and (min-width: 1300px) {
  .header__btnsWrap {
    grid-gap: 16px;
  }
  .header__btnsWrap .btn {
    padding: 10px 20px;
    font-size: min(1vw,14px);
  }
}
.header__spToggler {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  line-height: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 5px;
  flex-shrink: 0;
  position: relative;
}
.header__spToggler::before {
  content: "";
  width: 94px;
  height: 90px;
  background-color: var(--main);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__spToggler:focus {
  outline: 0;
  box-shadow: none;
}
.header__spToggler span {
  width: 21px;
  height: 1px;
  background: #fff;
  display: block;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.header__spToggler.open span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.header__spToggler.open span + span {
  transform: rotate(-45deg);
}
.header__spToggler.open span + span + span {
  transform: scale(0);
}

/*------------------------------------------------------
  main
-------------------------------------------------------*/
main:has(.pageTtlArea) {
  background: var(--wave) center top 10px/100% no-repeat;
}
@media screen and (min-width: 768px) {
  main:has(.pageTtlArea) {
    background-position: center top -80px;
  }
}

.pageTtlArea {
  width: 100%;
  padding-top: 100px;
  --lh: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 40px;
}
@media screen and (min-width: 768px) {
  .pageTtlArea {
    grid-gap: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .pageTtlArea {
    padding-top: 186px;
    grid-gap: 100px;
  }
}
.pageTtlArea__ttl {
  display: flex;
  flex-direction: column-reverse;
  grid-gap: 10px;
}
.pageTtlArea__ttl .jp {
  font-size: 14px;
  font-weight: 700;
}
.pageTtlArea__ttl .en {
  font-size: 40px;
  font-weight: 400;
  --lh: 1.2;
}
@media screen and (min-width: 1024px) {
  .pageTtlArea__ttl {
    grid-gap: 8px;
  }
  .pageTtlArea__ttl .en {
    font-size: 64px;
  }
}
.pageTtlArea__img {
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .pageTtlArea__img {
    max-width: 1400px;
  }
}

.secTtl {
  font-size: 14px;
  --lh: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 13px;
}
.secTtl--center {
  align-items: center;
}
.secTtl__en {
  font-size: 285.71%;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .secTtl {
    font-size: 18px;
    grid-gap: 15px;
  }
  .secTtl__en {
    font-size: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .secTtl__en {
    font-size: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .secTtl__en {
    font-size: 90px;
  }
}

.sec404 {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .sec404 {
    padding: 100px 0;
  }
}
@media screen and (min-width: 1024px) {
  .sec404 {
    padding: 120px 0;
  }
}
.sec404 p {
  text-align: center;
}
.sec404 p + p {
  margin-top: 40px;
}
.sec404 .btn {
  width: 211px;
}

/*------------------------------------------------------
    footer
-------------------------------------------------------*/
.footLinkArea {
  width: 100%;
}
.footLinkArea__list {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
}
@media screen and (min-width: 576px) {
  .footLinkArea__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
.footLinkArea__list .listItem {
  width: 100%;
  padding-top: 100%;
  background-color: #727272;
  position: relative;
}
.footLinkArea__list .listItem:nth-child(odd) {
  background: url(../img/common/footlink_bg-recruit.jpg) center/cover no-repeat;
}
.footLinkArea__list .listItem:nth-child(even) {
  background: url(../img/common/footlink_bg-contact.jpg) center/cover no-repeat;
}
@media screen and (min-width: 768px) {
  .footLinkArea__list .listItem {
    padding-top: min(100%, 450px);
  }
  .footLinkArea__list .listItem:nth-child(odd) .listItem__inner {
    margin-right: 0;
  }
  .footLinkArea__list .listItem:nth-child(even) .listItem__inner {
    margin-left: 0;
  }
}
.footLinkArea__list .listItem__link {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.footLinkArea__list .listItem__link:hover {
  background-color: rgba(0, 0, 0, 0.3);
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  opacity: 1;
}
.footLinkArea__list .listItem__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 34px;
}
@media screen and (min-width: 768px) {
  .footLinkArea__list .listItem__inner {
    width: 100%;
    max-width: 720px;
  }
}
@media screen and (min-width: 1024px) {
  .footLinkArea__list .listItem__inner {
    grid-gap: 62px;
  }
}
.footLinkArea__list .listItem__txtWrap {
  padding-top: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 6px;
}
.footLinkArea__list .listItem__txtWrap_ttl {
  font-size: 14px;
  --lh: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 14px;
}
.footLinkArea__list .listItem__txtWrap_ttl .en {
  font-size: 40px;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .footLinkArea__list .listItem__txtWrap_txt {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .footLinkArea__list .listItem__txtWrap_txt {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .footLinkArea__list .listItem__txtWrap {
    padding-top: 12%;
    grid-gap: 10px;
  }
  .footLinkArea__list .listItem__txtWrap_ttl {
    font-size: 18px;
  }
  .footLinkArea__list .listItem__txtWrap_ttl .en {
    font-size: 90px;
  }
}
.footLinkArea__list .listItem__moreTxt {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 16px;
}
.footLinkArea__list .listItem__moreTxt::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.footer {
  padding: 57px 0 20px;
  background-color: var(--text);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 98px 0 30px;
  }
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    grid-gap: 0;
  }
}
.footer__leftCol {
  display: contents;
}
@media screen and (min-width: 768px) {
  .footer__leftCol {
    width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .footer__leftCol {
    width: 50%;
  }
}
.footer__rightCol {
  display: contents;
}
@media screen and (min-width: 768px) {
  .footer__rightCol {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: center;
  }
}
@media screen and (min-width: 1024px) {
  .footer__rightCol {
    width: 50%;
  }
}
.footer__btmRow {
  display: contents;
}
@media screen and (min-width: 768px) {
  .footer__btmRow {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
    order: 1;
  }
}
.footer__logo {
  width: 100%;
  max-width: 246px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .footer__logo {
    max-width: 373px;
  }
}
.footer__addres {
  width: 100%;
  margin-bottom: 32px;
  font-size: 14px;
  --lh: 1.6;
}
@media screen and (min-width: 768px) {
  .footer__addres {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__addres {
    font-size: 16px;
  }
}
.footer__contactWrap {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
  order: 1;
}
.footer__contactWrap_list {
  display: grid;
  grid-gap: 10px;
  --main: #00B2AE;
}
.footer__contactWrap_list .btn {
  background-color: var(--main);
  border-color: var(--main);
  font-size: 16px;
  --lh: 1;
  position: relative;
}
.footer__contactWrap_list .btn::after {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
.footer__contactWrap_list .btn:hover {
  background-color: #fff;
  color: var(--main);
  opacity: 1;
}
.footer__contactWrap_list .btn:hover::after {
  background-color: var(--main);
}
.footer__contactWrap_list .btn--newwin::after {
  width: 19px;
  height: 19px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M8 10V5.5H2V10H8ZM9 7.5V6.5H10V2H4V4.5H3V2C3 1.725 3.098 1.48967 3.294 1.294C3.49 1.09833 3.72533 1.00033 4 1H10C10.275 1 10.5105 1.098 10.7065 1.294C10.9025 1.49 11.0003 1.72533 11 2V6.5C11 6.775 10.9022 7.0105 10.7065 7.2065C10.5108 7.4025 10.2753 7.50033 10 7.5H9ZM2 11C1.725 11 1.48967 10.9022 1.294 10.7065C1.09833 10.5108 1.00033 10.2753 1 10V5.5C1 5.225 1.098 4.98967 1.294 4.794C1.49 4.59833 1.72533 4.50033 2 4.5H8C8.275 4.5 8.5105 4.598 8.7065 4.794C8.9025 4.99 9.00033 5.22533 9 5.5V10C9 10.275 8.90217 10.5105 8.7065 10.7065C8.51083 10.9025 8.27533 11.0003 8 11H2Z" fill="%23fff"/></svg>') center/contain no-repeat;
  border-radius: 0;
}
.footer__contactWrap_list .btn--newwin:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M8 10V5.5H2V10H8ZM9 7.5V6.5H10V2H4V4.5H3V2C3 1.725 3.098 1.48967 3.294 1.294C3.49 1.09833 3.72533 1.00033 4 1H10C10.275 1 10.5105 1.098 10.7065 1.294C10.9025 1.49 11.0003 1.72533 11 2V6.5C11 6.775 10.9022 7.0105 10.7065 7.2065C10.5108 7.4025 10.2753 7.50033 10 7.5H9ZM2 11C1.725 11 1.48967 10.9022 1.294 10.7065C1.09833 10.5108 1.00033 10.2753 1 10V5.5C1 5.225 1.098 4.98967 1.294 4.794C1.49 4.59833 1.72533 4.50033 2 4.5H8C8.275 4.5 8.5105 4.598 8.7065 4.794C8.9025 4.99 9.00033 5.22533 9 5.5V10C9 10.275 8.90217 10.5105 8.7065 10.7065C8.51083 10.9025 8.27533 11.0003 8 11H2Z" fill="%2300AEBA"/></svg>') center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .footer__contactWrap {
    width: 100%;
    max-width: 335px;
    margin: 0;
  }
}
.footer__nav {
  width: calc(100% - 25px);
  max-width: 400px;
  margin: 0 12.5px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  grid-gap: 20px;
}
.footer__nav_list {
  font-weight: 400;
  --lh: 1;
  display: grid;
  grid-gap: 26px;
}
.footer__nav_list .sub-menu {
  padding-left: 10px;
  margin-top: 17px;
  font-size: 14px;
  display: grid;
  grid-gap: 15px;
}
.footer__nav_list .window a {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.footer__nav_list .window a::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M8 10V5.5H2V10H8ZM9 7.5V6.5H10V2H4V4.5H3V2C3 1.725 3.098 1.48967 3.294 1.294C3.49 1.09833 3.72533 1.00033 4 1H10C10.275 1 10.5105 1.098 10.7065 1.294C10.9025 1.49 11.0003 1.72533 11 2V6.5C11 6.775 10.9022 7.0105 10.7065 7.2065C10.5108 7.4025 10.2753 7.50033 10 7.5H9ZM2 11C1.725 11 1.48967 10.9022 1.294 10.7065C1.09833 10.5108 1.00033 10.2753 1 10V5.5C1 5.225 1.098 4.98967 1.294 4.794C1.49 4.59833 1.72533 4.50033 2 4.5H8C8.275 4.5 8.5105 4.598 8.7065 4.794C8.9025 4.99 9.00033 5.22533 9 5.5V10C9 10.275 8.90217 10.5105 8.7065 10.7065C8.51083 10.9025 8.27533 11.0003 8 11H2Z" fill="%23fff"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    width: auto;
    max-width: 100%;
    margin: 0 6px;
    grid-gap: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__nav {
    grid-gap: 88px;
  }
}
.footer__btnsWrap {
  margin-bottom: 30px;
  order: 1;
}
.footer__btnsWrap_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 18px;
}
.footer__btnsWrap_list .btn {
  padding: 8px 18px;
  border-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}
.footer__btnsWrap_list .btn::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M9 7L14 2M14 2H10.6667M14 2V5.33333M14 9.33333V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H6.66667" stroke="%23fff" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
.footer__btnsWrap_list .btn:hover::after {
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M9 7L14 2M14 2H10.6667M14 2V5.33333M14 9.33333V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H6.66667" stroke="%231f1f1f" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .footer__btnsWrap {
    margin: 70px 0 30px auto;
  }
  .footer__btnsWrap_list {
    flex-direction: row;
    align-items: center;
  }
}
.footer__btmMenu {
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 50px;
  order: 1;
}
.footer__btmMenu_linkList {
  font-size: 12px;
  font-weight: 400;
  --lh: 1;
  display: flex;
  align-items: center;
  grid-gap: 16px;
}
.footer__btmMenu_snsList {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 16px;
  align-self: center;
}
.footer__btmMenu_snsList img {
  width: 31px;
}
@media screen and (min-width: 768px) {
  .footer__btmMenu {
    margin: 0;
    flex-direction: row;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .footer__btmMenu {
    grid-gap: 60px;
  }
}
.footer__copyright {
  width: 100%;
  font-size: 10px;
  font-weight: 400;
  --lh: 1;
  text-align: center;
  order: 1;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .footer__copyright {
    font-size: 12px;
  }
}