:root {
  --color-primary: #2e37a5;
  --color-secondary: #6F7AFF;
  --color-gradient: linear-gradient(90deg, #6f7aff 0%, #4a97ff 100%);
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-light-gray: #f5f9fa;
  --bg-dark: #312078;
}

* {
  box-sizing: border-box;
}

html, body, * {
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'Noto Sans JP';
  background-color: var(--color-background-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  width: 100%;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--color-gradient);
  color: var(--text-light);
  border: none;
}

.btn-primary:hover {
  opacity: 0.8;
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  box-shadow: 0px 0px 25.6px 0px rgba(111, 122, 255, 0.25);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--text-light);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 90px;
    line-height: 1;
}

.section-subtitle {
    font-size: 24px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 28px;
    line-height: 1.5;
}

@media (max-width: 768px) {
  .container {
	padding-left: 5vw;
	padding-right: 5vw;
  }
  .btn {
	font-size: 4vw;
  }
  .section-title {
    font-size: 6.25vw;
	margin-block-end: calc(122 / 800 * 100%);
  }
  .section-subtitle {
    font-size: 4.5vw;
  }
}

.-pc {
	display: block;
}
.-tablet {
	display: none;
}
.-sp {
	display: none;
}
@media (max-width: 992px) {
	.feature-image-wrapper img.-pc{
		display: none !important;
	}
	.feature-image-wrapper img.-sp{
		display: block !important;
	}
}
@media (max-width: 768px) {
	.-pc {
		display: none;
	}
	.-tablet {
		display: none;
	}
	.-sp {
		display: block;
	}
}
	
/* CSS for section section:header */
.header {
  position: fixed;
  background-color: rgba(255, 255, 255, 1);
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 50px;
  padding: 5px 10px 5px 15px;
}
.header.is-transparent {
  background-color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 927px) {
  .header {
    padding: 5px 10px 5px 20px;
    height: 96px;
  }
}
@media screen and (max-width: 926px){
  .header{
    padding-right: 64px;   
  }
}
@media screen and (min-width: 768px) and (max-width: 926px) {
	.header__hamburger span {
	  padding-right: 8.75vw;
	}
}
@media screen and (max-width: 926px) {
  .header {
        padding-block: 0;
	    padding-right: 14.75vw;
        height: clamp(64px, 16.25cqw, 130px);
        vertical-align: middle;
	}
}

.header__right-group {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-left: auto; 
}
@media screen and (max-width: 926px){
  .header__right-group{
    display: flex;
    align-items: center;
    gap: 12px;            
  }
  .cv__btn__wrap.-sp{ order: 1; }
  .header__hamburger{ order: 2; }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  width: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
	text-decoration: none;
}
.header__logo img {
  width: 248px;
  height: 56px;
}
@media print, screen and (min-width: 927px) {
  .header__logo {
    width: 180px;
  }
}
@media screen and (min-width: 1240px) {
  .header__logo {
    width: 232px;
  }
}
.header__logo img {
  vertical-align: middle;
}
.header__nav {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 926px) {
  .header__nav {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header__nav {
    max-width: 300px;
  }
}
@media screen and (max-width: 926px) {
	.header__logo img {
	  max-width: 31.25vw;
	  width: 100%;
	  height: auto;
	}
  .header__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 70%;
    height: 100svh; 
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    background-color: #fff;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    z-index: 1000;
    padding: 50px 25px;
    visibility: hidden;
  }
}
@media print, screen and (min-width: 927px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media screen and (min-width: 927px) {
  .header__nav {
    margin-left: 15px;
  }
}
@media screen and (max-width: 926px) {
	ul {
		margin-block-start: 0;
		margin-block-end: 0;
	}
	
  .header__nav.panelactive {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  }
}
.header__nav li {
	list-style: none;
}
@media print, screen and (min-width: 768px) {
  .header__nav li {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1240px) {
  .header__nav li {
    margin-left: 45px;
  }
}
.header__nav li a {
  display: block;
  font-size: 20px;
  color: var(--text-dark);
}
@media screen and (max-width: 926px) {
  .header__nav li a {
    padding: 0.6em;
    border-bottom: 1px solid #253fd6;
    line-height: 1.5;
  }
}
.header__right {
  margin-right: 45px;
}
@media screen and (max-width: 926px) {
  .header__right {
    display: none;
  }
}
@media screen and (min-width: 927px) {
  .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media print, screen and (min-width: 768px) {
  .header__right {
    margin-right: 4px;
  }
}
.header__right__cv {
  font-size: 1rem;
  display: block;
  text-align: right;
  margin: 0 3px 3px 0;
}
@media screen and (min-width: 768px) {
  .header__right__cv {
    font-size: 1.2rem;
    margin: 0 10px 0 0;
    text-align: left;
  }
}
@media print, screen and (min-width: 768px) {
  .header__right__cv {
    margin: 0 15px 0 0;
  }
}
@media screen and (min-width: 1240px) {
  .header__right__cv {
    font-size: 1.4rem;
    margin: 0 30px 0 0;
  }
}
.cv__btn__wrap{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;     
  border-radius: 9999px;
  color: var(--color-secondary);
  text-decoration: none;
  line-height: 1;                
  backdrop-filter: saturate(120%);
}
.cv__btn__wrap::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;                    
  width: 5px;
  height: 5px;
  border-right: 2px solid #fff;  
  border-top: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease, right .2s ease, opacity .2s ease;
  opacity: .95;
}
.header__right .cv__btn__wrap {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 926px){
  .cv__btn__wrap.-sp{ display: flex; } 
  .cv__btn__wrap::after{
	right: 2.5vw;                    
  }
}
@media print, screen and (min-width: 927px){
  .cv__btn__wrap.-sp{ display: none; } 
}
.header__right .cv__btn__wrap .cv__btn {
  width: 100px;
  padding: 3px;
  border: 2px solid #ffb097;
  font-size: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .header__right .cv__btn__wrap .cv__btn {
    font-size: 1.2rem;
    width: 120px;
    padding: 5px;
  }
}
@media print, screen and (min-width: 768px) {
  .header__right .cv__btn__wrap .cv__btn {
    width: 146px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1240px) {
  .header__right .cv__btn__wrap .cv__btn {
    width: 168px;
    font-size: 1.6rem;
  }
}
.header__right .cv__btn__wrap .cv__btn.-dl {
  border: 2px solid #929fea;
}
.header__right .cv__btn__wrap .cv__btn:nth-child(2) {
  margin: 0 0 0 5px;
}
@media screen and (min-width: 768px) {
  .header__right .cv__btn__wrap .cv__btn:nth-child(2) {
    margin: 0 0 0 10px;
  }
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 24px;
    width: 235px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #6f7aff 0%, #4a97ff 100%);
    border-radius: 32px;
    color: var(--text-light);
    font-size: 20px;
	text-decoration: none;
}
.cta-button:hover {
    opacity: 0.85;
}
.cta-button .arrow-icon {
    font-size: 24px;
    line-height: 1;
}
@media screen and (max-width: 926px) {
    .contact-btn {
		justify-content: flex-start;	
	    border-radius: 4vw;
		width: 185px;
    }
}
@media screen and (max-width: 767px) {
    .contact-btn {
		width: 35vw;
		font-size: 4vw;
        padding: 0.5em 0 0.5em 5.25vw;
    }
}
.header__hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  position: absolute;
  right: 15px;
  padding: 0;
}

@media print, screen and (min-width: 927px) {
  .header__hamburger {
    display: none;
    visibility: hidden;
  }
}
.header__hamburger span {
  width: 25px;
  height: 5px;
  background-color: #FFF;
  position: relative;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  display: block;
  border-radius: 2px;
}
@media print, screen and (max-width: 926px) {
  .header__hamburger {
	right: 3vw;
  }
  .header__hamburger span {
	background-color: #2C2C2C;
  }
}
@media print, screen and (max-width: 767px) {
  .header__hamburger {
	right: 5vw;
  }
  .header__hamburger span {
	width: 6vw;
	height: 0.5vw;
  }
}
.hea
.header__hamburger span:nth-child(1) {
  top: 0;
}

.header__hamburger span:nth-child(2) {
  margin: 6px 0;
}

.header__hamburger span:nth-child(3) {
  top: 0;
}

.header__hamburger.active span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #2c2c2c;
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  top: -9px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #2c2c2c;
}
@media screen and (min-width: 768px) and (max-width: 926px) {
	.header__hamburger.active span:nth-child(3) {
	  top:  calc(100vw * -14 / 800);
	}
}

.header__bg {
  opacity: 0;
}

@media screen and (max-width: 926px) {
  .header__bg {
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media print, screen and (min-width: 927px) {
  .header__bg {
    display: none;
  }
}
.header__bg.show {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  pointer-events: initial;
}

@media screen and (max-width: 926px) {
  .header__bg.show {
    opacity: 1;
  }
}
@media print, screen and (min-width: 768px) {
  .header #js-focus-trap {
    display: none;
  }
}  
.main-nav a {
    text-decoration: none;
    font-weight: 300;
    font-size: 15px;
    transition: opacity 0.2s;
}
.main-nav a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
    .header__nav li a {
        padding: 0.6em;
        line-height: 1.5;
    }
}

/* c-header
*************/
@keyframes headerSlideIn {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes headerSlideOut {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.c-header.-is-up-move {
  animation: headerSlideOut 0.5s forwards;
}
.c-header.-is-down-move {
  animation: headerSlideIn 0.5s forwards;
}
body.-is-sp-menu-open .c-header.-is-down-move,
body.-is-sp-menu-open .c-header.-is-up-move {
  animation: none;
}

.c-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(22 31 46 / 0.838);
  z-index: 1000;

  transform: translateY(0);
  transform: translateZ(1px); /* Safari z-indexバグ回避 */
}
body.page-sisan-navi.-is-header-matte .c-header,
body.home.-is-header-matte .c-header,
body.home .c-header {
  background: rgba(0 0 0 / 0.084);
}
body.-is-dd-menu-open .c-header,
body.-is-header-matte .c-header {
  background: #161F2E;
}
body.page-sisan-navi.-is-header-matte .c-header.-is-fixed,
body.home.-is-header-matte .c-header.-is-fixed,
.c-header.-is-fixed {
  position: fixed;
  background: #161F2E;

  transition: transform 0.3s ease;
}
.c-header .c-width__vessel {
  position: relative;
}
@media screen and (max-width: 768px) {
  body.page-sisan-navi.-is-header-matte .c-header,
  body.home.-is-header-matte .c-header,
  body.home .c-header {
    background: #161F2E;
  }
  .c-header .c-width {
    padding-right: 0;
  }
}

/* c-header-first
*************/
.c-header-first {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;

  padding-bottom: 69px;
}
.c-header.-is-fixed .c-header-first {
  padding-bottom: 0;
}
.c-header-first__nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;

  margin-left: auto;
  height: 80px;
}
.c-header.-is-fixed .c-header-first__nav {
  height: var(--header-height-fixed);
}
@media screen and (max-width: 1300px) {
  .c-header-first {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-header-first__nav {
    height: 54px;
  }
}

/* c-header-second
*************/
.c-header-second {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.c-header.-is-fixed .c-header-second {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
}
@media screen and (max-width: 1300px) {
  .c-header-second {
    display: none;
  }
}
	  
/* c-home-mv
*************/
.c-home-mv {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: var(--header-height) 0 0 0;
  height: 696px;
  color: #fff;
}
.c-home-mv__vessel {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
.c-home-mv__header {
  flex: 1;
  padding: 212px 15px 200px 14px;
  height: 696px;
  line-height: 1;
}
.c-home-mv__body {
  padding: min(6.64vw, 93px) 0 0 0;
  width: clamp(420px, 37.71vw, 528px);
}
.c-home-mv__lead {
	margin: 0;
}
.c-home-mv__en {
  margin-top: 36px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
/*  letter-spacing: 0.04em;*/
}
@media screen and (min-width: 1500px) {
  .c-home-mv__header {
    max-width: 1500px;
	width: 100%;
	margin: 0 auto;
  }
}	
@media screen and (min-width: 769px) and (max-width: 1499px) {
  .c-home-mv {
    height: calc(max(52.1vw, 460px) + var(--header-height));
  }
  .c-home-mv__body {
    padding-top: min(8.0vw, 80px);
    padding-right: 44px;
    width: min(46.4vw, 528px);
  }
  .c-home-mv__en {
    margin-top: min(3.2vw, 32px);
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .c-home-mv__header {
	padding-block-start: calc(178 / 800 * 100%);
	padding-block-end: calc(100 / 800 * 100%); 
	padding-left: 5vw;
  }
  .c-home-mv {
    height: calc(100vw * 857 / 800);
    background: url(/assets/images/home/index_img_mv_01.jpg) no-repeat 0 100%;
    background-size: cover;
  }
  .c-home-mv .c-width {
    width: 100%;
  }
  .c-home-mv__vessel {
    display: block;
  }
  .c-home-mv__body {
    padding: max(35px, 8.97vw) 0 0 0;
    width: auto;
  }
  .c-home-mv__en {
    margin-top: max(17px, 4.36vw);
    padding-left: 2px;
    font-size: max(10px, 2.57vw);
    font-weight: 400;
  }
}

/* c-home-mv animation
*************/
.c-home-mv,
.c-home-mv .c-width,
.c-home-width{
  position: relative;
  z-index: 10;
}

.c-home-mv__images{
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.c-home-mv__image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.c-home-mv__image img{
  width: 100%;
  height: 100%;
  object-position: bottom;
  transform-origin: bottom;
}
.c-home-mv__image.pre {
  z-index: 1;
  visibility: hidden;
}
.c-home-mv__image.active {
  z-index: 3;
}
.c-home-mv__image.next {
  z-index: 2;
}
.c-home-mv__image.active img {
  opacity: 1;
  transform: scale(1.1);
}

.c-home-mv__image img {
  -webkit-animation: slideImageActive 10s linear 0s 1 normal both;
          animation: slideImageActive 10s linear 0s 1 normal both;
  will-change: opacity,transform;
}
.c-home-mv__image.next img {
  -webkit-animation: slideImageNext 10s linear 0s 1 normal both;
          animation: slideImageNext 10s linear 0s 1 normal both;
          will-change: opacity,transform;
}

@-webkit-keyframes slideImageActive {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  90%{
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes slideImageActive {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  90%{
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes slideImageNext {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes slideImageNext {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/* c-home-mv-slider-box
*************/
ul, ol {
  list-style: none;  
  margin: 0;
  padding: 0;
}
.c-home-mv-slider-box {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.c-home-mv-slider-box::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -4px;
  display: block;
  width: 500px;
  width: 98.48%;
  height: 230px;
  height: 92%;
  background: rgba(29 31 34 / 0.17);
  filter: blur(5.5px);
  pointer-events: none;
}
.c-home-mv-slider-box__a {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.c-home-mv-slider-box__a.-sp {
  display: none;
}
body:not(.-is-touchDevice) .c-home-mv-slider-box__a:hover {
  text-decoration: none;
}
.c-home-mv-slider-box__a::after,
.c-home-mv-slider-box__a::before {
  content: '';
  position: absolute;
  bottom: 18px;
  right: 20px;
  display: block;
  width: 22px;
  height: 22px;
  background: url(/assets/images/common/icn_circle_link_01.svg) no-repeat;
  background-size: 22px 22px;

  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-home-mv-slider-box__a[target=_blank]::after,
.c-home-mv-slider-box__a[target=_blank]::before {
  transform: rotate(-45deg);
}
body:not(.-is-touchDevice) .c-home-mv-slider-box__a:hover::after {
  opacity: 0;
}
.c-home-mv-slider-box__a::before {
  background: url(/assets/images/common/icn_circle_link_01_on.svg) no-repeat;
  background-size: 22px 22px;

  opacity: 0;
}
body:not(.-is-touchDevice) .c-home-mv-slider-box__a:hover::before {
  opacity: 1;
}
.c-home-mv-slider-box__image {
  width: min(13.78vw, 193px);
  height: auto;
}
.c-home-mv-slider-box__image .imageItemWrap {
  height: 100%;
}
.c-home-mv-slider-box__image figure {
  width: 100%;
  height: 100%;
  aspect-ratio: 153 / 201;
}
.c-home-mv-slider-box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home-mv-slider-box__main {
  flex: 1;

  padding: min(2.57vw, 36px) min(3.42vw, 48px) min(1.42vw, 20px) min(2.85vw, 40px);
  background: #fff;
}
.c-home-mv-slider-box__logo {
  line-height: 0;
}
* + .c-home-mv-slider-box__logo {
  margin-top: 20px;
}
.c-home-mv-slider-box__logo img {
  width: auto;
  height: 15px;
}
.c-home-mv-slider-box__logo.-barclays img {
  width: 86px;
  height: auto;
}
.c-home-mv-slider-box__head {
  color: #000;
  font-size: clamp(16px, 1.28vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}
body:not(.-is-touchDevice) .c-home-mv-slider-box__a:hover .c-home-mv-slider-box__head {
  color: #000;
}
.c-home-mv-slider-box__name {
  margin-top: 10px;
  color: #686868;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
body:not(.-is-touchDevice) .c-home-mv-slider-box__a:hover .c-home-mv-slider-box__name {
  color: #686868;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .c-home-mv-slider-box__image {
    width: min(15.3vw, 153px);
  }
  .c-home-mv-slider-box__main {
    padding: min(2.4vw, 24px);
  }
  * + .c-home-mv-slider-box__logo {
    margin-top: min(1.6vw, 16px);
  }
  .c-home-mv-slider-box__head {
    font-size: min(1.6vw, 16px);
  }
  .c-home-mv-slider-box__name {
    font-size: min(1.2vw, 12px);
  }
}
@media screen and (max-width: 768px) {
  .c-home-mv-slider-box::before {
    display: none;
  }
  .c-home-mv-slider-box__a.-pc {
    display: none;
  }
  .c-home-mv-slider-box__a.-sp {
    display: flex;
  }
  .c-home-mv-slider-box__a::after,
  .c-home-mv-slider-box__a::before {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 18px;
    height: 18px;
    background: url(/assets/images/common/icn_circle_link_01.svg) no-repeat;
    background-size: 18px 18px;
  }
  .c-home-mv-slider-box__a::before {
    background: url(/assets/images/common/icn_circle_link_01_on.svg) no-repeat;
    background-size: 18px 18px;
  }
  .c-home-mv-slider-box__image {
    width: max(129px, 33.07vw);
  }
  .c-home-mv-slider-box__main {
    padding: 25px 24px 25px 24px;
  }
  * + .c-home-mv-slider-box__logo {
    margin-top: max(11px, 2.82vw);
  }
  .c-home-mv-slider-box__logo img {
    height: max(10px, 2.57vw);
  }
  .c-home-mv-slider-box__logo.-barclays img {
    width: max(58px, 14.87vw);
    height: auto;
  }
  .c-home-mv-slider-box__head {
    font-size: max(14px, 3.58vw);
    line-height: 1.4;
  }
  .c-home-mv-slider-box__name {
    margin-top: max(9px, 2.31vw);
    font-size: max(11px, 2.82vw);
  }
}

/* c-home-mv-slider-wrap
*************/
.c-home-mv-slider-wrap {
  position: relative;
}

/* c-home-mv-slider
*************/
.c-home-mv-slider {
  /* overflow: visible; */
  /* border-radius: 4px; */
  overflow: hidden;
}


/* CSS for section section:hero */
.hero-section {
  position: relative;
  align-items: center;
  padding-top: 96px;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 24.4%; /* 469px / 1920px */
  height: 52.7%; /* 367px / 696px */
  background-color: #00113c;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
}
.hero-text-wrapper {
  margin-left: 10.5%; /* (2404.5 - 2180) / 1920 */
}
.hero-title-group {
  margin-bottom: 64px;
}
.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 23px 0;
}
.hero-subtitle-group {
  display: flex;
  align-items: center;
  gap: 34px;
}
.hero-line {
  width: 71.68px;
  height: 1px;
  background-color: var(--text-light);
}
.hero-subtitle-text {
  font-size: 20px;
  margin: 0;
}
.hero-tagline {
  font-size: 20px;
  margin: 0 0 59px 0;
}
.hero-btn {
  width: 314px;
  height: 50px;
}
.hero-btn img {
  width: 5.13px;
  height: 8px;
}

@media (max-width: 992px) {
  .hero-section {
	padding-top: clamp(64px, 16.25cqw, 130px);
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: auto;
	padding-block-start: calc(130 / 800 * 100%);
  }
  .hero-text-wrapper {
    margin-left: 0;
    text-align: center;
  }
  .hero-line {
    width: 14vw;
  }
  .hero-subtitle-group {
	gap: 6.25vw;
  }
  .hero-title-group {
	margin-block-end: calc(61 / 800 * 100%);
	gap: 6.5vw;
  }	
  .hero-title {
    font-size: 10vw;
	line-height: 1;
  }
  .hero-title.up {
	margin-block-end: calc(45 / 800 * 100%);
  }
  .hero-title {
	margin-block-end: calc(54 / 800 * 100%);
  }
  .hero-tagline, .hero-subtitle-text {
    font-size: 4vw;
	line-height: 1;
  }
  .hero-tagline {
	margin-block-end: calc(116 / 800 * 100%);
  }
  .hero-btn {
    width: 100%;
  }
}

/* CSS for section section:media */
.media-section {
  position: relative;
  padding: 90px 0 80px;
  background-color: #fdfdfd; /* Fallback */
}
.media-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/top_sec01_bg_pc.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
@media (max-width: 768px) {
	.media-section {
	  padding-block-start: calc(112 / 800 * 100%);
	  padding-block-end: calc(100 / 800 * 100%); 
	}
	.media-bg {
	  background-image: url('../images/top_sec01_bg_sp.jpg');
	}
	#media > .container > .section-subtitle {
	  margin-block-end: calc(56 / 800 * 100%);
	}
}
.media-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.media-logos-box {
  width: 1000px;
  max-width: 100%;
}
.media-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 78px;
  flex-wrap: wrap;
}
.media-logos-grid img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .media-logos-box {
    width: 100%;
  }
  .media-logos-grid {
    gap: 40px;
  }
}
	  
/* CSS for section section:dean */
#dean > .container {
    max-width: 1000px;
	padding: 0;
}
@media (max-width: 1024px) {
	#dean > .container {
		padding-left: 20px;
		padding-right: 20px;
	}
}
	
.dean-section {
  padding: 90px 0 80px;
  background-color: var(--bg-light);
}
@media (max-width: 768px) {
	#dean > .container {
		max-width: 100vw;
		padding-left: 5vw;
		padding-right: 5vw;
	}
	.dean-section {
	    padding-block-start: calc(112 / 800 * 100%);
		padding-block-end: calc(100 / 800 * 100%); 
	}
}
#dean > .container > .section-title.up {
    margin-bottom: 20px;
}
.dean-profile-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.dean-text {
  flex: 1;
}
.dean-name {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}
.dean-title {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 38px 0;
  line-height: 1;
}
.dean-bio {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.dean-image-wrapper {
  width: 300px;
  height: 406px;
  flex-shrink: 0;
}
.dean-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dean-books-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.dean-books-info {
  flex: 1;
}
.dean-books-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 40px 0;
  line-height: 1;
}
.dean-books-list {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.dean-books-covers {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.dean-books-covers img {
  height: 236px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
	 .dean-profile-grid, .dean-books-grid {
	  flex-direction: column;
	  align-items: center;
	  text-align: center;
	 }
	 .dean-image-wrapper {
	  width: 46.8vw;
	  height: auto;
	  order: -1;
	 }
	.dean-books-title {
	  font-size: 5vw;
	  margin-block-end: calc(56 / 800 * 100%);
	}
	 .dean-books-covers {
	  order: -1;
	  justify-content: center;
	  flex-wrap: wrap;
	  gap: 2.6vw;
	 }
	.dean-books-covers img {
	  height: calc(100vw * 337 / 800);
	}
	#dean > .container > .section-title.up {
	  margin-bottom:  calc(32 / 800 * 100%);
	}
	.dean-text,.dean-books-grid {
	  text-align: left;
	}
	.dean-name {
  	  font-size: 6.25vw;
	  line-height: 1;
	}
	.dean-title,.dean-bio {
	  font-size: 4vw;
	}
	.dean-title {
      margin-block-start: calc(14 / 800 * 100%);
	  margin-block-end: calc(56 / 800 * 100%);
	}
	.dean-profile-grid {
	  margin-block-end: calc(79 / 800 * 100%);
	}
	.dean-books-grid {
	  display: block;
	}
	.dean-books-list {
	  margin-block-end: calc(48 / 800 * 100%);
	}
}

/* CSS for section section:features */
.features-section {
  padding: 90px 0 80px;
  background-color: var(--bg-light-gray);
}
#features > .container > .section-title.up {
    margin-bottom: 20px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-card {
  display: flex;
  background-color: var(--bg-light);
  box-shadow: 0px 0px 24px 0px rgba(31, 164, 252, 0.2);
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
.feature-text {
  padding: 48px;
  flex: 1;
}
.feature-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.feature-number {
  width: 45px;
  height: 45px;
  background-color: var(--color-primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DIN Alternate', sans-serif;
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
}
.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  text-wrap-mode: nowrap;
}
.feature-description {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.feature-image-wrapper {
  width: 495px;
  flex-shrink: 0;
}
.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .feature-card {
    flex-direction: column;
	height: auto; 
  }
  .feature-image-wrapper {
    width: 100%;
    height: auto;
  }
  .features-list {
	gap: calc(100vw * 40 / 800);
  }
}
@media (max-width: 768px) {
  .feature-card {
	height: auto;
	box-shadow: 0 0 3.75vw 0 rgb(31 164 252 / 20%);
  }
  .features-section {
	padding-block: calc(112 / 800 * 100%);
	padding-block-end: calc(100 / 800 * 100%); 
  }
  .feature-number {
	width: 9.25vw;
    height: 9.25vw;
	font-size: 6.65vw;
  }
  .features-list {
	gap: calc(100vw * 40 / 800);
  }
  .feature-text {
	padding-block-start: calc(64 / 800 * 100%);
	padding-block-end: calc(70 / 800 * 100%);
	padding-left: 7.5vw; 
	padding-right: 7.5vw; 
  }
  .feature-title-group {
	margin-block-end: calc(51 / 800 * 100%);
  }
  .feature-description {
	font-size: 4vw;
  }
  .feature-title {
    font-size: 5vw;
	text-wrap-mode: wrap;
  }
  #features > .container > .section-title.up {
	margin-block-end: calc(32 / 800 * 100%);
  }
}
@media (max-width: 460px) {
  .features-section {
	padding-block-start: calc(112 / 800 * 100%);
	padding-block-end: calc(100 / 800 * 100%); 
  }
}

/* CSS for section section:testimonials */
.testimonials-section {
  position: relative;
  padding: 90px 0;
}
.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/top_sec04_bg_pc.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.testimonials-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}
#testimonials > .container > .section-title {
    margin-bottom: 32px;
}
.testimonials-container > .section-subtitle{
  margin-bottom: 96px;
  line-height: 1;
}
.testimonials-slider {
  display: flex;
  gap: 30px;
  width: 100%;
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-slider::-webkit-scrollbar {
  display: none; 
}
.testimonials-section .container{ max-width:none; }
.testimonial-card {
  flex: 0 0 435px;
  max-width: 435px;
}
.testimonial-image-wrapper {
  position: relative;
  width: 100%;
  height: 272px;
  margin-bottom: 24px;
}
.testimonial-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-name-plate {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 342px;
  height: 80px;
  color: var(--text-light);
  padding: 16px;
  border-radius: 0px 8px 0px 0px;
}
.testimonial-name-plate p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.testimonial-quote {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}
.testimonials-controls {
  text-align: center;
}
.testimonial-dots {
  margin-bottom: 40px;
}
.testimonials-btn {
  border: 2px solid var(--text-light);
  background: transparent;
  color: var(--text-light);
  width: 314px;
  height: 50px;
  margin-bottom: 50px;
}
.testimonials-btn:hover {
  background: var(--text-light);
  color: var(--color-primary);
}
.testimonials-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 14px 64px;           
  border: 2px solid #fff;
  border-radius: 9999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;                
  backdrop-filter: saturate(120%);
}
.testimonials-btn:focus-visible{
  outline: 2px dashed rgba(255,255,255,.9);
  outline-offset: 4px;
}
.testimonials-btn::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease, right .2s ease, opacity .2s ease, border-color .2s ease; /* ← 추가 */
  opacity: .95;
}
.testimonials-btn:hover::after,
.testimonials-btn:focus-visible::after{
  right: 20px;                                          
  transform: translateY(-50%) rotate(45deg) scale(1.05);
  border-color: var(--color-primary);                                  
}
.testimonials-btn.-dark{
  border-color: #111;
  color: #111;
}
.testimonials-btn.-dark::after{
  border-color: #111;
}
.testimonials-disclaimer {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1;
  margin: 0; 
}
.testimonials-slider {
  padding: 0;
  margin-bottom: 28px;
}
.testimonials-slider .testimonial-card {
  margin: 0 12px;
}
.testimonials-slider .slick-list{ margin:0 -15px; }
.testimonials-slider .testimonial-card{
  width:auto;
}
.testimonial-dots{ margin-bottom: 46x; }
.testimonial-dots .slick-dots{
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.testimonial-dots .slick-dots li{ width: 12px; height: 12px; }
.testimonial-dots .slick-dots button::before{ content: none; }
.testimonial-dots .slick-dots button{
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #fff;                     
  text-indent: -9999px;                              
  -webkit-transition: -webkit-transform .3s ease, background-color .3s ease;
  transition: transform .3s ease, background-color .3s ease;
  transform-origin: center;
  will-change: transform;
  cursor: pointer;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.6);
}
.testimonial-dots .slick-dots button:hover,
.testimonial-dots .slick-dots button:focus{
  background-color: #fff;
  outline: none;
}
.testimonial-dots .slick-dots .slick-active button{
  background-color: #2E37A5;          
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
.testimonial-dots .slick-dots .slick-active button { background: #2E37A5; }

@media (max-width: 768px) {
	.testimonials-bg {
	  background-image: url('../images/top_sec04_bg_sp.jpg');
	}
     .testimonials-section {
		padding-block-start: calc(112 / 800 * 100%);
		padding-block-end: calc(100 / 800 * 100%); 
	 }
	 .testimonials-container {
		padding-left: 0;
		padding-right: 0;
	 }
	#testimonials > .container > .section-title {
		margin-bottom: calc(44 / 800 * 100%); 
	}
	 .testimonials-container > .section-subtitle{
		margin-block-end: calc(92 / 800 * 100%) !important;
		line-height: 1.5;
	 }
	 .testimonial-image-wrapper {
		margin-block-end: calc(38 / 800 * 100%);
		width: 67.8vw;
		height: calc(100vw * 340 / 800);
	 }
	 .testimonial-card {
		flex: 0 0 80%;
		max-width: 80%;
	 }
	.testimonial-name-plate {
	  width: 53.3vw;
	  height: calc(100vw * 100 / 800);
      padding-block: calc(26 / 800 * 100%);
	  padding-left: 2.5vw;
	  padding-right: 2.5vw;
	  border-radius: 0px 8px 0px 0px;
	}
	.testimonial-quote {
	  font-size: 4vw;
	}
	.testimonial-name-plate p {
	  margin: 0;
	  font-size: 2.5vw;
	  line-height: 1.5;
	}
	.testimonials-slider {
	  padding: 0;
	  margin-bottom: 40px;
	}
	.testimonials-slider .testimonial-card {
	  margin: 0 1.8vw;
	  width: 67.8vw;
	}
	.testimonials-slider {
	  margin-block-end: calc(50 / 800 * 100%);
	}
    .testimonial-dots {
	  margin-block-end: calc(90 / 800 * 100%);
    }
	.testimonials-btn {
	  border: 0.375vw solid var(--text-light);
	  margin-block-end: calc(100 / 800 * 100%);
	  width: 70vw;
	}
	.testimonials-disclaimer {
	  font-size: 2.5vw;
	}
	.testimonial-dots .slick-dots {
	  gap: 4.6vw; 
	}
	.testimonial-dots .slick-dots button{
	  width: 1.8vw;
	  height: 1.8vw;
	}
}
/* CSS for section section:flow */
.flow-section {
  padding: 90px 0 80px;
  background-color: var(--bg-light-gray);
}
.flow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-container > .section-title {
    margin-bottom: 106px;
}
.flow-steps-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow-line {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: 10px;
  background: #6f7aff;
  z-index: 1;
}
.flow-steps {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 998px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.flow-step {
  background-color: var(--bg-light);
  box-shadow: 0px 0px 30px 0px rgba(31, 164, 252, 0.2);
  width: 306px;
  text-align: center;
  position: relative;
}
.flow-step01 {
  padding: 77px 45px 54px;
}
.flow-step02 {
  padding: 65px 48px 54px;
}
.flow-step03 {
  padding: 63px 48px 54px;
}
.flow-step-label {
  position: absolute;
  top: -17.5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: var(--text-light);
  border-radius: 17.28px;
  padding: 2px 20px;
  font-family: 'DIN 2014', sans-serif;
  font-size: 21px;
  font-weight: 700;
  width: 226px;
}
.flow-step-icon.step01 img {
  max-width: 151px;
  width:100%;	
  max-height: 89px;
  height: 100%;
  margin-bottom: 48px;
}
.flow-step-icon.step02 img {
  max-width: 152px;
  width:100%;	
  max-height: 113px;
  height: 100%;
  margin-bottom: 36px;
}
.flow-step-icon.step03 img {
  max-width: 110px;
  width:100%;	
  max-height: 110px;
  height: 100%;
  margin-bottom: 40px;
}
.flow-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
}
@media (max-width: 1024px) {
  .flow-step {
	width: 100%;
  }
  .flow-steps {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .flow-line {
    width: 10px;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
	.flow-section {
	  padding-block-start: calc(122 / 800 * 100%);
	  padding-block-end: calc(100 / 800 * 100%); 
	}
	.flow-container > .section-title {
	  margin-bottom: calc(207 / 800 * 100%);
	}
	.flow-container {
	  padding-left: 15vw;
	  padding-right: 15vw;
	}
	.flow-step {
      box-shadow: 0 0 4.68vw 0 rgba(31, 164, 252, 0.2);
	  width: 100%;
	}
    .flow-steps {
      gap: calc(100vw * 86 / 800);
    }
    .flow-line {	
	  left: 49%;	
      width: 1.56vw;
    }
    .flow-step-label {
	  font-size: 4.5vw;
    }
    .flow-step-title {
	  font-size: 5vw;
    }
    .flow-step-label {
	  top: -7.5%;
	  width: 50vw;
	  height: calc(100vw * 56 / 800); 
	  line-height: 1.3;
    }
	.flow-step01 {
      padding-top:  calc(100vw * 96 / 800);   
      padding-bottom: calc(100vw * 54 / 800);
	}
	.flow-step02 {
      padding-top:  calc(100vw * 82 / 800);   
      padding-bottom: calc(100vw * 54 / 800);
	}
	.flow-step03 {
      padding-top:  calc(100vw * 79 / 800);   
      padding-bottom: calc(100vw * 54 / 800);
	}
	.flow-step-icon.step01 img {
	  max-width: 23.5vw;	
	  max-height: auto;
	  margin-block-end: calc(134 / 800 * 100%);
	}
	.flow-step-icon.step02 img {
	  max-width: 23.7vw;	
	  max-height: auto;
	  margin-block-end: calc(104 / 800 * 100%);
	}
    .flow-step-icon.step03 img {
	  max-width: 17.1vw;	
	  max-height: auto;
	  margin-block-end: calc(114 / 800 * 100%);
	}
}

/* CSS for section section:cta */
.cta-section {
  padding: 90px 0 80px;
  background: var(--color-gradient);
}
#cta>.container>.section-title.up {
    margin-bottom: 20px;
}
#cta>.container>.section-title {
    margin-bottom: 50px;
}
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta-container > .section-subtitle{
  margin-bottom: 19px;
  line-height: 1;
}
.cta-btn {
  width: 314px;
  height: 50px;
}
.cta-btn-bottom {
  width: 406px;
  height: 60px;
  font-size: 25px;
}
.cta-btn img {
  width: 5.13px;
  height: 8px;
}
@media (max-width: 768px) {
  .cta-section {
    padding-block-start: calc(112 / 800 * 100%);
    padding-block-end: calc(100 / 800 * 100%); 
  }
  .cta-btn {
    width: 90vw;
  }
  .cta-btn-bottom {
    font-size: 5vw;
  }
}
.btn-secondary{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 14px 44px;            
  border: 2px solid var(--color-secondary);
  border-radius: 9999px;
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  line-height: 1;                
  backdrop-filter: saturate(120%);
}
.btn-secondary::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;                    
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-secondary);  
  border-top: 2px solid var(--color-secondary);
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease, right .2s ease, opacity .2s ease;
  opacity: .95;
}
.btn-secondary:hover::after{
  right: 20px;
  transform: translateY(-50%) rotate(45deg) scale(1.05);
}
.btn-secondary.-dark{
  border-color: #111;
  color: #111;
}
.btn-secondary.-dark::after{
  border-color: #111;
}
.cta-disclaimer {
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
}
@media (max-width: 767px) {
	#cta>.container>.section-title {
		margin-block-end: calc(70 / 800 * 100%);
	}
	#cta>.container>.section-title.up {
		margin-bottom:  calc(32 / 800 * 100%);
	}
    .cta-container > .section-subtitle{
        margin-block-end: calc(54 / 800 * 100%);
    }
	.btn-secondary::after{
		width: 1.7vw;
		height: 1.7vw;
		right: 7vw;
	}
}

/* CSS for section section:contact */
.contact-section {
  padding: 90px 0 80px;
  background-color: #f5f5f5;
}
#contact > .container > .section-title {
	font-size: 32px;
    margin-bottom: 32px;
}
#contact>.container>.section-subtitle {
    margin-bottom: 96px;
    line-height: 1;
}
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-boxes {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
}
.contact-box {
  background-color: var(--bg-light);
  box-shadow: 0px 0px 30px 0px rgba(44, 44, 44, 0.1);
  width: 488px;
  max-width: 100%;
  padding: 52px 0 48px 0;
  text-align: center;
}
.contact-box-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 37px 0;
  line-height: 1;
}
.contact-box-info {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px 0;
  line-height: 1;
}
.contact-box-info>a{
  text-decoration: none;
  color: var(--text-dark);
}
.contact-box-hours {
  font-size: 16px;
  margin: 0;
  line-height: 1;
}
@media (max-width: 1024px) {
  .contact-box {
	width: 100%;
  }
  .contact-boxes {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .contact-section {
	padding-block-start: calc(112 / 800 * 100%);  
	padding-block-end: calc(100 / 800 * 100%); 
  }
  .contact-container {
    padding-left: 0;
    padding-right: 0;
  }
  #contact > .container > .section-title {
	font-size: 5vw;
	margin-block-end: calc(44 / 800 * 100%);
  }
  #contact>.container>.section-subtitle {
	margin-block-end: calc(103 / 800 * 100%);
  }
  .contact-box {
	padding-left: 0;
	padding-right: 0;
    padding-block-start: calc(68 / 800 * 100%); 
	padding-block-end: calc(60 / 800 * 100%); 
	width: 76.2vw;
  }
  .contact-box-title {
	font-size: 4vw;
	margin-block-end: calc(54 / 800 * 100%);
  }
  .contact-box-info {
    font-size: 5vw;
    word-break: break-all;
	margin-block-start: calc(56 / 800 * 100%);
	margin-block-end: calc(60 / 800 * 100%);
  }
  .contact-box-hours {
	font-size: 2.5vw;
  }
  .btn-secondary{
	border: 0.375vw solid var(--color-secondary);
	padding: 1.4em 5.3em;
	justify-content: left;
  }
  .btn-secondary-bottom{
	padding: 1.2em;
	justify-content: center;
  }
}

/* CSS for section section:footer */
.footer-section {
  padding: 90px 0 60px;
  background-color: var(--bg-dark);
  color: var(--text-light);
}
@media (max-width: 1500px) {
	.footer-section {
	  padding: 90px 15px 60px;
	}
}
.footer-container{
  max-width: 1500px;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 95px;
}
.footer-info {
  flex-basis: 30%;
}
.footer-logo {
  margin-bottom: 15px;
}
.footer-address {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 255px;
  width: 48%;
}
.footer-link-group h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 36px 0;
  line-height: 1;
}
.footer-link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link-group li {
  margin-bottom: 3px;
}
.footer-link-group a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  line-height: 2.5;
}
.footer-link-group a:hover {
  text-decoration: underline;
}
.footer-copyright {
  text-align: center;
  font-size: 14px;
}
.footer-copyright p {
 line-height: 1;
  margin: 0;
}
@media (max-width: 1024px) {
	.footer-links {
	  gap: 10vw;
	}
}
@media (max-width: 768px) {
  .footer-link-group h4 {
	font-size: 3.7vw;
	margin-bottom: calc(100vw * 27 / 800);
  }
  .footer-address {
	font-size: 3.5vw;
  }
  .footer-link-group li {
	margin-bottom: 0;
  }
  .footer-link-group a {
	font-size: 3.5vw;
	line-height: 2;
  }
  .footer-section {
	padding-left: 5vw;
	padding-right: 5vw;
	padding-block-start: calc(72 / 800 * 100%);  
	padding-block-end: calc(39 / 800 * 100%); 
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
	gap: calc(100vw * 66 / 800);
	padding-block-end: calc(0 / 800 * 100%); 
   }
  .footer-info {
    display: flex;
    flex-direction: column;
	border-bottom: solid 0.5px #fff;
	padding-block-end: calc(62 / 800 * 100%); 
	width: 100%;
  }
  .footer-logo {
	margin-block-end: calc(18/ 800 * 100%);
  }
  .footer-logo img {
	width: 41vw;
  }
  .footer-link-group02 {
	border-top: solid 0.5px #fff;
	border-bottom: solid 0.5px #fff;
	padding-block-start: calc(72 / 800 * 100%); 
	padding-block-end: calc(66 / 800 * 100%); 
  }
  .footer-links {
    gap: 40px;
    justify-content: center;
    width: 100%;
	gap: calc(100vw * 59 / 800);
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-copyright {
	 font-size: 3vw;
	 padding-block-start: calc(72 / 800 * 100%); 
  }
}