/************************************************************************************/
/************************************* Font *************************************/
/************************************************************************************/
/************************************************************************************/
/************************************* Colors *************************************/
/************************************************************************************/
:root {
  --white: #fff;
  --black: #000;
  --red: #9B0000;
  --blue: #0F0078;
  --light-blue: #5163c0;
  --deep-blue: #05014a;
  --orange: #ff9644;
  /* color */
  --font-color: #040404;
  --primary: #4D1FF2;
  --primary400: #2b379e;
  --primary300: #3a49b4;
  --primary200: #7680ca;
  --primary100: #c4c7e9;
  --primary000: #e7e9f6;
  --secondary: #FB6B4D;
  --gray100: #F1F1F1;
  --gray200: #e2e2e2;
  --gray300: #CED4DA;
  --gray400: #ADB5BD;
  --gray500: #767676;
  --brd-c1: #E9ECEF;
  --brd-c2: #CED4DA;
  --c-red: #ec0000;
  --btn-gray: #6c757d;
  --mc: #2e55e7;
  --footer-bg: #202020;
  /* theme_color */
  --theme01: #E4FFEF;
  --theme02: #ffffff;
  --theme02-s: #f8f8f8;
  --theme03: #EAF0FF;
  --theme04: #FFF8E4;
}

/* font-size */
/* absolute-center */
/* transition */
/* common */
html {
  font-size: 62.5%;
}

body {
  font-family: "Pretendard Variable", "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Apple SD Gothic Neo", "Malgun Gothic", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  word-break: keep-all;
  letter-spacing: -0.025em;
  color: var(----font-color);
  font-size: 1.8rem;
}
@media (max-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}
body a {
  color: var(--black);
  text-decoration: none;
}
body:has(#modal.show) {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
}

a,
input,
button,
select {
  outline-offset: 2px;
  outline-color: var(--black);
}

/* ----------------------------------------
* common
* ----------------------------------------*/
:root {
  --header-height: 100px;
}
@media (max-width: 1280px) {
  :root {
    --header-height: 80px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }
}
/* table */
table {
  width: 100%;
}

.wrap-in {
  max-width: 1416px;
  margin: 0 auto;
}
@media (max-width: 1460px) {
  .wrap-in {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .wrap-in {
    max-width: 92%;
  }
}
@media (max-width: 480px) {
  .wrap-in {
    max-width: 90%;
  }
}

.wrap-in2 {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .wrap-in2 {
    max-width: 96%;
  }
}
@media (max-width: 767px) {
  .wrap-in2 {
    max-width: 92%;
  }
}
@media (max-width: 480px) {
  .wrap-in2 {
    max-width: 90%;
  }
}

header {
  width: 100%;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 102;
  height: var(--header-height);
}
header.fixed {
  position: fixed;
  animation: headerSlideDown 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
header a {
  text-decoration: none;
  color: var(--black);
}
header .jeho {
  font-size: 1.6rem;
  font-weight: 600;
}
@media (max-width: 1280px) {
  header .jeho {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  header .jeho {
    font-size: 1.4rem;
  }
}
header .jeho a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .jeho a span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
header .jeho a span::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background: url("../images/common/arw.svg") no-repeat center/100% 100%;
}
header .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
header .logo a {
  display: block;
  width: 239px;
  height: 34px;
  background: url("../images/common/logo2.svg") no-repeat center/100% 100%;
}
header nav {
  position: relative;
  width: 500px;
  height: 100vh;
  background: var(--white);
  padding: var(--nav-padding);
  position: fixed;
  top: 0;
  bottom: 0;
  right: -500px;
  z-index: 104;
  transition: right 0.4s ease;
}
header nav.--open {
  right: 0;
  height: 100vh;
}
header nav .nav-header {
  width: var(--header-height);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 20px;
}
header nav .nav-header .nav-close {
  position: absolute;
  width: 36px;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header nav .nav-header .nav-close::before, header nav .nav-header .nav-close::after {
  content: "";
  height: 2px;
  border-bottom: 2px solid var(--black);
  display: block;
  transform-origin: center center;
}
header nav .nav-header .nav-close::before {
  transform: rotate(45deg);
  margin-top: 1px;
}
header nav .nav-header .nav-close::after {
  margin-top: -1px;
  transform: rotate(-45deg);
}
header nav ul {
  padding-inline: 1em;
  font-size: 2.4rem;
}
@media (max-width: 1280px) {
  header nav ul {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  header nav ul {
    font-size: 1.8rem;
  }
}
header nav ul a {
  color: var(--font-color);
  text-decoration: none;
  display: block;
  padding: 1em 1em;
  border-bottom: 1px solid var(--font-color);
  background: url("../images/common/arw.svg") no-repeat center right 1em/16px 16px;
}
header .burger-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--header-height);
  aspect-ratio: 1;
  cursor: pointer;
}
header .burger-wrap .cont-in {
  width: 48px;
  height: 12px;
  aspect-ratio: 1;
}
header .burger-wrap .cont-in span {
  width: 100%;
  height: 1px;
  border-bottom: 2px solid var(--black);
  display: block;
  position: absolute;
  left: 0;
  background-color: var(--black);
}
header .burger-wrap .cont-in span:nth-child(1) {
  top: 0;
}
header .burger-wrap .cont-in span:nth-child(2) {
  bottom: 0;
}
@media (max-width: 1280px) {
  header {
    padding-inline: 36px 20px;
  }
  header .logo a {
    width: 191px;
    height: 27px;
  }
  header nav .nav-header {
    margin-right: 10px;
  }
  header nav .nav-header .nav-close {
    width: 32px;
  }
  header .burger-wrap .cont-in {
    width: 40px;
    height: 10px;
  }
}
@media (max-width: 767px) {
  header {
    padding-inline: 4% 2%;
  }
  header .logo a {
    width: 143px;
    height: 20px;
  }
  header nav {
    width: 100%;
    right: -100%;
  }
  header nav .nav-header .nav-close {
    width: 28px;
  }
  header .burger-wrap .cont-in {
    width: 36px;
    height: 10px;
  }
}
@media (max-width: 480px) {
  header {
    padding-inline: 4% 1%;
  }
  header .jeho {
    font-size: 1.2rem;
  }
  header .jeho a {
    display: block;
  }
  header .jeho a span {
    margin-top: -4px;
    gap: 5px;
  }
  header .jeho a span::after {
    width: 12px;
    margin-top: -1px;
  }
  header nav .nav-header {
    margin-right: 0;
  }
  header nav .nav-header .nav-close {
    width: 24px;
  }
  header .burger-wrap .cont-in {
    width: 32px;
    height: 10px;
  }
}

footer {
  color: var(--white);
  background: var(--footer-bg);
  padding: 3.56em 4.4em;
  display: flex;
  align-items: flex-start;
}
footer .logo {
  width: 202px;
  margin-right: 5.63em;
}
footer .logo .logo01 {
  width: 202px;
  height: 85px;
  margin-bottom: 1.1em;
  background: url("../images/common/logo_b.png") no-repeat center/100% 100%;
}
footer .logo .logo02 {
  width: 202px;
  height: 43px;
  background: url("../images/common/logo_bscf.svg") no-repeat center/100% 100%;
}
footer .txt-cont {
  margin-top: 1.1em;
  font-size: 1.6rem;
  color: var(--gray200);
}
@media (max-width: 1280px) {
  footer .txt-cont {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  footer .txt-cont {
    font-size: 1.4rem;
  }
}
footer .txt-cont .notice {
  opacity: 0.8;
  font-size: 1.4rem;
  margin-block: 0.6em 1em;
  font-weight: 300;
}
@media (max-width: 1280px) {
  footer .txt-cont .notice {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  footer .txt-cont .notice {
    font-size: 1.2rem;
  }
}
footer .txt-cont .copyright {
  margin-top: 1.78em;
}
footer .txt-cont .sns {
  margin-top: 1.78em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
footer .txt-cont .sns a {
  width: 64px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .txt-cont .sns a img {
  height: 30px;
}
footer .txt-cont .sns a:first-child {
  margin-left: 0;
}
footer .issue-wrap {
  margin-left: auto;
}
footer .issue {
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--gray200);
  padding-block: 0.89em;
  padding-inline: 1.78em 1.33em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
}
footer .issue::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background: url("../images/common/arw_link.svg") no-repeat center/100% 100%;
}
@media (max-width: 1280px) {
  footer {
    flex-wrap: wrap;
  }
  footer .logo {
    width: 20.63vw;
  }
  footer .logo .logo01 {
    width: 20.63vw;
    height: 8.67vw;
  }
  footer .logo .logo02 {
    width: 20.63vw;
    height: 2.89vw;
  }
  footer .txt-cont {
    flex: 1;
  }
  footer .issue-wrap {
    width: 100%;
    margin-top: 2em;
    margin-left: calc(19.22vw + 5.63em);
  }
}
@media (max-width: 767px) {
  footer {
    padding: 2.1em 5%;
    flex-direction: column;
  }
  footer .logo {
    width: 100%;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5em 2em;
  }
  footer .logo .logo01 {
    width: clamp(101px, 15.78vw, 121px);
    height: clamp(42px, 6.65vw, 51px);
    margin-bottom: 0;
  }
  footer .logo .logo02 {
    margin-top: -0.2em;
    width: clamp(123px, 23.99vw, 184px);
    height: clamp(21px, 3.26vw, 25px);
  }
  footer .txt-cont {
    margin-top: 2em;
    text-align: center;
  }
  footer .txt-cont .sns {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .txt-cont .sns a {
    width: 40px;
  }
  footer .txt-cont .sns a img {
    height: 20px;
  }
  footer .issue-wrap {
    margin-left: 0;
    text-align: center;
  }
  footer .issue {
    min-width: 120px;
    padding-block: 0.6em;
    padding-inline: 1.6em 1.1em;
  }
}

@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
/* ================================================================== */
/* Author : Design Geulggol
/* Date	: 2026-3-20
/* ================================================================== */
/* ----------------------------------------
* common
* ----------------------------------------*/
:root {
  --header-height: 100px;
}
@media (max-width: 1280px) {
  :root {
    --header-height: 80px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }
}
.main-visual-wrap {
  position: relative;
  width: 100%;
  min-height: calc(820px - var(--header-height));
  height: calc(100vh - var(--header-height));
  overflow: hidden;
  margin-top: var(--header-height);
}
.main-visual-wrap .visual-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 100;
}
@media (max-width: 1024px) {
  .main-visual-wrap {
    min-height: calc(768px - var(--header-height));
  }
}
@media (max-width: 480px) {
  .main-visual-wrap {
    height: calc(100dvh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
  }
}

.opening-post {
  top: var(--header-height);
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  padding: 1.78em 2.67em;
  background-color: var(--white);
  z-index: 101;
  text-align: center;
}
.opening-post span {
  display: block;
  white-space: nowrap;
}
.opening-post::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  background: url("../images/plus.svg") no-repeat center/100% 100%;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 110;
}
@media (max-width: 767px) {
  .opening-post {
    padding: 1.4em 2em;
  }
  .opening-post::before {
    width: 16px;
  }
}
@media (max-width: 480px) {
  .opening-post {
    width: 90%;
    padding: 1.2em 1.6em;
    font-size: 1.4rem;
  }
  .opening-post span {
    display: inline;
    white-space: wrap;
  }
  .opening-post::before {
    width: 12px;
  }
}

.main-visual {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150vh;
  height: calc(100vh - var(--header-height));
  transform: translate(-50%, -50%);
  overflow: hidden;
  min-height: 820px;
  min-width: 100%;
}
.main-visual > div {
  position: absolute;
}
.main-visual > div img {
  width: 100%;
}
.main-visual .water {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.main-visual .water img {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.main-visual .water img:nth-child(1) {
  animation: water_img1 3.6s ease-in-out infinite;
}
.main-visual .water img:nth-child(2) {
  animation: water_img2 3.6s ease-in-out infinite;
}
.main-visual .water img:nth-child(3) {
  animation: water_img3 3.6s ease-in-out infinite;
}
.main-visual .bubble {
  aspect-ratio: 1/1;
}
.main-visual .bubble01 {
  width: 12.0833333333%;
  top: 25%;
  left: 20%;
  animation: float1 4.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.main-visual .bubble02 {
  width: 7.7083333333%;
  top: 24%;
  left: 60%;
  animation: float2 5.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.main-visual .bubble03 {
  width: 9.84375%;
  top: 14%;
  right: 15%;
  animation: float3 4.2s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.main-visual .object {
  width: 7.5520833333%;
  top: 20%;
  left: 59%;
}
.main-visual .ship {
  width: 14.2708333333%;
  bottom: 8%;
  left: 38.5%;
  animation: ship_rise 3.6s ease-in-out infinite;
}
.main-visual .ship img {
  animation: float_ship 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
@media (max-width: 1440px) {
  .main-visual .ship {
    bottom: 7%;
  }
}
.main-visual .mirror {
  width: 12.34375%;
  top: 10%;
  left: 40%;
  animation: float4 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.main-visual .book {
  width: 9.5833333333%;
  top: 47%;
  left: 54%;
  animation: float4 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.main-visual .galmegi01 {
  width: 5.8333333333%;
  top: 30%;
  left: 5%;
  animation: fly_galmegi 4s ease-in-out infinite;
}
.main-visual .galmegi02 {
  width: 4%;
  top: 20%;
  left: 10%;
  animation: fly_galmegi 4.8s ease-in-out -1.2s infinite;
}
.main-visual .galmegi03 {
  width: 3.5%;
  top: 15%;
  right: 5%;
  transform-origin: center;
  transform: rotate(40deg);
  animation: fly_galmegi_rotate 3.5s ease-in-out -2.5s infinite;
}
.main-visual .light01 {
  width: 1%;
  top: 15%;
  left: 5%;
  animation: twinkle_light 3s ease-in-out -1s infinite;
}
.main-visual .light02 {
  width: 0.5%;
  top: 35%;
  left: 15%;
  animation: twinkle_light 4s ease-in-out -2.5s infinite;
}
.main-visual .light03 {
  width: 1%;
  top: 60%;
  left: 20%;
  animation: twinkle_light 2.5s ease-in-out -0.5s infinite;
}
.main-visual .light04 {
  width: 1.9270833333%;
  top: 25%;
  left: 35%;
  animation: twinkle_light 3.5s ease-in-out -1.2s infinite;
}
.main-visual .light05 {
  width: 1.9270833333%;
  top: 55%;
  left: 37%;
  animation: twinkle_light 4.2s ease-in-out -3s infinite;
}
.main-visual .light06 {
  width: 1.9270833333%;
  top: 40%;
  left: 45%;
  animation: twinkle_light 2.8s ease-in-out -0.8s infinite;
}
.main-visual .light07 {
  width: 1.2%;
  top: 35%;
  left: 50%;
  animation: twinkle_light 3.8s ease-in-out -2s infinite;
}
.main-visual .light08 {
  width: 1.9270833333%;
  top: 15%;
  left: 50%;
  animation: twinkle_light 4.5s ease-in-out -1.5s infinite;
}
.main-visual .light09 {
  width: 1%;
  top: 10%;
  left: 67%;
  animation: twinkle_light 3.2s ease-in-out -0.3s infinite;
}
.main-visual .light10 {
  width: 1.9270833333%;
  top: 45%;
  left: 65%;
  animation: twinkle_light 2.6s ease-in-out -1.8s infinite;
}
.main-visual .light11 {
  width: 1.9270833333%;
  top: 15%;
  left: 87%;
  animation: twinkle_light 4.1s ease-in-out -3.5s infinite;
}
.main-visual .light12 {
  width: 1%;
  top: 35%;
  left: 85%;
  animation: twinkle_light 3.6s ease-in-out -0.9s infinite;
}
.main-visual .grain-bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../images/bg_grain.jpg") no-repeat center/cover;
  mix-blend-mode: multiply;
}
.main-visual .cont {
  position: absolute;
}
.main-visual .cont img {
  display: block;
  margin: 0;
}
.main-visual .bg {
  top: 0;
  left: 0;
  width: 102%;
  height: 102%;
  background: url("../images/bg_visual.jpg") no-repeat center/cover;
}
@media (max-width: 1024px) {
  .main-visual {
    width: 140vh;
  }
  .main-visual .bubble01 {
    top: 30%;
    left: 35%;
  }
  .main-visual .bubble02 {
    top: 51%;
  }
  .main-visual .bubble03 {
    top: 18%;
    right: 30%;
  }
  .main-visual .book {
    top: 65%;
  }
  .main-visual .object {
    top: 47%;
    width: 10%;
  }
  .main-visual .galmegi01 {
    left: 25%;
  }
  .main-visual .galmegi02 {
    left: 28%;
  }
}
@media (max-width: 480px) {
  .main-visual .bubble01 {
    top: 40%;
    left: 40%;
  }
  .main-visual .bubble02 {
    left: 55%;
  }
  .main-visual .bubble03 {
    right: 35%;
  }
  .main-visual .object {
    display: none;
  }
  .main-visual .galmegi01 {
    left: 35%;
  }
  .main-visual .galmegi02 {
    top: 30%;
    left: 50%;
  }
}

/* 1 */
@keyframes float1 {
  0% {
    transform: translate(0px, 0px) rotate(-1deg);
  }
  50% {
    transform: translate(5px, -30px) rotate(2deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(-1deg);
  }
}
/* 2 */
@keyframes float2 {
  0% {
    transform: translate(-2px, -10px) rotate(1deg);
  }
  50% {
    transform: translate(-6px, -26px) rotate(-2deg);
  }
  100% {
    transform: translate(-2px, -10px) rotate(1deg);
  }
}
/* 3 */
@keyframes float3 {
  0% {
    transform: translate(3px, -5px) rotate(0deg);
  }
  50% {
    transform: translate(4px, -34px) rotate(3deg);
  }
  100% {
    transform: translate(3px, -5px) rotate(0deg);
  }
}
/* 4 */
@keyframes float4 {
  0% {
    transform: translate(-3px, -8px) rotate(-2deg);
  }
  50% {
    transform: translate(-5px, -28px) rotate(1deg);
  }
  100% {
    transform: translate(-3px, -8px) rotate(-2deg);
  }
}
/* 5 */
@keyframes float5 {
  0% {
    transform: translate(2px, -6px) rotate(1deg);
  }
  50% {
    transform: translate(6px, -32px) rotate(3deg);
  }
  100% {
    transform: translate(2px, -6px) rotate(1deg);
  }
}
@keyframes float_ship {
  0% {
    transform: translate(0px, 0px) rotate(-1deg);
  }
  50% {
    transform: translate(2px, -10px) rotate(1deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(-1deg);
  }
}
@keyframes ship_rise {
  0% {
    transform: translateY(-50px);
  }
  11.11% {
    transform: translateY(0px);
  }
  22.22% {
    transform: translateY(0px);
  }
  33.33% {
    transform: translateY(-15%);
  }
  44.44% {
    transform: translateY(-15%);
  }
  55.55% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(-20%);
  }
}
@keyframes fly_galmegi {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(-3deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes fly_galmegi_rotate {
  0% {
    transform: translateY(0px) rotate(40deg);
  }
  50% {
    transform: translateY(-20px) rotate(37deg);
  }
  100% {
    transform: translateY(0px) rotate(40deg);
  }
}
@keyframes twinkle_light {
  0% {
    opacity: 0.1;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.1;
    transform: scale(0.8);
  }
}
@keyframes water_img1 {
  0% {
    opacity: 0;
  }
  11.11% {
    opacity: 1;
  }
  22.22% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes water_img2 {
  0% {
    opacity: 0;
  }
  22.22% {
    opacity: 0;
  }
  33.33% {
    opacity: 1;
  }
  44.44% {
    opacity: 1;
  }
  55.55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes water_img3 {
  0% {
    opacity: 1;
  }
  11.11% {
    opacity: 0;
  }
  44.44% {
    opacity: 0;
  }
  55.55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.default-content {
  display: flex;
  flex-wrap: wrap;
}
.default-content .cont {
  border: 1px solid var(--black);
  border-width: 0 0 1px 0;
  padding: 2.22em;
  display: flex;
  align-items: flex-end;
  width: 25%;
  border-width: 1px 1px 0 0;
  aspect-ratio: 1/1;
}
.default-content .cont a {
  width: 100%;
  color: var(--black);
  text-decoration: none;
  display: block;
}
.default-content .cont a .cate {
  font-family: "Rebecca";
  font-size: clamp(2rem, 1.46vw, 2.8rem);
  margin-bottom: 1.14em;
}
.default-content .cont a h2 {
  font-size: clamp(2.2rem, 1.46vw, 2.8rem);
  font-weight: 500;
  word-break: keep-all;
  margin-bottom: 6px;
}
.default-content .cont a h2 span {
  font-size: 0.85em;
  display: block;
}
.default-content .cont a .writer {
  font-size: clamp(1.6rem, 1.2vw, 2rem);
}
.default-content .cont a .icon {
  width: 6.46vw;
  aspect-ratio: 1;
  position: absolute;
  top: 2.22em;
  right: 2.22em;
  margin-top: 10px;
}
.default-content .cont a .icon.icon01 {
  background: url("../images/icon01.svg") no-repeat center/100% 100%;
}
.default-content .cont a .icon.icon02 {
  background: url("../images/icon02.svg") no-repeat center/100% 100%;
}
.default-content .cont a .icon.icon03 {
  background: url("../images/icon03.svg") no-repeat center/100% 100%;
}
.default-content .cont:nth-child(1) {
  border-top-width: 0;
  background: var(--theme01);
}
.default-content .cont:nth-child(2) {
  position: relative;
  border-top-width: 0;
  aspect-ratio: 1/1;
}
.default-content .cont:nth-child(2)::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/main_img01.jpg") no-repeat center/cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.default-content .cont:nth-child(3) {
  background: var(--theme02);
  border-top-width: 0;
}
.default-content .cont:nth-child(4) {
  background: var(--theme03);
  border-top-width: 0;
}
.default-content .cont:nth-child(5) {
  background: var(--theme02);
}
.default-content .cont:nth-child(6) {
  background: var(--theme03);
}
.default-content .cont:nth-child(7) {
  background: var(--theme01);
}
.default-content .cont:nth-child(8) {
  position: relative;
  aspect-ratio: 1/1;
}
.default-content .cont:nth-child(8)::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/main_img02.jpg") no-repeat center/cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.default-content .cont:nth-child(4n) {
  border-right-width: 0;
}
@media (max-width: 1280px) {
  .default-content .cont {
    padding: 1.78em;
  }
  .default-content .cont a .icon {
    top: 1.78em;
    right: 1.78em;
  }
}
@media (max-width: 960px) {
  .default-content .cont {
    width: 50%;
  }
  .default-content .cont a .icon {
    width: 12.92vw;
  }
  .default-content .cont:nth-child(2n) {
    border-right-width: 0;
  }
  .default-content .cont:nth-child(-n+4) {
    border-top-width: 1px;
  }
  .default-content .cont:nth-child(5) {
    order: 6;
    border-right-width: 0;
  }
  .default-content .cont:nth-child(6) {
    border-right-width: 1px;
  }
  .default-content .cont:nth-child(7) {
    order: 7;
    border-right-width: 1px;
  }
  .default-content .cont:nth-child(8) {
    order: 8;
    border-right-width: 0;
  }
}
@media (max-width: 480px) {
  .default-content .cont {
    width: 100%;
    aspect-ratio: auto;
    padding-block: 3.2em;
  }
  .default-content .cont:nth-child(n) {
    border-right-width: 0;
  }
  .default-content .cont a .icon {
    margin-left: auto;
    position: static;
    width: clamp(80px, 16.15vw, 124px);
  }
  .default-content .cont:nth-child(5) {
    order: initial;
    border-right-width: 0;
  }
}
