@charset "UTF-8";
/**
 * 指定したブレークポイント以下（モバイル・タブレット向け）
 * @param $bp - ブレークポイント名 (xs, tb,tbmin, lg, lgmax)
 */
/**
 * 指定したブレークポイントより大きい（PC向け）
 * ブラウザ間の隙間を防ぐため 0.02px を加算
 * @param $bp - ブレークポイント名 (xs, tb, tbl, lg)
 */
/**
 * 2つのブレークポイントの間（特定の範囲向け）
 * @param $min - 最小幅のブレークポイント名
 * @param $max - 最大幅のブレークポイント名
 */
:root {
  /* color */
  --color-dark-ocean: #0097cf;
  --color-light-ocean: #bfe5f3;
  --color-lighter-ocecan: #ddf0f8;
  --color-lighter-ocecan01: #b9e6ff;
  --color-dark-pink: #e5006e;
  --color-dark-pink01: #e4006e;
  --color-light-pink: #facce2;
  --color-dark-orange: #cd684d;
  --color-darker-orange: #ed6f1f;
  --color-dark-red: #e4006e;
  --color-light-red: #e46fbb;
  --color-lighter-red: #f6e5ea;
  --color-dark-orange: #b28300;
  --color-lighter-orange: #fadac7;
  --color-dark-purple: #ab71d8;
  --color-lighter-purple: #cbd2ff;
  --color-dark-green: #00b500;
  --color-dark-green01: #00d30a;
  --color-dark-green02: #9bffa3;
  --color-light-green: #c1ffbf;
  --color-light-green01: #c1ffbf;
  --color-darker-green: #005351;
  --color-dark-yellow: #ed6d1f;
  --color-light-yellow: #f7e9dc;
  --color-yellow: #f5f515;
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #4d4d4d;
  --color-light-gray: #f5f2f2;
  --color-gradient01: linear-gradient(-70deg, #f97c00 0%, #fbb03b 100%);
  --color-gradient03: linear-gradient(-70deg, #fbb03b 0%, #f97c00 100%);
  --color-gradient02: linear-gradient(-70deg, #002d62 0%, #4e6d92 100%);
  /* font size */
  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-19: 1.1875;
  --fs-20: 1.25rem;
  --fs-21: 1.3125rem;
  --fs-24: 1.5rem;
  --fs-25: 1.5625rem;
  --fs-26: 1.625rem;
  --fs-28: 2.3333rem;
  --fs-30: 1.875rem;
  --fs-32: 2rem;
  --fs-36: 2.25rem;
  --fs-37: 2.3125rem;
  --fs-38: 2.375rem;
  --fs-40: 2.5rem;
  /* font family */
  --ff-noto-san-jp: "Noto Sans JP", serif;
  --ff-noto-serif-jp: "Noto Serif", serif;
  --ff-zenkaku-gothic-antique: "Zen Kaku Gothic Antique", serif;
  /* font weight */
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 700;
  --fw-900: 700;
  /* transition */
  --transition: 0.25s ease-in-out;
  /* box-shadow */
  --box-shadow: 0px 4px 10px hsla(0, 0%, 0%, 0.05);
  /* animation */
  --animation: slide-in 1.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================================

                       common.css

======================================================*/
/* * {
    outline: 1px solid red;
} */
* {
  box-sizing: border-box;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
  font-variant-east-asian: proportional-width;
  line-height: 1.733333;
  word-break: normal;
  line-break: strict;
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-track {
  background: var(--color-white);
}

body::-webkit-scrollbar-thumb {
  background: #cccccc;
  border: 3px solid var(--color-white);
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
}

/* 共通のcss */
.inner900 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.inner954 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.inner1080 {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .inner1080 {
    width: 90%;
    margin: 0 auto;
  }
}

.inner1920 {
  max-width: 1920px;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .inner1920 {
    width: 90%;
    margin: 0 auto;
  }
}

.overflow {
  overflow: hidden;
}

.clearfix {
  zoom: 1;
}

.orange {
  color: var(--color-dark-yellow);
}

.centertxt {
  text-align: center;
}

.lefttxt {
  text-align: left;
}

.righttxt {
  text-align: right;
}

.dislay {
  display: flex;
}

.nb-fadeup {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}
.nb-fadeup.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.nb-fadeup + .nb-fadeup {
  transition-delay: 0.15s;
}
.nb-fadeup + .nb-fadeup + .nb-fadeup {
  transition-delay: 0.3s;
}

.nb-fadein {
  opacity: 0;
  transition: opacity 0.6s ease-out;
  will-change: opacity;
}
.nb-fadein.is-inview {
  opacity: 1;
}

/* Display for PC and SP */
.forPC {
  display: block !important;
}

.forSP {
  display: none !important;
}

@media (max-width: 750px) {
  .forSP {
    display: block !important;
  }
  .forPC {
    display: none !important;
  }
}
.main-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  color: #000;
}
@media (max-width: 750px) {
  .main-title {
    font-size: min(5.25vw, 38px);
    margin-bottom: min(30px, 2.08vw);
  }
}
.main-title span {
  position: relative;
  display: inline-block;
  z-index: 1;
  text-decoration: underline;
  text-decoration-color: var(--color-yellow);
  text-decoration-thickness: 0.3em;
  text-underline-offset: 0;
  text-decoration-skip-ink: none;
}

.main-sub {
  font-size: clamp(16px, 1.65vw, 20px);
  color: #000;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: min(60px, 7vw);
}
@media (max-width: 750px) {
  .main-sub {
    padding-bottom: min(80px, 9vw);
    font-size: min(3.66vw, 24px);
  }
}

.main-head {
  font-size: clamp(16px, 1.67vw, 20px);
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--color-dark-blue);
  text-align: center;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: min(60px, 7vw);
}
@media (max-width: 750px) {
  .main-head {
    padding-bottom: min(80px, 9vw);
    font-size: min(3.66vw, 24px);
  }
}

/* Main Setting */
/* -----------------------------------
                  header 
-------------------------------------*/
.header {
  display: flex;
  padding: 14px 0;
  width: 100%;
  position: fixed;
  align-items: center;
  z-index: 1000;
  background: var(--color-dark-red);
}
.header .header-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 10px;
  padding-left: 10px;
  position: relative;
}
.header .logo img {
  height: 50px;
  width: auto;
}
.header .header-txt {
  color: #fff;
  padding: 10px 0 0 0px;
  text-align: center;
}
.header .slogan {
  margin-left: auto;
  margin-right: 15px;
  text-align: right;
}
.header .menu-trigger {
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-items: center;
  border-radius: 50%;
  background: var(--color-white);
  z-index: 1001;
  border: none;
  overflow: hidden;
  line-height: 1;
}
.header .menu-trigger span {
  display: block;
  width: 23px;
  height: 3px;
  background: var(--color-dark-red);
  transition: all 0.4s;
}
.header .menu-trigger span:first-child {
  margin-bottom: 3px;
}
.header .menu-trigger .menu-text {
  color: var(--color-dark-red);
  font-size: 8px;
  padding-top: 3px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.header .nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 480px;
  height: auto;
  background: var(--color-white);
  border-bottom-left-radius: 50px;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  z-index: 1002;
  padding: 20px 55px 45px;
  max-height: 80dvh;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.header .nav-menu.open {
  display: block;
  right: 0;
}
.header .nav-menu .menu-inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .nav-menu .menu-inner-header .menu-slogan {
  width: 70%;
}
.header .nav-menu .menu-inner-header .btn-close {
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(12vw, 45px);
  height: min(12vw, 45px);
  background-color: var(--color-dark-red);
  color: var(--color-yellow);
  line-height: 1;
  border-radius: 50%;
}
.header .nav-menu .menu-inner-header .btn-close .close-icon {
  position: relative;
  width: min(6vw, 23px);
  height: min(6vw, 23px);
}
.header .nav-menu .menu-inner-header .btn-close .close-icon span {
  display: block;
  width: min(6vw, 23px);
  height: 3px;
  border-radius: 50px;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  left: 0;
}
.header .nav-menu .menu-inner-header .btn-close .close-icon span:nth-child(1) {
  transform: rotate(33deg);
}
.header .nav-menu .menu-inner-header .btn-close .close-icon span:nth-child(2) {
  transform: rotate(-33deg);
}
.header .nav-menu .menu-inner-header .btn-close .close-text {
  font-size: 8px;
  color: var(--color-white);
  font-weight: bold;
}
.header .nav-menu ul {
  list-style: none;
  padding: 20px 0;
}
.header .nav-menu ul li {
  padding: 18px 0;
  border-bottom: 2px dotted var(--color-gray);
}
.header .nav-menu ul li a {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
  color: var(--color-black);
  font-size: clamp(14px, 1.5vw, 16px);
  text-decoration: none;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.header .nav-menu ul li a img {
  width: 26px;
  height: auto;
  transition: transform 0.3s ease;
}
.header .nav-menu ul li a.nav-top {
  justify-content: flex-start;
  gap: 28px;
}
.header .nav-menu ul li a.nav-top_bottom {
  justify-content: flex-start;
  gap: 10px;
}
.header .nav-menu ul li a.nav-top_bottom img {
  width: 16px;
}
.header .nav-menu ul li a:hover {
  color: var(--color-dark-red);
}
.header .nav-menu ul li a:hover img {
  transform: translateX(5px);
}
.header .nav-menu ul li:nth-child(5), .header .nav-menu ul li:nth-child(6) {
  border-bottom: none;
}
.header .nav-menu ul li:nth-child(5) {
  padding-bottom: 10px;
}
.header .nav-menu ul li:last-child {
  padding: 0px;
  border-bottom: none;
}

@media (max-width: 750px) {
  .header .logo img {
    height: min(50px, 10vw);
  }
  .header .slogan img {
    width: 80%;
  }
  .header .nav-menu {
    padding: 2.67vw 7.33vw 6vw;
  }
  .header .nav-menu ul li {
    padding: 15px 2.33vw 15px 0vw;
  }
  .header .nav-menu ul li a {
    font-size: min(3.26vw, 24px);
  }
}
/* -----------------------------------
                guide-introduce
-------------------------------------*/
.guide-introduce {
  padding: min(130px, 15vw) 0 min(5vw, 70px);
  text-align: center;
}
.guide-introduce-top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.guide-introduce-top__title {
  text-align: center;
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  color: #000;
}
.guide-introduce-top__title span {
  padding-left: 10px;
  font-size: clamp(32px, 4.8vw, 42px);
  position: relative;
  display: inline-block;
  z-index: 1;
  text-decoration: underline;
  text-decoration-color: var(--color-yellow);
  text-decoration-thickness: 0.3em;
  text-underline-offset: 0;
  text-decoration-skip-ink: none;
}
.guide-introduce-top__sub {
  font-size: clamp(16px, 1.35vw, 20px);
  color: #000;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.6;
}
.guide-introduce-image {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2vw;
}
.guide-introduce-content__title {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 10px 0 0;
}
.guide-introduce-content__sub {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 30px 0;
  line-height: 2.625;
}
.guide-introduce-anchor {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 30px;
  font-weight: 600;
  margin: clamp(32px, 4.17vw, 50px) 0;
}
.guide-introduce-anchor__btn {
  position: relative;
  flex: 1;
  padding: 1em 2em;
  height: auto;
  border-radius: 10px;
  letter-spacing: 0.1em;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  background-color: var(--color-light-yellow);
  color: var(--color-darker-orange);
  transition: background-color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid transparent;
}
.guide-introduce-anchor__btn::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -45px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23px;
  height: 23px;
  background: url(../images/health_nutrition/icon05.svg) center/contain no-repeat;
  transition: transform 0.3s;
}
.guide-introduce-anchor__btn:hover {
  background-color: rgb(252.2, 224.2, 198.3);
  cursor: pointer;
}
.guide-introduce-anchor__btn:hover::before {
  transform: translateY(-40%) translateX(-50%);
}
.guide-introduce-anchor__btn span {
  display: inline;
  color: var(--color-white);
  background-color: var(--color-black);
  padding: 3px 8px;
}

@media (max-width: 750px) {
  .guide-introduce {
    padding: clamp(90px, 29vw, 118px) 0 clamp(32px, 4.17vw, 50px);
  }
  .guide-introduce-top__title {
    font-size: clamp(18px, 3.66vw, 24px);
    font-size: min(4.66vw, 24px);
  }
  .guide-introduce-top__title span {
    padding-left: 10px;
    font-size: min(5.25vw, 38px);
  }
  .guide-introduce-top__sub {
    line-height: 2;
    font-size: min(3.66vw, 24px);
  }
  .guide-introduce-top::after {
    width: 90%;
    margin: 0 auto;
  }
  .guide-introduce-top img {
    width: 90%;
  }
  .guide-introduce-content__title {
    font-size: min(4.26vw, 28px);
  }
  .guide-introduce-content__sub {
    line-height: 2;
    font-size: min(3.66vw, 24px);
  }
  .guide-introduce-image {
    flex-wrap: wrap;
    gap: min(90px, 16vw);
    margin-bottom: 30px;
  }
  .guide-introduce-anchor {
    flex-wrap: wrap;
    gap: min(90px, 15vw);
    flex-direction: column;
    line-height: 2;
  }
  .guide-introduce-anchor__btn {
    width: auto;
    font-size: min(3.26vw, 30px);
    font-size: min(4.35vw, 30px);
  }
}
.guide-tab {
  padding: 0 0 min(140px, 14vw);
}
.guide-tab__container {
  scroll-margin-top: 120px;
}
.guide-tab__box {
  padding-top: 18px;
}
.guide-tab__box input[type=radio] {
  display: none;
}
.guide-tab__box .tab-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.guide-tab__box .tab-nav .tab-item {
  width: 330px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  padding: 5px 10px;
  letter-spacing: 0;
  cursor: pointer;
  border-radius: 20px 20px 0 0;
  transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.guide-tab__box .tab-nav .tab-item .icon {
  width: 31px;
}
.guide-tab__box .tab-nav .tab-item .text {
  font-size: clamp(16px, 1.125vw, 22px);
  font-weight: 600;
  line-height: 1.2;
}
.guide-tab__box .tab-nav .tab-item.item-purple {
  background: var(--color-lighter-purple);
}
.guide-tab__box .tab-nav .tab-item.item-ocean {
  background: var(--color-lighter-ocecan01);
}
.guide-tab__box .tab-nav .tab-item.item-green {
  background: var(--color-light-green01);
}
.guide-tab__box #tab1:checked ~ .tab-content #content1,
.guide-tab__box #tab2:checked ~ .tab-content #content2,
.guide-tab__box #tab3:checked ~ .tab-content #content3 {
  display: block;
  padding: 60px 0px 70px;
}
.guide-tab__box #tab1:checked ~ .tab-content #content1 {
  background: var(--color-lighter-purple);
}
.guide-tab__box #tab2:checked ~ .tab-content #content2 {
  background: var(--color-lighter-ocecan01);
}
.guide-tab__box #tab3:checked ~ .tab-content #content3 {
  background: var(--color-light-green01);
}
.guide-tab__box #tab1:checked ~ .tab-content #content1 .content-panel__wrap,
.guide-tab__box #tab2:checked ~ .tab-content #content2 .content-panel__wrap,
.guide-tab__box #tab3:checked ~ .tab-content #content3 .content-panel__wrap {
  animation: fadeInUpInside 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.guide-tab__box .content-panel {
  display: none;
}
.guide-tab__box .content-panel__wrap {
  max-width: 920px;
  margin: 0 auto;
}
.guide-tab__box .content-title {
  position: relative;
  text-align: center;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.45;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 70px;
  color: #333;
}
.guide-tab__box #content1 .flower-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 5vw;
}
.guide-tab__box #content1 .flower-layout .flower-item {
  text-align: center;
  max-width: 47%;
  height: 100%;
  position: relative;
}
.guide-tab__box #content1 .flower-layout .flower-item .flower-text {
  font-size: clamp(16px, 2vw, 20px);
  background: #fff;
  padding: 3.25vw 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 131px;
  border-radius: 8px;
  font-weight: 600;
  position: relative;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.guide-tab__box #content1 .flower-layout .flower-item .flower-text::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 50%;
  transform: translateX(83%);
  border-left: 2px solid transparent;
  border-right: 27px solid transparent;
  border-top: 32px solid #fff;
}
.guide-tab__box #content1 .flower-layout .flower-item .image-placeholder {
  position: relative;
  z-index: 3;
}
.guide-tab__box #content1 .flower-layout .flower-item .image-placeholder img {
  width: 90%;
  display: block;
  margin: 0 auto;
}
.guide-tab__box #content1 .flower-layout .flower-item02 .flower-text {
  margin-bottom: -10px;
}
.guide-tab__box #content1 .flower-layout .flower-item02 .image-placeholder {
  position: relative;
  z-index: 3;
}
.guide-tab__box #content2 .flower-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 5vw;
}
.guide-tab__box #content2 .flower-layout .flower-item {
  text-align: center;
  max-width: 47%;
  height: 100%;
  position: relative;
}
.guide-tab__box #content2 .flower-layout .flower-item .flower-text {
  font-size: clamp(16px, 2vw, 20px);
  background: #fff;
  padding: 3.25vw 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 131px;
  border-radius: 8px;
  font-weight: 600;
  position: relative;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.guide-tab__box #content2 .flower-layout .flower-item .flower-text::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 50%;
  transform: translateX(83%);
  border-left: 2px solid transparent;
  border-right: 27px solid transparent;
  border-top: 32px solid #fff;
}
.guide-tab__box #content2 .flower-layout .flower-item .image-placeholder {
  position: relative;
  z-index: 3;
}
.guide-tab__box #content2 .flower-layout .flower-item .image-placeholder img {
  width: 90%;
  display: block;
  margin: 0 auto;
}
.guide-tab__box #content2 .flower-layout .flower-item01 .flower-text {
  margin-bottom: 16px;
}
.guide-tab__box #content2 .flower-layout .flower-item02 .flower-text {
  margin-bottom: -29px;
}
.guide-tab__box #content2 .flower-layout .flower-item02 .flower-text::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 16%;
  transform: translateX(0);
  border-left: 27px solid transparent;
  border-right: 2px solid transparent;
  border-top: 32px solid #fff;
}
.guide-tab__box #content2 .flower-layout .flower-item03 .flower-text {
  margin-bottom: -12px;
}
.guide-tab__box #content2 .flower-layout .flower-item03 .flower-text::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 60%;
  transform: translateX(0);
  border-left: 2px solid transparent;
  border-right: 27px solid transparent;
  border-top: 32px solid #fff;
}
.guide-tab__box #content2 .flower-layout .flower-item04 .flower-text::after {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 60%;
  transform: translateX(0);
  border-left: 2px solid transparent;
  border-right: 27px solid transparent;
  border-top: 32px solid #fff;
}
.guide-tab__box #content2 .guide-bottom {
  display: flex;
  justify-content: space-around;
  max-width: 600px;
  margin: 0 auto;
  align-items: center;
  padding: clamp(24px, 3.5vw, 38px) 0 0;
  gap: 30px;
}
.guide-tab__box #content2 .guide-button {
  flex: 1;
}
.guide-tab__box #content2 .guide-button__box {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1em 1.05em;
  line-height: 1;
  border-radius: 100px;
  color: #fff;
  font-size: clamp(14px, 1.7vw, 20px);
  background: #00a3ff;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.guide-tab__box #content2 .guide-button__box:hover {
  opacity: 0.8;
}
.guide-tab__box #content2 .guide-button__box:hover .guide-button__icon {
  transform: translateX(5px);
}
.guide-tab__box #content2 .guide-button__text {
  flex-grow: 1;
  text-align: center;
}
.guide-tab__box #content2 .guide-button__icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.guide-tab__box #content2 .guide-button__icon img {
  width: 12px;
  height: auto;
  display: block;
}
.guide-tab__box #content3 .content-title span {
  position: relative;
}
.guide-tab__box #content3 .content-title span::before {
  content: "";
  position: absolute;
  left: -12px;
  top: -5px;
  width: 28px;
  height: 20px;
  background: url("../images/admission_guide/img-guide03_icon01.png") no-repeat center;
  background-size: contain;
  z-index: 2;
}
.guide-tab__box #content3 .content-title span::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -5px;
  width: 28px;
  height: 20px;
  background: url("../images/admission_guide/img-guide03_icon02.png") no-repeat center;
  background-size: contain;
  z-index: 2;
}
.guide-tab__box #content3 .title-main {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.guide-tab__box #content3 .title-main::before, .guide-tab__box #content3 .title-main::after {
  content: "''";
  color: var(-var(color-dark-green01));
  position: absolute;
  top: -15px;
  font-size: 20px;
}
.guide-tab__box #content3 .title-main::before {
  left: 0;
}
.guide-tab__box #content3 .title-main::after {
  right: 0;
}
.guide-tab__box #content3 .scholarship-banner {
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 1.4px;
  font-weight: 600;
  line-height: 1;
  background: #fff;
  border: 2px solid var(--color-dark-green01);
  border-radius: 100px;
  padding: 15px 40px;
  font-weight: 600;
  margin-bottom: 40px;
  display: inline-block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.guide-tab__box #content3 .scholarship-banner .highlight {
  color: var(--color-dark-pink01);
  font-size: 1.2em;
}
.guide-tab__box #content3 .exam-info-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
}
.guide-tab__box #content3 .exam-info-flex .exam-box {
  background: #fff;
  padding: 30px;
  flex: 1;
  width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 140px;
}
.guide-tab__box #content3 .exam-info-flex .exam-box .box-botom {
  margin-bottom: 1rem;
}
.guide-tab__box #content3 .exam-info-flex .exam-box .box-title {
  font-size: clamp(18px, 2vw, 22px);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  text-align: center;
}
@media (max-width: 750px) {
  .guide-tab__box #content3 .exam-info-flex .exam-box .box-title {
    font-size: min(5.25vw, 38px);
  }
}
.guide-tab__box #content3 .exam-info-flex .exam-box .subject-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.guide-tab__box #content3 .exam-info-flex .exam-box .subject-tags span {
  background: #ccc;
  padding: 5px 15px;
  font-size: 20px;
  font-size: clamp(16px, 1.35vw, 20px);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
}
.guide-tab__box #content3 .exam-info-flex .ampersand {
  font-size: 60px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.guide-tab__box #content3 .method-note {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  text-align: center;
}
@media (max-width: 750px) {
  .guide-tab__box #content3 .method-note {
    font-size: min(3.26vw, 30px);
    font-size: min(4.35vw, 30px);
  }
}
.guide-tab__box #content3 .method-note .yellow-mark {
  background-color: var(--color-yellow);
  padding: 2px 5px;
}
.guide-tab__box #content3 .green-banner-section {
  position: relative;
  padding: 35px 0 40px;
  text-align: center;
}
.guide-tab__box #content3 .green-banner-section .highlight-box {
  background-color: #9bffa3;
  padding: 30px 20px;
  height: 144px;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  font-weight: 600;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.guide-tab__box #content3 .green-banner-section .highlight-box::before {
  content: "";
  position: absolute;
  right: 50px;
  bottom: -84px;
  width: 150px;
  height: 250px;
  background: url("../images/admission_guide/img-guide03__01.png") no-repeat center bottom;
  background-size: contain;
  z-index: 2;
}
.guide-tab__box #content3 .green-banner-section .highlight-box .text-large {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.45;
}
.guide-tab__box #content3 .green-banner-section .highlight-box .text-small {
  font-size: clamp(18px, 2.5vw, 28px);
}
@media (max-width: 750px) {
  .guide-tab__box #content3 .green-banner-section .highlight-box .text-small {
    font-size: min(4.35vw, 30px);
  }
}
.guide-tab__box #content3 .green-banner-section .btn-primary {
  background-color: var(--color-dark-green01);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 280px;
  padding: 1em 1.05em;
  line-height: 1;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.7vw, 20px);
  transition: transform 0.2s, background 0.3s;
  position: relative;
  z-index: 3;
}
.guide-tab__box #content3 .green-banner-section .btn-primary:hover {
  opacity: 0.8;
}
.guide-tab__box #content3 .green-banner-section .btn-primary:hover .btn-primary__icon {
  transform: translateX(5px);
}
.guide-tab__box #content3 .green-banner-section .btn-primary__text {
  flex-grow: 1;
  text-align: center;
}
.guide-tab__box #content3 .green-banner-section .btn-primary__icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.guide-tab__box #content3 .green-banner-section .btn-primary__icon img {
  width: 12px;
  height: auto;
  display: block;
}
@media (max-width: 750px) {
  .guide-tab__box #content3 .green-banner-section .btn-primary {
    max-width: 100%;
    font-size: min(3.6vw, 24px);
  }
}
.guide-tab__box #content3 .green-banner-section::after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 2px dotted #000;
  margin-top: 40px;
}
.guide-tab__box #content3 .guide-general-exam {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
}
.guide-tab__box #content3 .guide-general-exam .exam-main-title {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 36px;
  margin-bottom: min(5.25vw, 38px);
}
.guide-tab__box #content3 .guide-general-exam .exam-sub-banner {
  font-size: clamp(16px, 2vw, 22px);
  background-color: #9bffa3;
  padding: 10px 20px;
  display: inline-block;
  line-height: 1.45;
  width: 100%;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}
.guide-tab__box #content3 .guide-general-exam .exam-sub-banner::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 33px solid #9bffa3;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  margin-bottom: 40px;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .comparison-col {
  flex: 1;
  width: 350px;
  display: flex;
  flex-direction: column;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .comparison-col .col-header {
  font-size: clamp(14px, 1.7vw, 20px);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2.6px;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .comparison-col .white-card {
  background: #fff;
  padding: 30px 15px;
  height: 252px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .comparison-col .white-card .card-title {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.24;
  transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .comparison-col .white-card .card-title:hover {
  opacity: 0.5;
  text-decoration: underline;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .comparison-col .white-card .exam-types span {
  display: block;
  background: #ccc;
  margin: 10px auto 12px;
  padding: 8px;
  width: 65%;
  font-size: clamp(14px, 1.7vw, 20px);
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .center-info {
  padding-top: 60px;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .center-info .text-small {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.5;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .center-info .text-large {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.5;
  color: #000;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .center-info .down-arrow {
  font-size: clamp(18px, 2.5vw, 28px);
  line-height: 1.5;
  font-weight: 600;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .center-info .text-desc {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.5;
}
.guide-tab__box #content3 .guide-general-exam .exam-comparison-flex .center-info .bold-30 {
  font-size: clamp(28px, 1.67vw, 32px);
}
.guide-tab__box #content3 .guide-general-exam .chance-banner {
  font-size: clamp(28px, 2.5vw, 32px);
  background: #fff;
  border: 2px solid var(--color-dark-green01);
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  line-height: 1;
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.guide-tab__box #content3 .guide-general-exam .chance-banner .pink-text {
  color: var(--color-dark-pink01);
}
.guide-tab__box #content3 .guide-general-exam .chance-banner .large-38 {
  font-size: clamp(24px, 3.5vw, 38px);
}
.guide-tab__box #content3 .guide-general-exam .guide-bottom {
  display: flex;
  justify-content: space-around;
  max-width: 600px;
  margin: 0 auto;
  align-items: center;
  padding: clamp(24px, 3.5vw, 38px) 0 0;
  gap: 30px;
}
.guide-tab__box #content3 .guide-general-exam .guide-button {
  flex: 1;
}
.guide-tab__box #content3 .guide-general-exam .guide-button__box {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1em 1.05em;
  line-height: 1;
  border-radius: 50px;
  color: #fff;
  font-size: clamp(14px, 1.7vw, 20px);
  background: var(--color-dark-green01);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.guide-tab__box #content3 .guide-general-exam .guide-button__box:hover {
  opacity: 0.8;
}
.guide-tab__box #content3 .guide-general-exam .guide-button__box:hover .guide-button__icon {
  transform: translateX(5px);
}
.guide-tab__box #content3 .guide-general-exam .guide-button__text {
  flex-grow: 1;
  text-align: center;
}
.guide-tab__box #content3 .guide-general-exam .guide-button__icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.guide-tab__box #content3 .guide-general-exam .guide-button__icon img {
  width: 12px;
  height: auto;
  display: block;
}

@keyframes fadeInUpInside {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 750px) {
  .guide-tab__container {
    scroll-margin-top: 110px;
  }
  .guide-tab__box .content-panel {
    padding: 26px 0 20px;
  }
  .guide-tab__box .content-panel__wrap {
    max-width: 90%;
    margin: 0 auto;
  }
  .guide-tab__box #tab1:checked ~ .tab-content #content1,
  .guide-tab__box #tab2:checked ~ .tab-content #content2,
  .guide-tab__box #tab3:checked ~ .tab-content #content3 {
    display: block;
    padding: clamp(18px, 2.5vw, 28px) 0 clamp(32px, 4.17vw, 50px);
  }
  .guide-tab__box .content-title {
    font-size: min(5.25vw, 38px);
    margin-bottom: min(50px, 10vw);
  }
  .guide-tab #content1 .content-head {
    text-align: center;
    padding-bottom: 10px;
    font-weight: 600;
    margin-bottom: clamp(32px, 4.17vw, 50px);
    border-bottom: 1px solid #8d6fff;
    font-size: min(3.26vw, 30px);
    font-size: min(4.35vw, 30px);
  }
  .guide-tab #content1 .flower-layout {
    gap: min(80px, 9vw);
    padding-bottom: clamp(32px, 4.17vw, 50px);
    padding-bottom: 0;
  }
  .guide-tab #content1 .flower-layout .flower-item {
    max-width: 100%;
    height: auto;
  }
  .guide-tab #content1 .flower-layout .flower-item .flower-text {
    padding: 5vw 3vw;
    font-size: min(4vw, 28px);
    height: 26vw;
    width: 81vw;
  }
  .guide-tab #content2 .content-head {
    text-align: center;
    padding-bottom: 5px;
    font-weight: 600;
    margin-bottom: min(4.35vw, 30px);
    border-bottom: 1px solid #00a3ff;
    font-size: min(3.26vw, 30px);
    font-size: min(4.35vw, 30px);
  }
  .guide-tab #content2 .flower-layout {
    gap: min(80px, 9vw);
    padding-bottom: clamp(32px, 4.17vw, 50px);
  }
  .guide-tab #content2 .flower-layout .flower-item {
    max-width: 100%;
    height: auto;
  }
  .guide-tab #content2 .flower-layout .flower-item .flower-text {
    padding: 5vw 3vw;
    font-size: min(4vw, 28px);
    height: 26vw;
    width: 81vw;
  }
  .guide-tab #content2 .flower-layout .flower-item02 .flower-text {
    margin-bottom: -15px;
  }
  .guide-tab #content2 .guide-bottom {
    flex-direction: column;
    gap: 4vw;
    padding-top: 0;
  }
  .guide-tab #content2 .guide-button {
    display: contents;
  }
  .guide-tab #content2 .guide-button__box {
    font-size: min(3.6vw, 24px);
  }
  .guide-tab #content3 .content-title span::before, .guide-tab #content3 .content-title span::after {
    top: -12px;
    width: min(4vw, 28px);
  }
  .guide-tab #content3 .content-head {
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 50px;
    margin-bottom: clamp(32px, 4.17vw, 50px);
    border-bottom: 1px solid #00d30a;
    font-weight: 600;
    font-size: min(4.35vw, 30px);
  }
  .guide-tab #content3 .exam-info-flex {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .guide-tab #content3 .exam-info-flex .exam-box {
    min-height: auto;
    width: 100%;
    padding: 4vw 6vw;
  }
  .guide-tab #content3 .exam-info-flex .exam-box .box-title {
    font-size: min(5.25vw, 38px);
  }
  .guide-tab #content3 .exam-info-flex .exam-box .subject-tags {
    gap: 4vw;
  }
  .guide-tab #content3 .exam-info-flex .exam-box .subject-tags span {
    font-size: min(5.25vw, 38px);
  }
  .guide-tab #content3 .exam-info-flex .ampersand {
    font-size: 6vw;
  }
  .guide-tab #content3 .guide-general-exam .exam-main-title {
    font-size: min(5.25vw, 38px);
  }
  .guide-tab #content3 .guide-general-exam .exam-sub-banner {
    font-size: min(4.35vw, 30px);
  }
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex {
    flex-direction: column;
    align-items: center;
  }
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex .center-info {
    padding: 5vw 0 6vw;
  }
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex .center-info .text-small,
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex .center-info .text-large,
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex .center-info .text-desc {
    font-size: min(4.35vw, 30px);
  }
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex .center-info .down-arrow {
    font-size: min(4.35vw, 30px);
  }
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex .comparison-col {
    width: 100%;
  }
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex .comparison-col .col-header {
    font-size: min(5.25vw, 38px);
  }
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex .comparison-col .white-card {
    height: auto;
    padding: 6vw 3vw;
  }
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex .comparison-col .white-card .card-title {
    font-size: min(5.25vw, 38px);
    margin-bottom: 3.5vw;
    line-height: 1.5;
  }
  .guide-tab #content3 .guide-general-exam .exam-comparison-flex .comparison-col .white-card .exam-types span {
    font-size: min(5.25vw, 38px);
  }
  .guide-tab #content3 .guide-general-exam .chance-banner {
    line-height: 1.45;
    font-size: min(5.25vw, 38px);
  }
  .guide-tab #content3 .guide-general-exam .guide-bottom {
    flex-direction: column;
    gap: 4vw;
    padding: clamp(32px, 4.17vw, 50px) 0 0;
  }
  .guide-tab #content3 .guide-general-exam .guide-button {
    display: contents;
  }
  .guide-tab #content3 .guide-general-exam .guide-button__box {
    font-size: min(3.6vw, 24px);
  }
  .guide-tab #content3 .scholarship-banner {
    font-size: min(5.25vw, 38px);
    padding: 5.555vw 3.333vw;
    line-height: 1.45;
  }
  .guide-tab #content3 .green-banner-section {
    padding: min(10vw, 70px) 0 min(3.26vw, 30px);
  }
  .guide-tab #content3 .green-banner-section::after {
    margin-bottom: min(3.26vw, 30px);
  }
  .guide-tab #content3 .green-banner-section .highlight-box {
    height: 180px;
    margin-bottom: min(10vw, 70px);
  }
  .guide-tab #content3 .green-banner-section .highlight-box::before {
    width: 61px;
    height: 225px;
    right: 10px;
    bottom: 5px;
  }
  .guide-tab #content3 .green-banner-section .highlight-box .text-large {
    font-size: min(5.25vw, 38px);
  }
}
@media (max-width: 374px) {
  .guide-tab #content3 .green-banner-section .highlight-box {
    height: auto;
  }
  .guide-tab #content3 .green-banner-section .highlight-box::before {
    right: 0;
    width: 13vw;
    height: 49vw;
  }
}
/* -----------------------------------
                   guide-footer
-------------------------------------*/
.guide-footer {
  display: flex;
  justify-content: space-around;
  max-width: 705px;
  margin: 0 auto;
  padding: min(100px, 10vw) 0 0;
  align-items: center;
  gap: 30px;
}
.guide-footer .guide-button {
  flex: 1;
}
.guide-footer .guide-button__box {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75em 1.25em;
  line-height: 1;
  border-radius: 10px;
  color: #fff;
  font-size: clamp(14px, 1.7vw, 20px);
  background: var(--color-gray);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.guide-footer .guide-button__box:hover {
  opacity: 0.8;
}
.guide-footer .guide-button__box:hover .guide-button__icon {
  transform: translateX(5px);
}
.guide-footer .guide-button__text {
  flex-grow: 1;
  text-align: center;
}
.guide-footer .guide-button__icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.guide-footer .guide-button__icon img {
  width: 12px;
  height: auto;
  display: block;
}

@media (max-width: 750px) {
  .guide-footer {
    flex-direction: column;
    gap: 4vw;
  }
  .guide-footer .guide-button {
    width: 88%;
  }
  .guide-footer .guide-button__box {
    font-size: min(3.6vw, 24px);
  }
}
/* -----------------------------------
                Opencampus
-------------------------------------*/
.banner-circle {
  position: fixed;
  bottom: 140px;
  right: 20px;
  z-index: 100;
  width: clamp(90px, 10vw, 110px);
  height: auto;
  transition: transform 0.3s ease;
}
.banner-circle img {
  width: 100%;
  height: auto;
  display: block;
}
.banner-circle:hover {
  transform: scale(1.05);
  animation-play-state: paused;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@media (max-width: 750px) {
  .banner-circle {
    bottom: 15px;
    right: 15px;
    width: 18vw;
  }
}
/* -----------------------------------
                   footer
-------------------------------------*/
.footer {
  background: #f5f2f2;
  padding: min(50px, 4vw) 0 min(50px, 9vw);
  border-top: 3px dotted var(--color-gray);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-top__logo {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3vw;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  font-size: var(--fs-12);
}
.footer-top__logo img {
  width: min(25vw, 264px);
  display: block;
}
.footer-top__logo p {
  font-size: 14px;
}
.footer .btn-access {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 2px solid #000;
  border-radius: 100px;
  font-size: clamp(14px, 1.7vw, 22px);
  background-image: linear-gradient(#e6e6e6, #e6e6e6);
  background-color: #fff;
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  height: auto;
  line-height: 1;
  min-height: 44px;
  min-width: 240px;
  padding: 11px min(6vw, 100px);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-size 0.4s ease-in-out;
}
@media screen and (max-width: 320px) {
  .footer .btn-access {
    min-width: 90%;
  }
}
.footer .btn-access::before {
  content: "";
  background-image: url(../images/top/icon-map-arrow.svg);
  animation: none !important;
  background-position: 100% 0;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  width: 45px;
  right: 20px;
  height: 17px;
  top: calc(50% - 9px);
  z-index: 1;
}
.footer .btn-access .icon-map,
.footer .btn-access .text,
.footer .btn-access .icon-map-arrow {
  position: relative;
  z-index: 1;
}
.footer .btn-access .icon-map {
  width: 34px;
  height: 28px;
}
.footer .btn-access .text {
  font-size: 16px;
  font-weight: 600;
}
.footer .btn-access .icon-map-arrow {
  width: 14px;
  height: 14px;
}
.footer .btn-access:hover {
  background-size: 100% 100%;
}
.footer .copyright {
  font-size: var(--fs-12);
  color: #000;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.05em;
}

@media (max-width: 750px) {
  .footer {
    padding: min(50px, 7vw) 0 min(70px, 10vw);
  }
  .footer-top, .footer-top__logo {
    flex-direction: column;
    align-items: center;
  }
  .footer-top__logo img {
    width: min(58vw, 352px);
  }
  .footer-top__logo p {
    font-size: min(3.66vw, 24px);
  }
  .footer .btn-access {
    padding: 11px min(20vw, 150px);
    border: 4px solid #000;
    width: 90%;
    max-width: 610px;
  }
  .footer .btn-access .icon-map {
    width: 13vw;
    height: 8vw;
  }
  .footer .btn-access .text {
    font-size: clamp(18px, 3.5vw, 38px);
  }
  .footer .copyright {
    text-align: center;
    font-size: min(16px, 2.3vw);
    padding-top: min(70px, 10vw);
  }
}
/* -----------------------------------
                   pagetop
-------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.pagetop a {
  display: block;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop.is-bottom {
  bottom: 0;
}
.pagetop img {
  width: 45px;
  height: auto;
}

@media (max-width: 750px) {
  .pagetop.is-bottom {
    bottom: 36%;
  }
}

/*# sourceMappingURL=style_admission_guide.css.map */
