@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #000;
  word-break: break-word;
  letter-spacing: 0.05em;
}

body.is_fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

.enTxt {
  font-family: "Work Sans", sans-serif;
}

.enTxt2 {
  font-family: "EB Garamond", serif;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.fade-in {
  opacity: 0;
  /* 初期状態で透明 */
  transform: translateY(50px);
  /* 下に少しずらす */
  transition: opacity 1s 0.3s ease, transform 1s 0.3s ease;
  /* アニメーションの設定 */
}

.fade-in.show {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置 */
}

.acContents {
  height: 0;
  overflow: hidden;
  transition: 0.2s ease height;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

/* ハンバーガーメニューのボタン */
.hamburger__btn {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  position: fixed;
  top: 30px;
  z-index: 1004;
}

.hamburger__btn span {
  width: 90%;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 0;
}

/* メニューオープン時のボタンアニメーション */
.hamburger__btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(25deg);
  width: 100%;
}

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

.hamburger__btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-25deg);
  width: 100%;
}

/* ハンバーガーメニュー */
.drawerNav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.3s ease;
  overflow-y: auto;
  z-index: 1000;
  padding: 70px 20px 40px;
  transform: translateX(100%);
}

.drawerNav.active {
  transform: translateX(0);
}

.header {
  padding: 0 40px;
  padding-right: 90px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 500px) {
  .header {
    padding: 0 20px;
    padding-right: 50px;
  }
}

.header__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
}

@media screen and (max-width: 500px) {
  .header__inner {
    padding: 10px 0;
  }
}

.header__inner .logo {
  margin-right: auto;
}

@media screen and (max-width: 500px) {
  .header__inner .logo img {
    /* width: 32vw; */
    vertical-align: bottom;
  }
}

.header__inner .language-icon {
  margin-right: 25px;
}

.hamburger {
  -webkit-tap-highlight-color: transparent;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
  position: fixed;
  top: 26px;
  right: 40px;
  z-index: 1004;
}

@media screen and (max-width: 500px) {
  .hamburger {
    top: 15px;
    right: 20px;
  }
}

.hamburger .bar {
  position: absolute;
  width: 38px;
  height: 2px;
  background: #213ABA;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

@media screen and (max-width: 500px) {
  .hamburger .bar {
    width: 32px;
  }
}

/* 初期：2本線（上下） */
.hamburger .bar:nth-child(1) {
  transform: translateY(-6px);
}

.hamburger .bar:nth-child(2) {
  transform: translateY(6px);
}

/* 開いた状態：×に変形（2本でクロス） */
.hamburger.is-open .bar:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.is-open .bar:nth-child(2) {
  transform: rotate(-45deg);
}

/* （任意）ドロワーの簡易スタイル */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: 75vw;
  background: #fff;
  box-shadow: -8px 0 20px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 24px 40px;
  z-index: 1003;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 500px) {
  .drawer {
    padding: 24px 20px;
  }
}

.drawer__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.drawer ul {
  margin-bottom: 80px;
}

@media screen and (max-width: 500px) {
  .drawer ul {
    margin-bottom: 50px;
  }
}

.drawer ul li+li {
  margin-top: 50px;
}

@media screen and (max-width: 500px) {
  .drawer ul li+li {
    margin-top: 30px;
  }
}

.drawer ul li a {
  color: #213ABA;
  font-weight: bold;
  font-size: 34px;
}

@media screen and (max-width: 500px) {
  .drawer ul li a {
    font-size: 28px;
  }
}

@media screen and (max-width: 500px) {
  .drawer .buttons {
    margin-bottom: 20px;
  }
}

.drawer .buttons .book {
  display: block;
  color: #fff;
  background-color: #213aba;
  font-weight: bold;
  font-size: 17px;
  padding: 15px 10px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .drawer .buttons .book {
    padding: 10px;
    font-size: 14px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
  }
}

.drawer .buttons .get {
  display: block;
  color: #fff;
  background-color: #ff5b0a;
  font-weight: bold;
  font-size: 17px;
  padding: 15px 10px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .drawer .buttons .get {
    padding: 10px;
    font-size: 14px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
  }
}

@media screen and (max-width: 768px) {
  .drawer {
    width: 100%;
    max-width: 100%;
  }
}

.drawer.open {
  transform: translateX(0);
}

/* 低減動作対応 */
@media (prefers-reduced-motion: reduce) {

  .hamburger .bar,
  .drawer {
    transition: none;
  }
}

.footer {
  padding: 55px 20px;
  background-color: #dce8f4;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 20px 30px;
    margin-bottom: 150px;
  }
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 0;
  }
}

.footer__inner-left {
  width: 40%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer__inner-left {
    width: 100%;
  }
}

.footer__inner-left img {
  margin-bottom: 33px;
}

.footer__inner-left .copy.pc {
  color: #213aba;
  font-size: 16px;
  font-weight: bold;
  display: block;
}

@media screen and (max-width: 768px) {
  .footer__inner-left .copy.pc {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .footer__inner-right {
    text-align: center;
  }
}

.footer__inner-right .tel {
  color: #213aba;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .footer__inner-right .tel {
    justify-content: center;
  }
}

@media screen and (max-width: 500px) {
  .footer__inner-right .tel {
    font-size: 22px;
  }
}

.footer__inner-right .tel img {
  margin-right: 10px;
}

.footer__inner-right .time {
  color: #213aba;
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .footer__inner-right .time {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 500px) {
  .footer__inner-right .time {
    font-size: 14px;
  }
}

.footer__inner .copy.sp {
  color: #213aba;
  font-size: 16px;
  font-weight: bold;
  display: none;
}

@media screen and (max-width: 768px) {
  .footer__inner .copy.sp {
    display: block;
  }
}

@media screen and (max-width: 500px) {
  .footer__inner .copy.sp {
    font-size: 12px;
  }
}

.cta {
  position: fixed;
  opacity: 0;
  bottom: 0;
  display: flex;
  left: 0;
  background: #fff;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  .cta {
    flex-direction: column;
    gap: 10px;
  }
}

.cta .book {
  display: block;
  color: #fff;
  background-color: #213aba;
  font-weight: bold;
  font-size: 22px;
  padding: 15px 10px;
  border-radius: 16px;
  width: 40%;
  text-align: center;
  max-width: 352px;
}

@media screen and (max-width: 768px) {
  .cta .book {
    width: 95%;
    padding: 12px 10px;
    font-size: 19px;
    max-width: 100%;
    border-radius: 9px;
  }
}

.cta .get {
  display: block;
  color: #fff;
  background-color: #ff5b0a;
  font-weight: bold;
  font-size: 22px;
  padding: 15px 10px;
  border-radius: 16px;
  width: 40%;
  max-width: 352px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cta .get {
    width: 95%;
    padding: 12px 10px;
    font-size: 19px;
    max-width: 100%;
    border-radius: 9px;
  }
}

.cta {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.cta.show {
  opacity: 1;
  transform: translateY(0);
}

.faq {
  padding: 100px 20px;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 60px 20px;
  }
}

.faq__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.faq__inner h2 {
  color: #213aba;
  font-size: 37px;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .faq__inner h2 {
    font-size: 30px;
  }
}

.faq__inner-box {
  border-bottom: 1px solid #ababab;
  padding: 50px 0;
}

@media screen and (max-width: 500px) {
  .faq__inner-box {
    padding: 25px 0;
  }
}

.faq__inner-box .faq-question.active::after {
  transform: rotate(0) translateY(-50%);
}

.faq__inner-box .faq-question {
  color: #213aba;
  font-size: 22px;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 500px) {
  .faq__inner-box .faq-question {
    font-size: 18px;
  }
}

.faq__inner-box .faq-question::after {
  content: url(../../img/top/faq_arrow.svg);
  margin-left: auto;
  display: block;
  transform: rotate(180deg) translateY(-50%);
  transition: transform 0.1s;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
}

@media screen and (max-width: 500px) {
  .faq__inner-box .faq-question::after {
    top: 10px;
  }
}

.faq__inner-box .faq-answer {
  height: 0;
  overflow: hidden;
  transition: 0.2s ease height;
}

.faq__inner-box p {
  color: #4b4b4b;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 500px) {
  .faq__inner-box p {
    font-size: 14px;
  }
}

.faq__inner-box .link {
  color: #213aba;
  border-bottom: #213aba 1px solid;
  display: inline-block;
}

@media screen and (max-width: 500px) {
  .faq__inner-box .link {
    font-size: 14px;
  }
}

.faq__inner-box .tel {
  color: #213aba;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  margin-bottom: 5px;
}

@media screen and (max-width: 500px) {
  .faq__inner-box .tel {
    font-size: 22px;
  }
}

.faq__inner-box .tel img {
  margin-right: 10px;
}

.faq__inner-box .time {
  color: #213aba;
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (max-width: 500px) {
  .faq__inner-box .time {
    font-size: 14px;
  }
}

.faq__inner-box li {
  font-size: 13px;
  line-height: 1.5;
  color: #9a9a9a;
}

@media screen and (max-width: 500px) {
  .faq__inner-box li {
    font-size: 10px;
  }
}

.faq__inner-box .blue {
  color: #213aba;
  font-size: 18px;
  margin-bottom: 10px;
}

@media screen and (max-width: 500px) {
  .faq__inner-box .blue {
    font-size: 14px;
  }
}

.faq-note {
  margin-top: 30px;
}

.faq-note li {
  font-size: 13px;
  line-height: 1.5;
  color: #9a9a9a;
}

@media screen and (max-width: 500px) {
  .faq-note li {
    font-size: 10px;
  }
}

.fv {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .fv {
    padding-top: 100px;
  }
}

@media screen and (max-width: 500px) {
  .fv {
    padding-top: 75px;
  }
}

.fv__inner {
  padding: 0 0 0 40px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

@media screen and (max-width: 768px) {
  .fv__inner {
    flex-direction: column-reverse;
    padding: 0;
    gap: 0;
  }
}

.fv__inner h2.sp {
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.1;
  /* text-align: center; */
  background-color: #213aba;
  padding: 10px;
}

@media screen and (max-width: 500px) {
  .fv__inner h2.sp {
    font-size: 21px;
    text-align: center;
    padding: 10px 5px;
  }
}

.fv__inner-col {
  padding: 65px 0;
  width: 48%;
}

@media screen and (max-width: 768px) {
  .fv__inner-col {
    width: 100%;
    padding: 0 20px;
  }
}

.fv__inner-col h2 {
  color: #213aba;
  font-weight: bold;
  font-size: 45px;
  line-height: 1.1;
  margin-bottom: 35px;
}

.fv__inner-col h3.sp {
  text-align: center;
  font-size: 16px;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .fv__inner-col h3.sp {
    /* margin-left: 8px; */
    text-align: left;
  }
}

.fv__inner-col ul.main {
  margin-bottom: 40px;
}

.fv__inner-col ul.main li {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 20px;
  color: #333;
  white-space: nowrap;
  display: flex;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .fv__inner-col ul.main {
    margin-bottom: 20px;
  }

  .fv__inner-col ul.main li {
    font-size: 14px;
    white-space: unset !important;
    margin-bottom: 15px;
  }
}

.fv__inner-col ul.main li img {
  margin-right: 10px;
  vertical-align: bottom;
}

.fv__inner-col ul.main li p {
  line-height: 1.3;
}

@media screen and (max-width: 500px) {
  .fv__inner-col ul.main li p {
    white-space: wrap;
  }

  .fv__inner-col ul.main li img {
    width: 33px;
    margin-right: 5px;
  }
}

.fv__inner-col ul.main li .price {
  font-size: 42px;
  color: #e8380d;
  /* vertical-align: middle; */
  margin: 0 4px;
  white-space: nowrap;
}

@media screen and (max-width: 1270px) {
  .fv__inner-col ul.main li .price {
    font-size: 34px;
    margin-left: 2px;
    margin-right: 4px;
  }
}

@media screen and (max-width: 500px) {
  .fv__inner-col ul.main li .price {
    font-size: 28px;
  }
}

.fv__inner-col ul.main li .orange {
  /* vertical-align: middle; */
  color: #e8380d;
}

.fv__inner-col ul.main li .orange.big {
  font-size: 23px;
}

@media screen and (max-width: 500px) {
  .fv__inner-col ul.main li .orange {
    font-size: 19px;
    /* margin-left: 8px; */
  }

  .fv__inner-col ul.main li .orange.big {
    font-size: 19px;
  }
}

.fv__inner-col ul.sub {
  margin-bottom: 35px;
}

@media screen and (max-width: 500px) {
  .fv__inner-col ul.sub {
    margin-bottom: 20px;
  }
}

.fv__inner-col ul.sub li {
  font-size: 10px;
  color: #9a9a9a;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 500px) {
  .fv__inner-col ul.sub li {
    font-size: 8px;
  }
}

.fv__inner-col ul.sub li::before {
  content: "※";
  font-size: 11px;
  position: absolute;
  left: 0;
  top: 0;
}

.fv__inner-col .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .fv__inner-col .buttons {
    margin-bottom: 20px;
  }
}

.fv__inner-col .buttons .book {
  display: block;
  color: #fff;
  background-color: #213aba;
  font-weight: bold;
  font-size: 17px;
  padding: 15px 10px;
  border-radius: 10px;
  width: 49%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .fv__inner-col .buttons .book {
    padding: 10px;
    font-size: 14px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
  }
}

.fv__inner-col .buttons .get {
  display: block;
  color: #fff;
  background-color: #ff5b0a;
  font-weight: bold;
  font-size: 17px;
  padding: 15px 10px;
  border-radius: 10px;
  width: 49%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .fv__inner-col .buttons .get {
    padding: 10px;
    font-size: 14px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 5px;
  }
}

.fv__inner-img {
  width: 48%;
}

@media screen and (max-width: 768px) {
  .fv__inner-img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.fv__inner-img .fv__slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .fv__inner-img .fv__slider {
    /* position: unset; */
  }
}

.fv__inner-img .fv__slider img {
  width: 100%;
  height: auto;
  display: block;
}

.fv__inner-img .swiper-pagination {
  position: absolute;
  bottom: 5%;
  right: 0;
  text-align: right;
  width: 100%;
  padding-right: 10%;
}

@media screen and (max-width: 768px) {
  .fv__inner-img .swiper-pagination {
    bottom: 5%;
    /* top: 50%; */
    left: 0;
    text-align: center;
    padding-right: 0;
  }
}

@media screen and (max-width: 500px) {
  .fv__inner-img .swiper-pagination {
    /* top: 75%; */
  }
}

@media screen and (max-width: 400px) {
  .fv__inner-img .swiper-pagination {
    /* top: 90%; */
  }
}

.fv__inner-img .swiper-pagination-clickable .swiper-pagination-bullet {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .fv__inner-img .swiper-pagination-clickable .swiper-pagination-bullet {
    background: #D9D9D9;
  }
}

.fv__inner-img .swiper-pagination-clickable .swiper-pagination-bullet-active {
  background: #213ABA;
}

.fv__bottom {
  background-color: #e8e9ea;
}

.fv__bottom__inner {
  max-width: 1240px;
  margin: 0 auto;
  color: #213aba;
  padding: 70px 20px;
}

@media screen and (max-width: 768px) {
  .fv__bottom__inner {
    padding: 40px 20px;
  }
}

.fv__bottom__inner h3 {
  font-size: 37px;
  line-height: 1.4;
  margin-bottom: 20px;
}

@media screen and (max-width: 500px) {
  .fv__bottom__inner h3 {
    font-size: 30px;
  }
}

.fv__bottom__inner p {
  font-size: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 500px) {
  .fv__bottom__inner p {
    font-size: 16px;
  }
}

.fv__slider .swiper-slide {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .fv__slider .swiper-slide {
    flex-direction: column-reverse;
  }
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  background: #D9D9D9;
  opacity: 1;
  margin: 0 8px !important;
}

@media screen and (max-width: 768px) {
  .swiper-pagination-clickable .swiper-pagination-bullet {
    background: #D9D9D9;
  }
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
  background: #213ABA;
}

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

.fv__slider .swiper-pagination {
  text-align: right;
  bottom: 50px;
  padding-right: 5%;
}

@media screen and (max-width: 768px) {
  .fv__slider .swiper-pagination {
    text-align: center;
    bottom: unset;
    top: 22%;
    padding-right: 0;
  }
}

@media screen and (max-width: 450px) {
  .fv__slider .swiper-pagination {
    text-align: center;
    bottom: unset;
    top: 220px;
    padding-right: 0;
  }
}

.language {
  padding: 100px 20px;
}

@media screen and (max-width: 768px) {
  .language {
    padding: 50px 20px;
  }
}

.language__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.language__inner h2 {
  font-size: 37px;
  color: #213aba;
  margin-bottom: 25px;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .language__inner h2 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .language__inner h2 {
    font-size: 30px;
  }
}

.language__inner small {
  font-size: 20px;
  line-height: 1.5;
  color: #213aba;
  margin-bottom: 80px;
  display: block;
}

@media screen and (max-width: 768px) {
  .language__inner small {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 500px) {
  .language__inner small {
    font-size: 16px;
  }
}

.language__inner p {
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .language__inner p {
    margin-bottom: 30px;
    text-align: center;
  }
}

.language__inner p span {
  border-bottom: 2px solid #213aba;
  font-size: 24px;
  font-weight: bold;
  color: #213aba;
}

@media screen and (max-width: 500px) {
  .language__inner p span {
    font-size: 20px;
  }
}

.language__inner-box1 {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .language__inner-box1 {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 500px) {
  .language__inner-box1 {
    gap: 10px;
  }
}

.language__inner-box1-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 23%;
  background-color: #dce8f4;
  padding: 20px 15px;
  border-radius: 16px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .language__inner-box1-card {
    width: 49%;
    margin-bottom: 15px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 600px) {
  .language__inner-box1-card {
    width: 45%;
  }
}

.language__inner-box1-card img {
  margin-bottom: 17px;
}

.language__inner-box1-card p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  color: #213aba;
  margin-bottom: 0;
}

.language__inner-box2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .language__inner-box2 {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.language__inner-box2-card {
  background-color: #dce8f4;
  position: relative;
  padding: 50px 0 40px 40px;
  width: 49%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .language__inner-box2-card {
    width: 100%;
    padding: 66px 20px 20px;
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.language__inner-box2-card h3 {
  color: #fff;
  background-color: #213aba;
  padding: 10px 20px;
  position: absolute;
  left: 0;
  top: -6%;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .language__inner-box2-card h3 {
    left: -20px;
    top: 20px;
  }
}

@media screen and (max-width: 500px) {
  .language__inner-box2-card h3 {
    font-size: 16px;
  }
}

.language__inner-box2-card-col {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .language__inner-box2-card-col {
    width: 100%;
  }
}

.language__inner-box2-card-col h4 {
  color: #213aba;
  font-size: 26px;
  line-height: 1.3;
  margin-bottom: 15px;
}

@media screen and (max-width: 500px) {
  .language__inner-box2-card-col h4 {
    font-size: 21px;
  }
}

.language__inner-box2-card-col p {
  color: #213aba;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .language__inner-box2-card-col p {
    margin-bottom: 20px;
    text-align: left;
  }
}

@media screen and (max-width: 500px) {
  .language__inner-box2-card-col p {
    font-size: 14px;
  }
}

.language__inner-box2-card-img {
  width: 45%;
}

@media screen and (max-width: 768px) {
  .language__inner-box2-card-img {
    width: 100%;
  }
}

.language__inner li {
  font-size: 18px;
  line-height: 1.5;
  color: #213aba;
  display: flex;
  justify-content: flex-start;
  padding-left: 20px;
  position: relative;
}

@media screen and (max-width: 500px) {
  .language__inner li {
    font-size: 14px;
  }
}

.language__inner li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 5px;
  line-height: 1.5;
  font-size: 11px;
  display: block;
}

.menu {
  padding: 0 20px;
}

.menu__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .menu__inner {
    flex-direction: column;
    padding: 50px 0;
  }
}

.menu__inner .card {
  width: 24%;
  color: #213aba;
  text-align: center;
  padding: 20px 12px;
  border: 3px solid #d3d6ea;
  border-radius: 9px;
  height: 512px;
}

@media screen and (max-width: 768px) {
  .menu__inner .card {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 35px 15px;
  }
}

.menu__inner .card img {
  margin-bottom: 25px;
  height: 90px;
  width: auto;
}

.menu__inner .card h2 {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media screen and (max-width: 500px) {
  .menu__inner .card h2 {
    font-size: 20px;
  }
}

.menu__inner .card p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.menu__inner .card p.ma {
  margin: 50px 0;
}

.menu__inner .card p.ma2 {
  margin: 0 0 55px;
}

@media screen and (max-width: 500px) {
  .menu__inner .card p {
    font-size: 14px;
  }

  .menu__inner .card p.ma {
    margin: 30px 0;
  }

  .menu__inner .card p.ma2 {
    margin: 0 0 30px;
  }
}

.menu__inner .card .book {
  display: block;
  color: #fff;
  background-color: #213aba;
  font-weight: bold;
  font-size: 14px;
  padding: 15px 10px;
  border-radius: 16px;
  margin-bottom: 20px;
  border-bottom: none;
}

@media screen and (max-width: 500px) {
  .menu__inner .card .book {
    font-size: 14px;
    border-radius: 9px;
  }
}

.menu__inner .card .get {
  display: block;
  color: #fff;
  background-color: #ff5b0a;
  font-weight: bold;
  font-size: 19px;
  padding: 15px 10px;
  border-radius: 16px;
  margin-bottom: 20px;
  border-bottom: none;
}

@media screen and (max-width: 500px) {
  .menu__inner .card .get {
    font-size: 14px;
    border-radius: 9px;
  }
}

.menu__inner .card small {
  color: #9a9a9a;
  font-size: 10px;
  line-height: 1.5;
}

@media screen and (max-width: 500px) {
  .menu__inner .card small {
    font-size: 8px;
  }
}

.menu__inner .card a {
  color: #213aba;
  font-size: 18px;
  border-bottom: 1px solid #213aba;
}

@media screen and (max-width: 500px) {
  .menu__inner .card a {
    font-size: 16px;
  }
}

.prepare {
  padding: 90px 0 90px 40px;
  background-color: #E8E9EA;
}

@media screen and (max-width: 768px) {
  .prepare {
    padding: 32px 20px;
  }
}

.prepare__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .prepare__inner {
    flex-direction: column;
    gap: 20px;
  }
}

.prepare__inner-col {
  width: 60%;
}

@media screen and (max-width: 768px) {
  .prepare__inner-col {
    width: 100%;
  }
}

.prepare__inner-col h2 {
  color: #213ABA;
  font-size: 37px;
  line-height: 1.2;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .prepare__inner-col h2 {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 500px) {
  .prepare__inner-col h2 {
    font-size: 30px;
  }
}

.prepare__inner-col p {
  font-size: 20px;
  line-height: 1.5;
  color: #213ABA;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .prepare__inner-col p {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 500px) {
  .prepare__inner-col p {
    font-size: 16px;
  }
}

.prepare__inner-col .buttons.pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .prepare__inner-col .buttons.pc {
    display: none;
  }
}

.prepare__inner-col .buttons.pc .book {
  display: block;
  color: #fff;
  background-color: #213ABA;
  font-weight: bold;
  font-size: 17px;
  padding: 15px 10px;
  border-radius: 9px;
  width: 49%;
  text-align: center;
}

.prepare__inner-col .buttons.pc .get {
  display: block;
  color: #fff;
  background-color: #FF5B0A;
  font-weight: bold;
  font-size: 17px;
  padding: 15px 10px;
  border-radius: 9px;
  width: 49%;
  text-align: center;
}

.prepare__inner-img {
  width: 40%;
}

@media screen and (max-width: 768px) {
  .prepare__inner-img {
    width: 100%;
  }
}

.prepare__inner .buttons.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .prepare__inner .buttons.sp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.prepare__inner .buttons.sp .book {
  display: block;
  color: #fff;
  background-color: #213ABA;
  font-weight: bold;
  font-size: 17px;
  padding: 15px 10px;
  border-radius: 16px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .prepare__inner .buttons.sp .book {
    padding: 15px 20px;
    font-size: 19px;
    border-radius: 9px;
  }
}

.prepare__inner .buttons.sp .get {
  display: block;
  color: #fff;
  background-color: #FF5B0A;
  font-weight: bold;
  font-size: 17px;
  padding: 15px 10px;
  border-radius: 16px;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .prepare__inner .buttons.sp .get {
    font-size: 19px;
    border-radius: 9px;
  }
}

.product {
  padding: 100px 20px;
  background-color: #f6f6f6;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .product {
    padding: 50px 20px 80px;
  }
}

.product__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.product__inner h2 {
  font-size: 37px;
  color: #213aba;
  text-align: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 500px) {
  .product__inner h2 {
    font-size: 30px;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 60px;
  }
}

.product__inner-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 90px;
}

@media screen and (max-width: 768px) {
  .product__inner-box {
    display: none;
  }
}

.product__inner-box-card {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  position: relative;
  display: block;
  width: 33%;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .product__inner-box-card {
    width: 100%;
    height: auto;
  }
}

.product__inner-box-card.orange h3 {
  background-color: #ed8000;
}

.product__inner-box-card.orange h4 {
  color: #ed8000;
}

.product__inner-box-card.orange p {
  background-color: #ed8000;
}

.product__inner-box-card.orange li {
  color: #ed8000;
}

.product__inner-box-card.green h3 {
  background-color: #58bd4e;
}

.product__inner-box-card.green h4 {
  color: #58bd4e;
}

.product__inner-box-card.green p {
  background-color: #58bd4e;
}

.product__inner-box-card.green li {
  color: #58bd4e;
}

.product__inner-box-card.yellow h3 {
  background-color: #f2cc51;
}

.product__inner-box-card.yellow h4 {
  color: #f2cc51;
}

.product__inner-box-card.yellow p {
  background-color: #f2cc51;
}

.product__inner-box-card.yellow li {
  color: #f2cc51;
}

.product__inner-box-card.blue h3 {
  background-color: #0168b7;
}

.product__inner-box-card.blue h4 {
  color: #0168b7;
}

.product__inner-box-card.blue p {
  background-color: #0168b7;
}

.product__inner-box-card.blue li {
  color: #0168b7;
}

.product__inner-box-card h3 {
  font-size: 24px;
  background-color: #00a7ba;
  color: #fff;
  padding: 10px 5px;
  box-sizing: border-box;
  border-radius: 100px;
  height: 48px;
  position: absolute;
  top: -4%;
  left: 50%;
  transform: translateX(-50%);
  width: 333px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 500px) {
  .product__inner-box-card h3 {
    width: 270px;
    font-size: 20px;
  }
}

.product__inner-box-card .small {
  font-size: 18px;
  line-height: 1.1;
}

@media screen and (max-width: 500px) {
  .product__inner-box-card .small {
    font-size: 16px;
  }
}

.product__inner-box-card img {
  padding-top: 20px;
  margin-bottom: 30px;
}

.product__inner-box-card h4 {
  font-size: 22px;
  color: #00a7ba;
  margin-bottom: 15px;
}

@media screen and (max-width: 500px) {
  .product__inner-box-card h4 {
    font-size: 16px;
  }
}

.product__inner-box-card p {
  font-size: 18px;
  padding: 5px;
  margin-bottom: 8px;
  background-color: #00a7ba;
  color: #fff;
  display: inline-block;
  font-weight: 600;
}

@media screen and (max-width: 500px) {
  .product__inner-box-card p {
    font-size: 14px;
  }
}

.product__inner-box-card small {
  margin-bottom: 8px;
  font-size: 13px;
  color: #9a9a9a;
  display: block;
}

@media screen and (max-width: 500px) {
  .product__inner-box-card small {
    font-size: 10px;
  }
}

.product__inner-box-card li {
  color: #00a7ba;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  position: relative;
  padding-left: 20px;
}

@media screen and (max-width: 500px) {
  .product__inner-box-card li {
    font-size: 14px;
  }
}

.product__inner-box-card li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 5px;
  line-height: 1.5;
  font-size: 11px;
  display: block;
}

.product__inner .specific {
  position: relative;
  padding: 55px 30px 30px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .product__inner .specific {
    display: none;
  }
}

.product__inner .specific h3 {
  font-size: 26px;
  background-color: #f2cc51;
  color: #fff;
  padding: 10px 20px;
  box-sizing: border-box;
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 100px;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
}

.product__inner .specific__box {
  display: flex;
  justify-content: space-between;
}

.product__inner .specific__box-left {
  width: 48%;
}

.product__inner .specific__box-left .box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.product__inner .specific__box-left .box img {
  width: 48%;
}

.product__inner .specific__box-left .box .col {
  width: 48%;
}

.product__inner .specific__box-left .box .col h4 {
  font-size: 22px;
  color: #f2cc51;
  margin-bottom: 15px;
}

.product__inner .specific__box-left .box .col p {
  font-size: 16px;
  padding: 5px;
  margin-bottom: 8px;
  background-color: #f2cc51;
  color: #fff;
  display: inline-block;
  font-weight: 600;
}

.product__inner .specific__box-left .box .col small {
  margin-bottom: 8px;
  font-size: 13px;
  color: #9a9a9a;
  display: block;
}

.product__inner .specific__box-left li {
  color: #f2cc51;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}

.product__inner .specific__box-left li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 5px;
  line-height: 1.5;
  font-size: 11px;
  display: block;
}

.product__inner .specific__box-right {
  width: 48%;
}

.product__inner .specific__box-right .box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.product__inner .specific__box-right .box img {
  width: 48%;
}

.product__inner .specific__box-right .box .col {
  width: 48%;
}

.product__inner .specific__box-right .box .col h4 {
  font-size: 22px;
  color: #0168b7;
  margin-bottom: 15px;
}

.product__inner .specific__box-right .box .col p {
  font-size: 16px;
  padding: 5px;
  margin-bottom: 8px;
  background-color: #0168b7;
  color: #fff;
  display: inline-block;
  font-weight: 600;
}

.product__inner .specific__box-right .box .col small {
  margin-bottom: 8px;
  font-size: 13px;
  color: #9a9a9a;
  display: block;
}

.product__inner .specific__box-right li {
  color: #0168b7;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}

.product__inner .specific__box-right li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 5px;
  line-height: 1.5;
  font-size: 11px;
  display: block;
}

.product__inner .swiper {
  overflow: visible;
}

.product__inner .swiper-pagination {
  bottom: -30px;
}

.safety {
  padding: 90px 20px;
  background-color: #e8e9ea;
}

@media screen and (max-width: 768px) {
  .safety {
    padding: 40px 20px;
  }
}

.safety__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.safety__inner h2 {
  font-size: 37px;
  color: #213aba;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

@media screen and (max-width: 500px) {
  .safety__inner h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.safety__inner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .safety__inner-box {
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.safety__inner-box-left {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.safety__inner-box-left h3 {
  background-color: #213aba;
  color: #fff;
  font-size: 26px;
  padding: 10px;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .safety__inner-box-left h3 {
    font-size: 20px;
  }
}

.safety__inner-box-left .box {
  padding: 40px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-left .box {
    padding: 20px;
  }
}

.safety__inner-box-left .box p {
  color: #213aba;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media screen and (max-width: 500px) {
  .safety__inner-box-left .box p {
    font-size: 14px;
  }
}

.safety__inner-box-left .box .graf-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-left .box .graf-box {
    flex-direction: column;
  }
}

.safety__inner-box-left .box .graf-box-col {
  width: 40%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-left .box .graf-box-col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .safety__inner-box-left .box .graf-box-col .male {
    width: 48%;
  }
}

.safety__inner-box-left .box .graf-box-col .male h4 {
  color: #fff;
  font-size: 20px;
  background-color: #213aba;
  padding: 10px;
  font-weight: 600;
}

@media screen and (max-width: 500px) {
  .safety__inner-box-left .box .graf-box-col .male h4 {
    font-size: 16px;
  }
}

.safety__inner-box-left .box .graf-box-col .male h4 span {
  font-size: 17px;
}

@media screen and (max-width: 500px) {
  .safety__inner-box-left .box .graf-box-col .male h4 span {
    font-size: 12px;
  }
}

.safety__inner-box-left .box .graf-box-col .male p {
  background-color: #dce8f4;
  font-size: 35px;
  font-weight: 600;
  padding: 10px;
}

@media screen and (max-width: 500px) {
  .safety__inner-box-left .box .graf-box-col .male p {
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .safety__inner-box-left .box .graf-box-col .female {
    width: 48%;
  }
}

.safety__inner-box-left .box .graf-box-col .female h4 {
  color: #fff;
  font-size: 20px;
  background-color: #ff5b0a;
  padding: 10px;
  font-weight: 600;
}

@media screen and (max-width: 500px) {
  .safety__inner-box-left .box .graf-box-col .female h4 {
    font-size: 16px;
  }
}

.safety__inner-box-left .box .graf-box-col .female h4 span {
  font-size: 17px;
}

@media screen and (max-width: 500px) {
  .safety__inner-box-left .box .graf-box-col .female h4 span {
    font-size: 12px;
  }
}

.safety__inner-box-left .box .graf-box-col .female p {
  background-color: #efe2db;
  color: #ff5b0a;
  font-size: 35px;
  font-weight: 600;
  padding: 10px;
}

@media screen and (max-width: 500px) {
  .safety__inner-box-left .box .graf-box-col .female p {
    font-size: 28px;
  }
}

.safety__inner-box-left .box .graf-box-img {
  width: 55%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-left .box .graf-box-img {
    width: 100%;
  }
}

.safety__inner-box-left .box .graf-box-img p {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 5px;
  font-weight: 600;
}

@media screen and (max-width: 500px) {
  .safety__inner-box-left .box .graf-box-img p {
    font-size: 12px;
  }
}

.safety__inner-box-right {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-right {
    width: 100%;
  }
}

.safety__inner-box-right h3 {
  background-color: #213aba;
  color: #fff;
  font-size: 26px;
  padding: 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-right h3 {
    font-size: 20px;
  }
}

.safety__inner-box-right .box {
  padding: 40px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-right .box {
    padding: 20px;
  }
}

.safety__inner-box-right .box p {
  color: #213aba;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-right .box p {
    font-size: 16px;
  }
}

.safety__inner-box-right .box .price {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-right .box .price {
    width: 100%;
  }
}

.safety__inner-box-right .box .price h4 {
  color: #fff;
  font-size: 20px;
  background-color: #213aba;
  padding: 10px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .safety__inner-box-right .box .price h4 {
    font-size: 16px;
  }
}

.safety__inner-box-right .box .price h4 span {
  font-size: 17px;
}

.safety__inner-box-right .box .price p {
  background-color: #dce8f4;
  font-size: 35px;
  font-weight: 600;
  padding: 10px;
}

.safety__inner ul {
  margin-bottom: 35px;
}

.safety__inner ul li {
  color: #9a9a9a;
  font-size: 10px;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .safety__inner ul li {
    font-size: 8px;
  }
}

.safety__inner ul li::before {
  color: #9a9a9a;
  font-size: 8px;
  content: "※";
  position: absolute;
  left: 0;
  top: 1px;
}

.safety__inner .get {
  display: block;
  color: #fff;
  background-color: #ff5b0a;
  font-weight: bold;
  font-size: 19px;
  padding: 15px 10px;
  border-radius: 16px;
  margin-bottom: 15px;
  max-width: 352px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .safety__inner .get {
    border-radius: 9px;
  }
}

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


.ch,
.ch * {
  font-family: "Noto Sans TC", sans-serif !important;
}

.footer {
  position: relative;
  padding-bottom: 80px;
}

.footer__text {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 12px;
  color: #7B7B7B;
}

@media screen and (max-width: 768px) {
  .footer__text {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 12px;
    color: #7B7B7B;
  }

}