@charset "UTF-8";
/* 背景の装飾（波紋風） */
#mv {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20% 0 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url("../images/top/mv-bg.webp")no-repeat 0 0;
  background-size: cover;
  background-position: center;
}
#mv .text-area {
  z-index: 20;
  width: 26.45%;
  height: auto;
  position: relative;
  left: -16%;
  transform: translateX(-50%);
}
#mv .visual-area {
  width: 42.58%;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  right: -8%;
  bottom: -12%;
  transform: translateX(-50%);
}
#mv .visual-area::before {
  content: "";
  background: url("../images/top/mv-logo-mask.webp") no-repeat 0 0;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
#mv .visual-area::after {
  content: "";
  background: url("../images/top/mv-img.webp")no-repeat 0 0;
  background-size: contain;
  width: 50.66%;
  height: 81.37%;
  position: absolute;
  top: 3%;
  position: absolute;
  top: 6%;
  right: -4%;
  z-index: 100;
}
#mv .circle-img-wrapper {
  position: absolute;
  z-index: 5;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
#mv .circle-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mv .card-slider {
  position: absolute;
  top: 47%;
  left: 32%;
  transform: translate(-50%, -50%);
  width: 49.19%;
  height: 68.22%;
  border-radius: 40px;
  overflow: hidden;
}
#mv .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  object-fit: cover;
}
#mv .slide.active {
  opacity: 1;
}
@media (max-width: 1366px) {
  #mv {
    padding: 19% 0 15%;
  }
}
@media (max-width: 768px) {
  #mv {
    padding: 21% 0 104%;
    background: url("../images/top/mv-bg_sp.webp")no-repeat 0 0;
    background-size: cover;
  }
  #mv .text-area {
    width: 66.20%;
    bottom: initial;
    left: 22%;
  }
  #mv .visual-area {
    width: 78.49%;
    right: -34%;
    bottom: 11%;
  }
  #mv .card-slider {
    position: absolute;
    top: 46%;
    left: 32%;
    max-height: 206px;
    border-radius: 10px;
  }
  #mv .visual-area::after {
    content: "";
    background: url(../images/top/mv-img_sp.webp) no-repeat 0 0;
    background-size: contain;
    top: 6%;
    right: 1%;
  }
}
#news {
  margin: 35px auto 0;
}
#news .news-container {
  border-bottom: 1px solid #CADBE2;
}
#news .news-header {
  flex-shrink: 0;
  width: 22.41%;
}
#news .news-title {
  font-size: 29px;
  font-size: 2.9rem;
  font-weight: 500;
  color: #105792;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
#news .news-all-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  color: #333;
}
#news .news-all-link:hover {
  opacity: 1;
}
#news .news-all-link::after {
  content: "";
  background: url("../images/common/arrow-circle.svg")no-repeat 0 0;
  background-size: contain;
  margin-left: 10px;
  width: 12px;
  height: 12px;
  display: inline-block;
}
#news .news-all-link:hover::after {
  margin-left: 15px;
  transition-duration: 0.3s;
}
#news .news-list {
  width: 76.53%;
}
#news .news-item {
  display: flex;
  align-items: center;
  padding: 0 20px 15px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #DFDFDF;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  position: relative;
}
#news .news-item::before {
  content: "";
  background: url("../images/common/arrow-right.svg")no-repeat 0 0;
  background-size: contain;
  width: 8.5px;
  height: 8.94px;
  position: absolute;
  top: 25%;
  right: 0;
  transform: translateX(-50%);
}
#news .news-item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
#news .news-date {
  width: 140px;
  flex-shrink: 0;
  color: #333;
  font-size: 15px;
}
#news .news-text {
  flex-grow: 1;
  font-size: 15px;
}
@media (max-width: 768px) {
  #news .news-container {
    display: block;
  }
  #news .news-header {
    width: 100%;
  }
  #news .news-title {
    margin-bottom: -10px;
    text-align: center;
  }
  #news .news-item {
    display: block;
  }
  #news .news-list {
    width: 100%;
  }
  #news .news-date, #news .news-text {
    width: 100%;
    display: block;
  }
  #news .news-date {
    margin-bottom: 5px;
  }
  #news .news-item::before {
    width: 13.5px;
    height: 13.94px;
  }
  #news .news-all-link {
    font-size: 18px;
    position: relative;
    bottom: -290px;
    display: block;
    text-align: center;
    width: 100%;
  }
  #news .news-all-link::after {
    width: 18px;
    height: 17px;
  }
}
#about {
  margin: 120px auto;
}
#about .about-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about .about-content {
  width: 50.89%;
}
#about .about-label {
  display: flex;
  align-items: center;
  color: #084E8A;
  margin-bottom: 20px;
  font-size: 19px;
  font-size: 1.9rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.03rem;
}
#about .about-label::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #00D1D2;
  border-radius: 50%;
  margin-right: 10px;
}
#about .about-heading {
  font-size: 45px;
  font-size: 4.5rem;
  color: #125692;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 73px;
  letter-spacing: 0.3rem;
}
#about .about-description {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 37px;
  margin-bottom: 30px;
	    letter-spacing: 0.1rem;
}
#about .about-diagram {
  width: 45.01%;
}
#about .btn-blue {
  max-width: 270px;
  width: 100%;
}
#about .diag-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-weight: bold;
}
#about .circle-vendor {
  background-color: #00a4bd;
  top: 0;
  left: 0;
}
#about .circle-maker {
  background-color: #e35a7a;
  top: 0;
  right: 0;
}
#about .circle-company {
  background-color: #005288;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
}
@media (max-width: 890px) { 
	#about {
    margin: 40px auto;
}
	#about .about-content {
		    width: 43.89%;
	}
	#about .about-heading {
    font-size: 36px;
    font-size: 3.6rem;
		    line-height: 61px;
	}
	#about .about-flex {
		align-items: baseline;
	}
	#about .about-diagram {
    width: 53.01%;
    padding-top: 70px;
}
}
@media (max-width: 768px) {
  #about {
    margin: 120px auto 170px;
  }
  #about .about-content {
    width: 100%;
  }
  #about .about-flex {
    display: block;
  }
  #about .about-heading {
    font-size: 33px;
    font-size: 3.3rem;
    margin-bottom: 30px;
    line-height: 50px;
    letter-spacing: 0.2rem;
  }
  #about .about-description {
    margin-bottom: -20px;
  }
  #about .btn-blue {
    max-width: none;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    bottom: -370px;
  }
  #about .about-diagram {
    width: 100%;
  }
	#about .about-diagram {
		padding-top: 0;
	}
}
#slide-img ul li {
  padding: 0 10px;
}
#slide-img ul li:nth-child(2n) {
  margin-top: 40px;
}
#service {
  background-color: #033F7B;
  border-top-left-radius: 125px;
  border-top-right-radius: 125px;
  padding: 85px 0 75px;
  color: #fff;
  margin: 100px auto 0;
}
#service .service-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}
#service .service-info {
  width: 27.77%;
}
#service .service-main-title {
  font-size: 89px;
  font-size: 8.9rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 10px;
  letter-spacing: 0.1rem;
  line-height: 1;
}
#service .service-sub-title {
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 500;
  margin: 30px 0 70px;
  align-items: center;
  display: flex;
  font-style: normal;
  letter-spacing: 0.4rem;
}
#service .service-sub-title::before {
  content: "";
  width: 25px;
  height: 1px;
  margin-right: 10px;
  background: #fff;
  display: inline-block;
}
#service .service-desc {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 28px;
  margin-bottom: 40px;
}
#service .btn-wh {
  max-width: 240px;
  width: 100%;
}
#service .service-content {
  width: 67.36%;
}
#service h3 {
  font-size: 29px;
  font-size: 2.9rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1rem;
  position: relative;
  display: flex;
  align-items: center;
}
#service h3::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #00D1D2;
  margin-right: 10px;
  border-radius: 50%;
}
#service .parts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
#service .parts-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px 10px;
  text-align: center;
  color: #333;
  text-decoration: none;
}
#service .parts-card-title {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0D508A;
}
#service .parts-card-img {
  width: 100%;
  margin-bottom: 12px;
}
#service .parts-card-link {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #0D508A;
}
#service .parts-card-link::after {
  content: "";
  background: url("../images/common/arrow-right.svg")no-repeat 0 0;
  width: 10.25px;
  height: 8.94px;
}
#service .consulting-banner {
  background: url("../images/top/service05.png")no-repeat 0 0;
  background-size: cover;
  padding: 50px 90px;
  border-radius: 10px;
  border: 2px solid #FFFFFF;
  overflow: hidden;
  color: #333;
}
#service .consulting-banner .parts-card-title {
  font-size: 27px;
  font-size: 2.7rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0;
}
#service .consulting-banner .parts-card-link {
  font-size: 16px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fff;
}
#service .consulting-banner .parts-card-link::after {
  content: "";
  background: url("../images/common/arrow-right-wh.svg")no-repeat 0 0;
  dth: 11.42px;
  height: 9.29px;
}
#service .consult-text {
  width: 35%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#service .consult-img {
  flex-grow: 1;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #999;
}
@media (max-width: 1040px) {
  #service .parts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #service .parts-card-img {
    width: 40%;
    margin: 0 auto 12px;
  }
}
@media (max-width: 890px) {
	#service {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
	}
	#service .parts-card-img {
		        width: 55%;
	}
}
@media (max-width: 880px) {
  #service .service-main-title {
    font-size: 76px;
    font-size: 7.6rem;
  }
}
@media (max-width: 768px) {
  #service {
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
    padding: 45px 0 55px;
  }
  #service .service-flex {
    display: block;
  }
  #service .service-info {
    width: 100%;
  }
  #service .service-main-title {
    font-size: 66px;
    font-size: 6.6rem;
  }
  #service .service-sub-title {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  #service .service-sub-title::before {
    width: 15px;
  }
  #service .service-content {
    width: 100%;
  }
  #service h3 {
    font-size: 23px;
    font-size: 2.3rem;
  }
  #service .parts-grid {
    gap: 15px;
  }
	#service .parts-card {
		padding: 15px 15px 10px;
	}
	#service .parts-card-img {
		width: 70%;
	}
  #service .parts-card-title {
    font-size: 20px;
    font-size: 2.0rem;
  }
  #service .consulting-banner {
    background: url(../images/top/service05_sp.png) no-repeat 0 0;
    background-size: cover;
    padding: 30px 20px;
  }
  #service .consulting-banner a.l_flex {
    display: flex;
  }
  #service .consulting-banner .parts-card-title {
    font-size: 22px;
    font-size: 2.2rem;
  }
  #service .btn-wh {
    max-width: none;
    width: 80%;
    margin: 0 auto 50px;
  }
}
#case {
  padding: 145px 0 120px;
}
#case .case-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  font-size: 4.2rem;
  margin-bottom: 55px;
  color: #0D508A;
  font-weight: bold;
  text-align: center;
  z-index: -1;
  white-space: nowrap;
}
#case h2 {
  text-align: center;
  position: relative;
}
#case .case-heading {
  font-size: 42px;
  font-size: 4.2rem;
  margin-bottom: 55px;
  color: #0D508A;
  font-weight: bold;
  position: relative;
  display: inline-block;
}
#case .case-heading::before {
  content: "";
  background: url("../images/top/brackets-left.svg")no-repeat 0 0;
  background-size: contain;
  display: inline-block;
  width: 17.5px;
  height: 61.25px;
  position: absolute;
  top: 13%;
  left: -9%;
  transform: translateX(-50%);
}
#case .case-heading::after {
  content: "";
  background: url("../images/top/brackets-right.svg")no-repeat 0 0;
  background-size: contain;
  display: inline-block;
  width: 17.5px;
  height: 61.25px;
  position: absolute;
  top: 13%;
  right: -13%;
  transform: translateX(-50%);
}
#case .en {
  font-size: 138px;
  font-size: 13.8rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #FAFAFA;
  position: absolute;
  top: -91%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  display: block;
  width: 100%;
}
#case .case-grid {
  display: flex;
  gap: 24px;
}
#case .case-card {
  padding: 0 15px;
}
#case .case-image-box {
  width: 100%;
  height: 100%;
  aspect-ratio: 390/260;
  margin-bottom: 5px;
  border: 1px solid #E3E3E3;
  overflow: hidden;
}
#case .case-image-box img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
#case .ttl {
  font-size: 20px;
  font-size: 2.0rem;
  margin-bottom: 5px;
  font-weight: 500;
  color: #03192D;
}
#case .company {
  font-size: 17px;
  font-size: 1.7rem;
  color: #03192D;
}
#case .slick-prev, #case .slick-next {
  width: 54.36px;
  height: 54.36px;
}
#case .slick-next {
  right: 15%;
}
#case .slick-prev {
  left: 15%;
}
#case .slick-next:before {
  background: url("../images/top/arrow-work-ri.svg") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
#case .slick-prev:before {
  background: url("../images/top/arrow-work-le.svg") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
#case .btn-blue {
  max-width: 375px;
  width: 100%;
  margin: 50px auto 0;
}
@media (max-width: 890px) {
	#case .case-heading {
    font-size: 36px;
    font-size: 3.6rem;
	}
	#case .case-heading::before,#case .case-heading::after {
		    width: 13.5px;
    height: 46.25px;
	}
}
@media (max-width: 768px) {
  #case {
    padding: 85px 0 80px;
  }
  #case .case-heading {
    font-size: 30px;
    font-size: 3.0rem;
    margin-bottom: 35px;
  }
  #case .case-heading::before, #case .case-heading::after {
    width: 12.5px;
    height: 41.25px;
  }
  #case .en {
    font-size: 102px;
    font-size: 10.2rem;
  }
  #case .slick-prev, #case .slick-next {
    width: 39.36px;
    height: 39.36px;
  }
  #case .slick-next {
    right: 3%;
  }
  #case .slick-prev {
    left: 3%;
  }
  #case .btn-blue {
    width: 80%;
    margin: 30px auto 0;
  }
}
#campaign {
  background-color: #EFFCFF;
  padding: 60px 0;
}
#campaign .campaign-header {
  width: 40.19%;
}
#campaign .campaign-title {
  font-size: 33px;
  font-size: 3.3rem;
  font-weight: bold;
  color: #0D508A;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
#campaign .btn-blue {
  max-width: 360px;
  width: 100%;
}
#campaign .btn-blue a {
  border: 1px solid #BDCBD8;
  font-weight: normal;
}
#campaign .campaign-list {
  width: 59.81%;
}
#campaign .campaign-item {
  padding: 13px 0;
  border-bottom: 1px solid #CCD7E1;
}
#campaign .campaign-item a {
  align-items: center;
  position: relative;
	justify-content: flex-start;
}
#campaign .campaign-item a::after {
  content: "";
  background: url("../images/common/link-icon.svg")no-repeat 0 0;
  background-size: contain;
  width: 9.75px;
  height: 9.75px;
  margin-left: 5px;
  display: block;
}
#campaign .date {
  margin-right: 25px;
}
@media (max-width: 1000px) {
  #campaign {
    padding: 60px 0 110px;
  }
  #campaign .campaign-header {
    width: 100%;
    margin-bottom: -60px;
  }
  #campaign .campaign-title {
    font-size: 28px;
    font-size: 2.8rem;
    text-align: center
  }
  #campaign .campaign-list {
    width: 100%;
  }
  #campaign .date {
    width: 100%;
  }
  #campaign .campaign-item a {
    display: flex;
  }
  #campaign .btn-blue {
    margin: 0 auto;
    position: relative;
    bottom: -165px;
  }
}
#recruit {
  /*background: #EFFCFF;*/
	background: #033f7b;
}
#recruit .recruit-card {
  padding: 125px 0 55px;
  background: linear-gradient(135deg, #23A2D3 0%, #00E2CB 100%);
  border-top-left-radius: 125px;
  border-top-right-radius: 125px;
  color: #fff;
}
#recruit .recruit-flex {
  position: relative;
  z-index: 2;
}
#recruit .recruit-content {
  width: 54.20%;
}
#recruit .recruit-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
#recruit .recruit-bg-text {
  font-size: 156px;
  font-size: 15.6rem;
  color: #46CAD9;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  font-style: italic;
  position: absolute;
  top: 19%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#recruit .recruit-heading {
  text-align: center;
}
#recruit .recruit-heading span {
  font-size: 49px;
  font-size: 4.9rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
	    letter-spacing: 0.7rem;
}
#recruit .recruit-heading span::before, #recruit .recruit-heading span::after {
  width: 21.5px;
  height: 65.25px;
  display: inline-block;
  position: absolute;
  top: 11px;
}
#recruit .recruit-heading span::before {
  content: "";
  background: url("../images/top/brackets-left-wh.svg")no-repeat 0 0;
  background-size: contain;
  left: -49px;
}
#recruit .recruit-heading span::after {
  content: "";
  background: url("../images/top/brackets-right-wh.svg")no-repeat 0 0;
  background-size: contain;
  right: -49px;
}
#recruit .recruit-sub-label {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 25px;
}
#recruit .recruit-main-copy {
  font-size: 39px;
  font-size: 3.9rem;
  font-weight: bold;
  line-height: 65px;
  margin-bottom: 70px;
  letter-spacing: 0.1rem;
}
#recruit .message {
  font-size: 19px;
  font-size: 1.9rem;
  margin-bottom: 45px;
  line-height: 40px;
	letter-spacing: 0.05rem;
}
#recruit .btn-gr {
  max-width: 280px;
  width: 100%;
}
#recruit .btn-recruit {
  background: #fff;
  color: #00bfa5;
  border: none;
  width: 220px;
}
#recruit .recruit-visual {
  width: 41.80%;
}
#recruit .manga-area {
  width: 100%;
  max-width: 925px;
  margin: 90px auto 0;
}
#recruit .manga-area a:hover {
  opacity: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.26);
}
@media (max-width: 1015px) {
  #recruit .recruit-main-copy {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 54px;
    margin-bottom: 40px;
  }
}
@media (max-width: 890px) {
	#recruit .recruit-card {
		    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
	}
}
@media (max-width: 768px) {
	#recruit .message {
		letter-spacing: 0rem;
	}
  #recruit .recruit-card {
    padding: 95px 0 55px;
  }
  #recruit .recruit-card {
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
  }
  #recruit .recruit-heading span {
    font-size: 37px;
    font-size: 3.7rem;
  }
  #recruit .recruit-heading span::before, #recruit .recruit-heading span::after {
    width: 13.5px;
    height: 57.25px;
    top: 10px;
  }
  #recruit .recruit-heading span::before {
    left: -32px;
  }
  #recruit .recruit-heading span::after {
    right: -32px;
  }
  #recruit .recruit-bg-text {
    font-size: 92px;
    font-size: 9.2rem;
    top: 33%;
	  color: #2ab6d7;
  }
  #recruit .recruit-content {
    width: 100%;
  }
  #recruit .recruit-sub-label {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  #recruit .recruit-main-copy {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 43px;
    margin-bottom: 40px;
  }
  #recruit .recruit-visual {
    width: 83.77%;
    margin: -60px auto 0;
  }
  #recruit .btn-gr {
    max-width: 280px;
    width: 80%;
    margin: 0 auto;
    position: relative;
    bottom: -350px;
  }
  #recruit .manga-area {
    margin: 140px auto 0;
  }
}
#column {
  padding: 75px 0 120px;
}
#column h2 {
  margin-bottom: 45px;
  text-align: center;
}
#column h2 .en {
  font-size: 101px;
  font-size: 10.1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #0D508A;
  display: block;
  line-height: 1;
}
#column h2 .jp {
  font-size: 26px;
  font-size: 2.6rem;
  color: #131313;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.3rem;
}
#column h2 .jp::before, #column h2 .jp::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #131313;
}
#column h2 .jp::before {
  margin-right: 10px;
}
#column h2 .jp::after {
  margin-left: 10px;
}
#column .column-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
#column .main-column {
  width: 44.16%;
}
#column .main-image-wrapper {
  width: 100%;
  aspect-ratio: 530 / 354;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #E3E3E3;
  border-radius: 5px;
}
#column .main-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#column .main-info .date {
  font-size: 13px;
  font-size: 1.3rem;
}
#column .main-info .title {
  font-size: 18px;
  font-size: 1.8rem;
  margin: 5px 0;
  line-height: 30px;
  letter-spacing: 0.1rem;
}
#column .sub-columns {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
#column .sub-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  transition: opacity 0.3s;
}
#column .sub-thumb {
  width: 23.33%;
  height: 100%;
  aspect-ratio: 140 / 95;
  overflow: hidden;
  border: 1px solid #E3E3E3;
  border-radius: 5px;
}
#column .sub-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#column .sub-content {
  width: 74.16%;
  display: flex;
  flex-direction: column;
}
#column .sub-content .title {
  line-height: 26px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#column .sub-content .date {
  font-size: 13px;
  font-size: 1.3rem;
  color: #1A1A1A;
}
#column p.bg-text {
  font-size: 124px;
  font-size: 12.4rem;
  font-family: "Be Vietnam Pro", sans-serif;
  color: #FFF7E6;
  font-weight: 200;
  display: inline-block;
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#column p.bg-text {
  font-size: 105px;
  font-size: 10.5rem;
}
#column .ttl-p {
  font-size: 17px;
  font-size: 1.7rem;
  margin-bottom: 50px;
  font-weight: 600;
  text-align: center;
  color: #91867B;
  letter-spacing: 0.2rem;
}
#column .btn-blue {
  max-width: 270px;
  width: 100%;
  margin: 30px auto 0;
}
#column p.no-post {
    font-size: 20px;
    text-align: center;
    display: block;
    width: 100%;
}
@media (max-width: 768px) {
  #column {
    padding: 70px 0 85px;
  }
  #column h2 {
    margin-bottom: 30px;
  }
  #column h2 .en {
    font-size: 72px;
    font-size: 7.2rem;
  }
  #column h2 .jp {
    font-size: 22px;
    font-size: 2.2rem;
  }
  #column .main-column {
    width: 100%;
  }
  #column .sub-columns {
    width: 100%;
	      gap: 20px;
  }
  #column .column-container {
    flex-direction: column;
    gap: 40px;
  }
  #column .sub-thumb {
    width: 40.33%;
  }
  #column .sub-content {
    width: 56.16%;
  }
  #column .sub-item {
    gap: 10px;
  }
  #column .button-container {
    margin-top: 40px;
  }
  #column .ttl-p {
    font-size: 19px;
    font-size: 1.9rem;
    margin-bottom: 30px;
  }
  #column p.bg-text {
    font-size: 96px;
    font-size: 9.6rem;
    bottom: -17%;
  }
  #column .btn {
    margin: 40px auto 0;
    max-width: none;
    width: 80%;
  }
}