@charset "UTF-8";

/*全体共通*/
:root,
html {
  font-size: 10px;
}

* {
  box-sizing: border-box;
}

body {
  --max-width: 900px;
  --c-base: #000;
  --c-main: #072C69;
  --c-y-light: #FDF753;
  --c-y-dark: #EBC31A;
  --c-b-light: #5CB2E8;
  --c-b-dark: #0A50C4;
  --c-g-light: #7CE62E;
  --c-g-dark: #00B437;
  --ff-main: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  /* Noto Sans   Thin:100, ExtraLight:200, Lithg:300, Medium:500, SemiBold:600, Bold:700, ExtraBold:800, Black:900 */
  --ff-mincho: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --ff-en: "Open Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  /* Open Sans   Light: 300, Meium:500, SemiBold:600, Bold:700, ExtraBold:800 */

  position: relative;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--ff-main);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}

body.-fixed {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
}

/* IE表示用のCSS　*/
@media all and (-ms-high-contrast:none) {
  body {
    font-family: "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  }
}

::before,
::after {
  box-sizing: border-box;
}

a {
  display: inline-block;
  color: inherit;
  font-weight: inherit;
}

a:hover {
  cursor: pointer;
}

body.userAgent-pc a[href^="tel:"] {
  pointer-events: none;
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}

select {
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.--ff-en {
  font-family: var(--ff-en);
}

.--c-red {
  color: #e60012 !important;
}

.--c-white {
  color: #fff !important;
}

.--center {
  text-align: center !important;
}

.--ta-l {
  text-align: left !important;
}

.--ta-r {
  text-align: right !important;
}

.--ta-justify {
  text-justify: inter-ideograph;
  text-align: justify;
  text-align-last: left;
}

.--bold {
  font-weight: bold !important;
}

.--thin {
  font-weight: 100 !important;
}

.--nowrap {
  white-space: nowrap;
}

.--kerning {
  font-feature-settings: "palt";
}

.--overflow-ellipsis {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

a.--h-opacity,
.--h-opacity a {
  transition: opacity .3s;
}

a.--h-opacity:hover,
.--h-opacity a:hover {
  opacity: .6;
}

.--under {
  border-bottom: 1px solid #888;
}

.--img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.--img-contain {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.--clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.--d-ib {
  display: inline-block !important;
}

.--d-n {
  display: none !important;
}

.--d-f {
  display: flex !important;
}

.--justify-center {
  display: flex;
  justify-content: center;
}

.--absolute {
  position: absolute;
  top: 0;
  left: 0;
}

.--js-accordion {
  cursor: pointer;
}

/* PC */
@media (min-width: 900px) {
  .--tab {
    display: none !important;
  }

  .--sp {
    display: none !important;
  }

  .--tab-sp {
    display: none !important;
  }

  .--pc_pl-0 {
    padding: 0 !important;
  }

  .--pc_pr-0 {
    padding: 0 !important;
  }
}

/* TAB */
@media screen and (max-width: 899px) and (min-width: 481px) {
  .--pc {
    display: none !important;
  }

  .--sp {
    display: none !important;
  }

  .--pc-sp {
    display: none !important;
  }

  .--tab_pl-0 {
    padding: 0 !important;
  }

  .--tab_pr-0 {
    padding: 0 !important;
  }
}

/* SP */
@media screen and (max-width: 480px) {
  .--pc {
    display: none !important;
  }

  .--tab {
    display: none !important;
  }

  .--pc-tab {
    display: none !important;
  }

  .--sp-pl-0 {
    padding: 0 !important;
  }

  .--sp-pr-0 {
    padding: 0 !important;
  }

  .--sp_fs-14 {
    font-size: 14px !important;
  }

  .--sp_fs-16 {
    font-size: 16px !important;
  }

  .--sp_fs-18 {
    font-size: 18px !important;
  }
}

/* 共通 */
.cntInner,
._Inner {
  width: 100%;
  margin: 0 auto;
}

._Inner {
  max-width: 892px;
}

._Title {
  color: var(--c-b-dark);
  text-align: center;
}

._Title .ja {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: .2em;
  display: inline-block;
  position: relative;
}

._Title .ja::before,
._Title .ja::after {
  position: absolute;
  content: "";
  /* width: 52px; */
  /* height: 3px; */
  width: 3px;
  height: 50px;
  border-radius: 1px;
  /* transform: rotate(295deg); */
  transform: rotate(25deg);
  background: var(--c-b-dark);
  /* bottom: 20%; */
  bottom: -10px;
}

._Title .ja::before {
  left: -125px;
}

._Title .ja::after {
  right: -125px;
}

._Title .en {
  font-size: 1.5rem;
  font-family: var(--ff-en);
  font-weight: 600;
  letter-spacing: .15em;
}

/* TAB */
@media screen and (max-width: 899px) {
  ._Title .ja {
    font-size: 3.5rem;
    font-size: calc(35px - (899px - 100vw) / (524 / 15));
    letter-spacing: .12em;
  }

  ._Title .ja::before,
  ._Title .ja::after {
    height: 121%;
    min-height: 2em;
    min-height: 52px;
    width: 1px;
  }

  ._Title .ja::before {
    left: -100px;
  }

  ._Title .ja::after {
    right: -100px;
  }

  ._Title .en {
    font-size: 1.3rem;
  }
}

/* SP */
@media screen and (max-width: 480px) {
  ._Title .ja {
    display: block;
  }

  ._Title .ja::before,
  ._Title .ja::after {
    bottom: -1em;
  }

  ._Title .ja::before {
    left: 10px;
  }

  ._Title .ja::after {
    right: 10px;
  }
}

/* inview */
._Inview {
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
}

._Inview.-fadeup {
  transform: translateY(100px);
}

._Inview.-delay2 {
  transition-delay: .2s;
}

._Inview.-delay4 {
  transition-delay: .4s;
}

._Inview.active {
  opacity: 1;
  transform: none;
}

/* 無料WEB説明会 */
._Free {
  background: var(--c-main);
}

._Free .cntInner {
  max-width: 1252px;
  width: 100%;
  padding: 52px 20px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 25px;
}

._Free .cntImg {
  flex-basis: 38.77%;
  height: 334px;
}

._Free .cntBox {
  flex-basis: 59.158%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-weight: 400;
}

._Free .cntText-catch {
  font-weight: 400;
  font-size: 2rem;
  text-decoration: underline;
  text-underline-offset: 7px;
  padding-bottom: 14px;
}

._Free .cntTitle {
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: .2em;
  padding-bottom: 19px;
}

._Free .cntTitle .large {
  font-size: 4rem;
}

._Free .cntText {
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.875;
  padding-bottom: 39px;
  text-align: center;
}

/* TAB */
@media screen and (max-width: 899px) {
  ._Free .cntInner {
    padding: 18px 20px;
  }

  ._Free .cntImg {
    /* flex-basis: 38.77%;
		height: 334px; */
  }

  ._Free .cntBox {
    flex-basis: 100%;
    /* flex-basis: 59.158%;
		display: flex;
		flex-direction: column;
		align-items: center;
		color: #fff;
		font-weight: 400; */
  }

  ._Free .cntText-catch {
    font-size: 1.8rem;
    padding-bottom: 10px;
  }

  ._Free .cntTitle {
    font-size: 2rem;
    letter-spacing: .1em;
    padding-bottom: 13px;
  }

  ._Free .cntTitle .large {
    font-size: 2.7rem;
  }

  ._Free .cntText {
    font-size: 1.4rem;
    font-weight: 700;
    padding-bottom: 19px;
  }
}

/* SP */
@media screen and (max-width: 480px) {
  ._Free .cntInner {
    padding-left: 10px;
    padding-right: 10px;
  }

  ._Free .cntTitle {
    font-size: 5.3vw;
  }

  ._Free .cntTitle .large {
    font-size: 7.1vw;
  }

  ._Free .cntText {
    font-size: 3.6vw;
  }
}

/* WEB説明会・LINEボタン */
._Btns {
  display: flex;
  text-align: center;
  /*  justify-content: space-between;*/
  justify-content: center;
  gap: 10px 12px;
  max-width: 639px;
  width: 100%;
  line-height: 1.2;
}

._Btns .cntBtn-free {
  border-radius: 20px;
  width: 368px;
  height: 115px;
  padding: 15px 18px 0;
  box-shadow: 0px 3px 6px #00000029;
  display: flex;
  justify-content: right;
  align-items: flex-start;
  position: relative;
  transition: box-shadow .3s;
}

._Btns .cntBtn-free:hover {
  box-shadow: none;
}

._Btns .cntBtn-free::before,
._Btns .cntBtn-free::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 2px;
  border-radius: 1px;
  bottom: 13px;
}

._Btns .cntBtn-free.bg-y::before,
._Btns .cntBtn-free.bg-y::after {
  background: var(--c-main);
}

._Btns .cntBtn-free.bg-b::before,
._Btns .cntBtn-free.bg-b::after {
  background: #fff;
}

._Btns .cntBtn-free::before {
  transform-origin: center right;
  transform: rotate(45deg);
  left: calc(50% - 8px);
}

._Btns .cntBtn-free::after {
  transform-origin: center left;
  transform: rotate(-45deg);
  left: 50%;
}

._Btns .cntBtn-free .text {
  width: 100%;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: .15em;
}

._Btns .cntBtn-free .ls-wide {
  letter-spacing: .2em;
}

._Btns .cntBtn-free .large {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .1em;
}

._Btns .cntBtn-free .fw-sb {
  font-weight: 600;
}

._Btns .cntBtn-free .icon {
  width: 62px;
  /* margin-left: 15px; */
}

._Btns .cntBtn-free.bg-y {
  background: linear-gradient(180deg, var(--c-y-light), var(--c-y-dark));
  color: var(--c-main);
}

._Btns .cntBtn-free.bg-b {
  background: linear-gradient(180deg, var(--c-b-light), var(--c-b-dark));
  color: #fff;
}

._Btns .cntBtn-line {
  border-radius: 20px;
  width: 259px;
  height: 115px;
  padding: 15px 18px 15px 20px;
  padding-right: 18px;
  padding-top: 15px;
  color: #fff;
  box-shadow: 0px 3px 6px #00000029;
  display: flex;
  /* justify-content: right; */
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(180deg, var(--c-g-light), var(--c-g-dark));
  /* margin-left: 12px; */
  position: relative;
  transition: box-shadow .3s;
}

._Btns .cntBtn-line:hover {
  box-shadow: none;
}

._Btns .cntBtn-line::before,
._Btns .cntBtn-line::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  bottom: 13px;
}

._Btns .cntBtn-line::before {
  transform-origin: center right;
  transform: rotate(45deg);
  left: calc(50% - 8px);
}

._Btns .cntBtn-line::after {
  transform-origin: center left;
  transform: rotate(-45deg);
  left: 50%;
}

._Btns .cntBtn-line .text {
  width: 100%;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: .1em;
}

._Btns .cntBtn-line .large {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .22em;
  display: block;
}

._Btns .cntBtn-line .icon {
  width: 62px;
  margin-left: 12px;
}

@media screen and (max-width: 1100px) {
  ._Btns .cntBtn-line .large {
    display: inline-block;
    letter-spacing: .02em;
  }

  ._Free ._Btns,
  #nav ._Btns {
    flex-direction: column;
    align-items: center;
  }

  ._Free .cntBtn-line {
    width: 368px;
    height: auto;
  }

  ._Free .cntBtn-line .text,
  #nav .cntBtn-line .text {
    padding-top: 10px;
  }
}

@media screen and (min-width: 899px) and (max-width: 1100px) {

  ._Free .cntBtn-line .text,
  #nav .cntBtn-line .text {
    font-size: 1.8rem;
  }

  ._Free .cntBtn-line .large,
  #nav .cntBtn-line .large {
    font-size: 2.7rem;
  }
}

/* TAB */
@media screen and (max-width: 899px) {
  ._Btns .cntBtn-free {
    width: 100%;
    max-width: 274px;
    height: 83px;
    padding: 9px 10px 0;
    border-radius: 7px;
  }

  ._Btns .cntBtn-line {
    width: 100%;
    max-width: 274px;
    height: auto;
    padding: 9px 10px 12px;
    border-radius: 7px;
  }

  ._Btns .cntBtn-free::before,
  ._Btns .cntBtn-free::after,
  ._Btns .cntBtn-line::before,
  ._Btns .cntBtn-line::after {
    width: 6px;
    height: 1px;
    bottom: 10px;
  }

  ._Btns .cntBtn-free::after,
  ._Btns .cntBtn-line::after {
    left: calc(50% - 2px);
  }

  ._Btns .cntBtn-free .text {
    font-size: 1.7rem;
  }

  ._Btns .cntBtn-line .text {
    padding-top: 6px;
    font-size: 1.5rem;
    letter-spacing: 0;
  }

  ._Btns .cntBtn-free .large {
    font-size: 2.5rem;
  }

  ._Btns .cntBtn-line .large {
    font-size: 2.4rem;
  }

  ._Btns .cntBtn-free .icon,
  ._Btns .cntBtn-line .icon {
    width: 50px;
  }
}

/* ローディング */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 999;
}

/* トップへ戻るボタン */
#top {
  position: fixed;
  top: auto;
  bottom: 0;
  right: 0;
  z-index: 100;
}

/* ヘッダー */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 129px;
  padding: 0 10px;
  /* background: #63ACEA; */
  z-index: 100;
  transition: .3s;
}

#header.active {
  height: 80px;
  background: #fff;
}

#header .cntInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  max-width: 1280px;
  height: 100%;
}

#headerLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 17.5vw;
  max-width: 240px;
  height: 60px;
  /* padding: 10px; */
  /*  border: 1px solid #fff;*/
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: .05em;
  text-align: center;
  white-space: nowrap;
  transition: all .3s;
}

/*#header.active #headerLogo{
  border-color: var(--c-main);
  color: var(--c-main);
}*/
#header #headerLogo img:last-child {
  display: none;
}

#header.active #headerLogo img:first-child {
  display: none;
}

#header.active #headerLogo img:last-child {
  display: inline-block;
}

#headerLogo:hover {
  opacity: .7;
}

#headerLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#header .cntBox {
  display: flex;
  align-items: center;
  gap: 0 4%;
  width: 100%;
  white-space: nowrap;
}

#header .cntList {
  display: flex;
  justify-content: flex-end;
  gap: 0 3.4%;
  width: 100%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

#header.active .cntList,
#header .cntList a:hover {
  color: var(--c-main);
}

#header .cntList a {
  transition: color .3s, opacity .3s;
}

#header.active .cntList a:hover {
  opacity: .7;
}

#header .cntList-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 2%;
  flex-shrink: 0;
  width: 100%;
  max-width: 278px;
  color: var(--c-main);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .05em;
}

#header .cntList-btn .item {
  padding: 13px 8%;
  background: linear-gradient(180deg, #FDF753 0%, #EBC31A 100%);
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 100px;
  transition: all .3s;
}

#header .cntList-btn .item:hover {
  background: linear-gradient(180deg, #0A50C4 0%, #072C69 100%);
  box-shadow: none;
  color: #fff;
}

#header .cntList-btn .item.-line {
  background: linear-gradient(180deg, #7CE62E 0%, #00B437 100%);
  color: #fff;
}

#header .cntList-btn .item.-line:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #EDEDED 100%);
  color: #59D908;
}

.lp #header .cntList-btn {
  max-width: 158px;
}

.lp #header .cntList-btn .item {
  padding: 13px 18%;
}

#headerBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 40px;
  height: 33px;
  cursor: pointer;
  color: #fff;
  font-family: var(--ff-en);
  font-size: 1.1rem;
  font-size: 600;
  text-align: center;
}

#header.active #headerBtn {
  color: var(--c-main);
}

#headerBtn.active {
  font-size: 0;
}

#headerBtn span {
  position: absolute;
  left: 4px;
  display: block;
  width: 34px;
  height: 1px;
  background: #fff;
  transition: all .5s;
}

#header.active #headerBtn span {
  background: var(--c-main);
}

#headerBtn span:nth-of-type(1) {
  top: 0;
}

#headerBtn span:nth-of-type(2) {
  top: 11px;
  transform: translateY(-1px);
}

#headerBtn.active span {
  left: 13px;
  width: 25px;
}

#headerBtn.active span:nth-of-type(1) {
  transform: translateY(15px) rotate(30deg);
}

#headerBtn.active span:nth-of-type(2) {
  transform: translateY(4px) rotate(-30deg);
}

@media screen and (max-width: 1200px) {
  #header.active {
    height: 60px;
  }

  #headerLogo {
    width: auto;
    font-size: 1.5vw;
  }

  #header .cntBox {
    gap: 0 2vw;
  }

  #header .cntList {
    gap: 0 1em;
    font-size: 1.33vw;
  }

  #header .cntList-btn {
    width: auto;
    font-size: 1.33vw;
  }

  #header .cntList-btn .item {
    padding: 13px 1.2vw;
  }
}

/* TAB */
@media screen and (max-width: 899px) {
  #header {
    max-width: 100%;
    height: 75px;
    padding: 0 27px;
  }

  #headerLogo {
    width: 210px;
    max-width: 100%;
    height: 35px;
    font-size: 1.2rem;
  }
}

/* スマホナビ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: calc(100vh + 100px);
  background: var(--c-main);
  padding-bottom: 100px;
  color: #fff;
  font-weight: bold;
  letter-spacing: .05em;
  text-align: center;
  z-index: 99;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#nav::-webkit-scrollbar {
  display: none;
}

#nav .cntInner {
  padding: 107px 20px 39px;
}

#nav .cntList li+li {
  margin-top: 37px;
}

#nav .cntList a {
  letter-spacing: .05em;
}

#nav .cntBtns {
  margin: 13px auto 0;
}

#navList-02 {
  margin-top: 46px;
}

#navList-02>.text {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  font-size: 1.8rem;
  font-weight: 500;
}

#navList-02>.text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}

/* 下部追従ボタン */
#btns {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 6px 20px 10px;
  background: var(--c-main);
  z-index: 90;
}

#btns .cntText {
  margin-bottom: 3px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-align: center;
}

#btns .cntBtns {
  margin: 0 auto;
  justify-content: center;
  gap: 5px;
}

#btns .cntBtn-free {
  height: auto;
  padding: 9px 7px 17px;
}

#btns .cntBtn-line {
  max-width: 200px;
  padding: 9px 7px 17px;
}

#btns .cntBtn-free::before,
#btns .cntBtn-free::after,
#btns .cntBtn-line::before,
#btns .cntBtn-line::after {
  bottom: 5px;
}

#btns .cntBtn-free .text {
  font-size: 1.3rem;
}

#btns .cntBtn-line .text {
  padding-top: 0;
  font-size: 1.2rem;
  letter-spacing: .1em;
}

#btns .cntBtn-free .large {
  font-size: 1.8rem;
}

#btns .cntBtn-line .large {
  display: block;
  font-size: 1.7rem;
  letter-spacing: .25em;
}

#btns .cntBtn-free .icon,
#btns .cntBtn-line .icon {
  width: 35px;
}

#btns .cntBtn-line .icon {
  margin-left: 2px;
}

/* SP */
@media screen and (max-width: 480px) {
  #btns {
    padding-left: 0;
    padding-right: 0;
  }

  #btns .cntText {
    font-size: 3.45vw;
  }

  #btns .cntBtns {
    width: 95%;
  }

  #btns .cntBtn-free {
    flex-basis: 56%;
  }

  #btns .cntBtn-line {
    flex-basis: 43%;
  }
}

@media screen and (max-width: 376px) {
  #btns .cntBtn-line {
    max-width: 137px;
  }

  #btns .cntBtn-free .text,
  #btns .cntBtn-line .text {
    font-size: 3vw;
  }

  #btns .cntBtn-free .large,
  #btns .cntBtn-line .large {
    font-size: 4vw;
  }

  #btns .cntBtn-free .icon,
  #btns .cntBtn-line .icon {
    width: 9vw;
  }
}

/* フッター */
#footer {
  background: var(--c-main);
  color: #fff;
}

#footer .cntInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 40px;
  max-width: 1296px;
  padding: 44px 20px 51px;
}

#footerLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 302px;
  height: 55px;
  /*  border: 1px solid #fff;*/
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

#footer .cntList {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 40px;
  flex-shrink: 0;
  font-size: 1.7rem;
  font-weight: 600;
}

#copyright {
  display: block;
  padding: 27px 20px 31px;
  border-top: 1px solid #fff;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .15em;
}

#copyright .en {
  font-family: var(--ff-en);
  font-weight: 600;
}

/* TAB */
@media screen and (max-width: 899px) {
  #footer {
    padding: 0 20px;
  }

  #footer .cntInner {
    flex-direction: column;
    padding: 26px 20px 23px;
  }

  #footerLogo {
    width: 80%;
    max-width: 400px;
    height: auto;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  #footer .cntList {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 23px 0;
    font-size: 1.5rem;
  }

  #copyright {
    padding: 20px 0 128px;
    font-size: 1.1rem;
  }
}