@import url('https://fonts.googleapis.com/css2?family=Amaranth:ital,wght@0,400;0,700;1,400;1,700&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap');

/* =======================================
共通
======================================== */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
pre,
form,
fieldset,
figure,
input,
textarea,
p,
blockquote,
th,
td {
  letter-spacing: 0;
}

body {
  color: #151616;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

img {
  width: 100%;
}

.container {
  max-width: 1540px;
  /* 中身が1290pxになる */
}


:root {
  --header-top-margin: 150px;
  --main-color: #257db7;
  --bs-gutter-x: 30px;
}


/* container の左右パディングも統一 */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 30px;
  padding-left: calc(var(--bs-gutter-x) / 2);
  padding-right: calc(var(--bs-gutter-x) / 2);
}

/* row も同じく統一 */
.row {
  --bs-gutter-x: 30px;
}

/* col の左右 15px */
.row>* {
  padding-left: calc(var(--bs-gutter-x) / 2);
  padding-right: calc(var(--bs-gutter-x) / 2);
}

.wrapper {
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.wrapper.page {
  background: none;
}

.btn-bright {
  position: relative;
  overflow: hidden;
}

.btn-bright::before,
.btn-bright::after {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100px) skewX(-30deg);
  content: "";
}

.btn-bright::before {
  width: 60px;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(30px);
  opacity: 0.2;
}

.btn-bright::after {
  width: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(10px);
}

.btn-bright:hover::before {
  opacity: 1;
}

.btn-bright:hover::before,
.btn-bright:hover::after {
  transform: translateX(300px) skewX(-30deg);
  transition: all 0.5s ease;
}

.btn-bright.long:hover::before,
.btn-bright.long:hover::after {
  transform: translateX(700px) skewX(-30deg);
  transition: all 0.5s ease;
}
@media (prefers-reduced-motion: no-preference) {
  :root { scroll-behavior: auto; }
}

@media (max-width: 1530px) {
  :root {
    --header-top-margin: 120px;
  }
}

@media (max-width: 1270px) {
  :root {
    --header-top-margin: 90px;
  }

}

@media (max-width: 768px) {

  .sp-order-2 {
    order: 2;
  }
}

.content {
  background-color: #ecf5fb;
  margin-top: var(--header-top-margin);
}


.sec-ttl-box {
  align-items: center;
  gap: 0 18px;
  display: flex;
  line-height: 1;
  margin-bottom: 20px;
  font-size: 0;
}

.sec-ttl-box .en {
  font-size: 80px;
  line-height: 1;
  font-family: "Amaranth", sans-serif;
}

.sec-ttl-box h3 {
  font-size: 18px;
  position: relative;
  font-weight: 500;
  padding-left: 62px;
  padding-top: 20px;
}

.sec-ttl-box h3::after {
  content: '';
  width: 48px;
  height: 1px;
  position: absolute;
  left: 0;
  top: calc(50% + 10px);
  transform: translateY(-50%);
  background-color: #0b0c0c;
}



@media (max-width: 1300px) {

  .sec-ttl-box .en {
    font-size: 65px;
    line-height: 1;
    font-family: "Amaranth", sans-serif;
  }

  .sec-ttl-box h3 {
    font-size: 16px;
    position: relative;
    font-weight: 500;
    padding-left: 62px;
    padding-top: 20px;
  }
}

@media (max-width: 768px) {

  .sec-ttl-box .en {
    font-size: 55px;
    line-height: 1;
    font-family: "Amaranth", sans-serif;
  }

  .sec-ttl-box h3 {
    font-size: 16px;
    position: relative;
    font-weight: 500;
    padding-left: 52px;
    padding-top: 14px;
  }

  .sec-ttl-box h3::after {
    content: '';
    width: 40px;
    height: 1px;
    position: absolute;
    left: 0;
    top: calc(50% + 6px);
    transform: translateY(-50%);
    background-color: #0b0c0c;
  }
}

@media (max-width: 768px) {
  .sec-ttl-box .en {
    font-size: 50px;
    line-height: 1;
    font-family: "Amaranth", sans-serif;
  }

  .sec-ttl-box {
    align-items: center;
    gap: 0 14px;
    display: flex;
    line-height: 1;
    margin-bottom: 20px;
    font-size: 0;
  }
}


/* =======================================
header
======================================== */

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  transition: transform 0.3s ease;
  transform: translateY(0);
}

#header {
  position: fixed;
  height: 150px;
}


#header .container-fluid {
  display: flex;
  height: 100%;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.logo a {
  max-width: 344px;
  width: 100%;
  display: block;
}

#header .row-head {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding-left: 60px;
  padding-right: 60px;
  justify-content: space-between;
  background-color: #fff;
}

.tel-box {
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.tel-box .tel-icon {
  width: 17px;
  height: 17px;
}

.head_contents {
  display: flex;
  align-items: center;
}

#gNavi > ul {
  display: flex;
}

#gNavi ul li {
  line-height: 1;
  position: relative;
  font-size: 0;
  display: block;
  padding: 0 30px;
}

#gNavi > ul > li:first-child {
  padding: 0 54px;
}

#gNavi ul a {
  display: block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  transition: 0.7s;
  position: relative;
}

#gNavi ul .active a {
  color: #257db7;
}

#gNavi ul li {
  position: relative;
}

#gNavi ul li .arrow {
  display: none;
  right: -22px;
  width: 10px;
  top: 5px;
  font-size: 0;
  position: absolute;
}

#gNavi ul li::after {
  width: 1px;
  position: absolute;
  right: 0;
  top: 10px;
  height: 58px;
  content: '';
  display: block;
  background-color: #b5b5b5;
}

#gNavi ul li:last-child:after {
  content: none;
}

#gNavi ul li.active .arrow {
  display: block;
}


#gNavi ul a:hover {
  color: #257db7;
}

#gNavi ul li a:hover .arrow {
  display: block;
}

#gNavi ul .active a span {
  line-height: 1;
}


#gNavi ul li {
  transition: 0.7s;
}


.contact-btn {
  width: 157px;
  border-radius: 16px;
  background-color: #fe9c10;
  height: 91px;
}

.contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  height: 100%;
}

.contact-btn .mail-icon {
  width: 20px;
  display: block;
  font-size: 0;
  margin-bottom: 12px;
}

.contact-text {
  font-weight: 700;
  font-size: 16px;
  transition: 0.7s;
  color: #fff;
}

.contact-btn:hover .contact-text {
  font-size: 18px;
}

.tel-box {
  margin-bottom: 8px;
}

.tel-box .tel-text {
  font-size: 0;
}

.tel-box .tel-text .tel {
  line-height: 1;
  color: #0b0c0c;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-block;
}

.btn-list {
  display: flex;
  gap: 0 16px;
  margin-left: 30px;
}

.square-btn {
  cursor: pointer;
  margin-top: 15px;
  max-width: 192px;
  height: 53px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #b4d7ee;
}

.square-btn a {
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 100%;
}

.square-btn p {
  color: #257db7;
  font-size: 16px;
  border-radius: 12px;
  transition: 0.7s;
  font-weight: 700;
  text-align: center;
}

.square-btn:hover p {
  font-size: 18px;
}

.nav-icon {
  margin-top: 33px;
  display: block;
}

.nav-icon.aboout {
  width: 56px;
  text-align: center;
  margin: 30px auto 0;
}

.nav-icon.access {
  width: 56px;
  text-align: center;
  margin: 10px auto 0;
}

.nav-icon.one-day {
  width: 53px;
  text-align: center;
  margin: 16px auto 0;
}

.nav-icon.year {
  width: 40px;
  text-align: center;
  margin: 16px auto 0;
}

.nav-icon.class {
  width: 57px;
  text-align: center;
  margin: 28px auto 0;
}

.nav-icon.admission {
  width: 54px;
  text-align: center;
  margin: 28px auto 0;
}
/* 親 li */
#gNavi  li.has-sub {
  position: relative;
}

/* サブメニューの基本スタイル */
#gNavi  li.has-sub .sub-nav {
  position: absolute;
  left: 0;
  border: 2px solid #257db7;
  top: 100%;               /* 親メニューの真下に出す */
  min-width: 160px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition:
    opacity .2s ease,
    transform .2s ease,
    visibility .2s ease;
  z-index: 1000;            /* ヘッダーより上に出す */
}
#gNavi  li.has-sub .sub-nav li {
  display: block;
  padding: 0;
}
/* サブメニューの各項目 */
#gNavi  li.has-sub .sub-nav li a {
  display: block;
  padding: 8px 18px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

#gNavi  li.has-sub .sub-nav li a:hover {
  background-color: #f5f5f5;   /* ホバー時の背景 */
  color: #0074c7;              /* 好きなキーカラーに */
}

/* 親 li をホバーしたらサブメニュー表示 */
#gNavi  li.has-sub:hover .sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 必要に応じて矢印アイコンを回転させる場合（お好みで） */
#gNavi  li.has-sub:hover .arrow img {
  transition: transform .2s ease;
}
@media (max-width: 1870px) {
  #header .row-head {
    padding-left: 30px;
    padding-right: 30px;
  }

  .logo a {
    max-width: 290px;
    width: 100%;
    display: block;
  }

  #gNavi ul li {
    position: relative;
    font-size: 0;
    display: block;
    padding: 0 25px;
  }

  #gNavi > ul > li:first-child {
    padding: 0 34px;
  }

  #gNavi ul li .arrow {
    display: none;
    right: -15px;
    width: 10px;
    top: 5px;
    font-size: 0;
    position: absolute;
  }

}

@media (max-width: 1690px) {
  .logo a {
    max-width: 240px;
    width: 100%;
    display: block;
  }

  .btn-list {
    display: flex;
    gap: 0 10px;
    margin-left: 20px;
  }

  #gNavi ul a {
    font-size: 14px;
  }
}

@media (max-width: 1530px) {
  #header {
    position: fixed;
    height: 120px;
  }

  .logo a {
    max-width: 200px;
    width: 100%;
    display: block;
  }

  .nav-icon.aboout {
    width: 46px;
    text-align: center;
    margin: 30px auto 0;
  }

  .nav-icon.access {
    width: 46px;
    text-align: center;
    margin: 10px auto 0;
  }

  .nav-icon.one-day {
    width: 43px;
    text-align: center;
    margin: 16px auto 0;
  }

  .nav-icon.year {
    width: 30px;
    text-align: center;
    margin: 16px auto 0;
  }

  .nav-icon.class {
    width: 47px;
    text-align: center;
    margin: 28px auto 0;
  }

  .nav-icon.admission {
    width: 44px;
    text-align: center;
    margin: 28px auto 0;
  }

  .contact-text {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
  }
}

@media (max-width: 1540px) {
  #gNavi ul a {
    font-size: 12px;
  }

  #gNavi ul li .arrow {
    display: none;
    right: -15px;
    width: 8px;
    top: 5px;
    font-size: 0;
    position: absolute;
  }

  #gNavi ul li {
    position: relative;
    font-size: 0;
    display: block;
    padding: 0 15px;
  }

  #gNavi > ul > li:first-child {
    padding: 0 30px;
  }

  .square-btn p {
    color: #257db7;
    font-size: 14px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
  }

  .contact-text {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
  }

  .btn-list {
    align-items: center;
    display: flex;
    gap: 0 10px;
    margin-left: 10px;
  }
}

@media (max-width: 1270px) {
  #header {
    position: fixed;
    height: 90px;
  }

  .head_contents {
    display: none;
  }

}

@media (max-width: 1690px) {
  .logo a {
    max-width: 240px;
    width: 100%;
    display: block;
  }
}

@media (max-width: 786px) {
  #header .row-head {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo a {
    max-width: 210px;
    width: 100%;
    display: block;
  }

}



/* =======================================
footer
======================================== */
#footer {
  background-color: #ffffff;
  margin-top: 130px;
  position: relative;
}

.footer-inner {
  position: relative;
  z-index: 100;
  padding: 0 60px;
}

.footer-line {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #bdc2c2;
  padding-top: 87px;
  padding-bottom: 88px;
}

.address {
  margin-top: 40px;
}

.copy {
  background-color: #257db7;
  width: 100%;
  line-height: 1;
  padding: 11px 0;
  font-size: 14px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 100;
}

.ft-nav-list {
  display: flex;
  gap: 0 83px;
}

.ft-nav-list li {
  line-height: 1;
}

.ft-nav-list li+li {
  margin-top: 24px;
}

.ft-nav-list li a {
  font-size: 16px;
  color: #257db7;
  transition: 0.7s;
}

.ft-nav-list li a:hover {
  opacity: 0.6;
}

.ft-nav-list .sub-link {
  margin-top: 18px;
  padding-left: 15px;
  border-left: 1px solid #4a4b4b;
}

.ft-nav-list .sub-link a {
  cursor: pointer;
  font-size: 16px;
  color: #4a4b4b;
}

#pagetop {
  z-index: 1000;
  position: fixed;
  right: 60px;
  width: 64px;
  cursor: pointer;
  bottom: 70px;
  transition: 0.7s;
}

#pagetop:hover {
  opacity: 0.6;
}

@media (max-width: 1500px) {
  .contact-btn {
    width: 127px;
    border-radius: 16px;
    background-color: #fe9c10;
    height: 71px;
    margin-top: 8px;
  }

  .square-btn {
    margin-top: 2px;
    max-width: 160px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #b4d7ee;
  }

  .tel-box .tel-text .tel {
    line-height: 1;
    color: #0b0c0c;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    display: inline-block;
  }

  .btn-list {
    align-items: center;
    display: flex;
    gap: 0 10px;
    margin-left: 20px;
  }
}

@media (max-width: 1140px) {

  .footer-inner {
    position: relative;
    z-index: 100;
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }
}

@media (max-width: 1140px) {
  .ft-nav-list {
    display: flex;
    gap: 0 33px;
  }
}


@media (max-width: 991px) {
  .ft-left .logo {
    margin: 0 auto;
    display: table;
    text-align: center;
  }

  .footer-line {
    display: block;
  }

  .ft-right {
    margin-top: 50px;
  }

  .ft-nav-list {
    justify-content: center;
    display: flex;
    gap: 0 33px;
  }

  .address {
    text-align: center;
    margin-top: 40px;
  }

  #pagetop {
    z-index: 1000;
    position: fixed;
    right: 20px;
    width: 55px;
    bottom: 50px;
  }
}

@media (max-width: 768px) {
  #footer {
    margin-top: 100px;
  }

  .ft-nav-list {
    justify-content: center;
    display: table;
    margin: 0 auto;
    gap: 0 33px;
    ;
  }

  .ft-nav-list>div+div {
    margin-top: 25px;
  }

  .footer-line {
    padding-top: 57px;
    padding-bottom: 58px;
  }
}

@media (max-width: 480px) {
  .copy {
    background-color: #257db7;
    width: 100%;
    line-height: 1;
    padding: 11px 0;
    font-size: 12px;
    color: #fff;
    text-align: center;
  }

  #pagetop {
    z-index: 1000;
    position: fixed;
    right: 20px;
    width: 40px;
    bottom: 40px;
  }
}

/* =======================================
SPMENU
======================================== */

.openbtn {
  position: fixed;
  right: 0;
  top: 0;
  width: 52px;
  height: 52px;
  border-radius: 1px;
  display: none;
  background-color: var(--main-color);
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}

.openbtn.active {
  border: 1px solid #fff;
}

.openbtn {
  cursor: pointer;
  margin-left: 0;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 1.4rem;
  height: 2px;
  background-color: #fff;
}

.openbtn span:nth-of-type(1) {
  top: 8px;
  left: 8px;
  width: 35px;
}

.openbtn span:nth-of-type(2) {
  top: 17px;
  left: 8px;
  width: 35px;
}

.openbtn span:nth-of-type(3) {
  top: 26px;
  left: 8px;
  width: 35px;
}

.openbtn.active span:nth-of-type(1) {
  top: 12px;
  width: 35px;
  left: 8px;
  background-color: #fff;
  transform: translateY(5px) rotate(-160deg);
}

.openbtn.active span:nth-of-type(3) {
  top: 22px;
  left: 8px;
  width: 35px;
  background-color: #fff;
  transform: translateY(-5px) rotate(160deg);
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active p {
  color: #fff;
}

.overlay-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -280px;
  width: 280px;
  color: #fff;
  text-align: left;
  background-color: var(--main-color);
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 9900;
  padding-bottom: 50px;
}

.overlay-menu-inner {
  position: relative;
  height: 100%;
  padding: 100px 20px 20px;
}

.spNav-top-01 > ul > li {
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.spNav-top-01 ul {
  width: 100%;
}

.spNav-top-01 > ul > li:nth-child(n+2) {
  margin-top: 22px;
}

.sp-nav-copy {
  margin-top: 60px;
  padding-bottom: 80px;
  color: #fff;
  font-size: 12px;
}

.overlay-menu-inner .fa-angle-right {
  padding-right: 5px;
}

.overlay-menu .tel {
  font-size: 0;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
  display: flex;
  gap: 0 10px;
  line-height: 1;
  color: var(--blue-color);
  align-items: center;
  margin-top: 30px;
}

.overlay-menu .tel-text {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-left: 5px;
  padding: 0;
}

.overlay-menu .tel-icon {
  width: 30px;
  font-size: 24px;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay-menu .tel a {
  display: block;
  font-size: 0;
  line-height: 1;
}

.overlay-menu {
  display: block;
  opacity: 0;
  left: 0;
  top: 0;
  transition: 0.7s;
  position: fixed;
  overflow: auto;
  width: 100%;
  height: 100%;
  z-index: 1001;
  pointer-events: none;
  z-index: 1000;
}

.overlay-menu.active {
  opacity: 1;
  background: rgba(37, 125, 183, 0.9);
  pointer-events: all;
}

.overlay-menu-inner {
  position: relative;
  height: 100%;
  padding: 120px 28px 20px;
}

.spNav-top-01 > ul > li {
  border-bottom: 2px solid #fff;
}

.spNav-top-01 ul li a {
  padding-right: 30px;
  background-repeat: no-repeat;
  background-position: right top 4px;
  font-weight: 500;
  display: block;
  font-size: 18px;
  color: #fff;
  width: 100%;
  line-height: 1;
}

.spNav-top-01 ul {
  width: 100%;
}

.spNav-top-01 > ul > li:nth-child(n+2) {
  margin-top: 25px;
}

.sp-nav-copy {
  margin-top: 60px;
  color: #fff;
  font-size: 12px;
}

/* 親 li */
.spNav-top-01 ul > li {
  list-style: none;
}

/* 園についてのボタン */
.spNav-top-01 .has-sub .sub-toggle {
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 0;
}

/* ＋／− アイコン */
.spNav-top-01 .has-sub .sub-toggle-icon {
  font-size: 18px;
}

/* 開いているときに − にしたい場合 */
.spNav-top-01 .has-sub.is-open .sub-toggle-icon {
  content: "−";
}

/* サブメニュー */
.spNav-top-01 .has-sub .sub-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  max-height: 0;               /* 初期は閉じる */
  transition: max-height .3s ease;  /* ビヨンと出るアニメーション */
}

.spNav-top-01 .has-sub .sub-nav li a{
  display: flex;
  gap: 0 7px;
  align-items: center;
}

/* サブメニューの各項目 */
.spNav-top-01 .has-sub .sub-nav li a {
  padding: 8px 24px;
  text-decoration: none;
  font-size: 16px;
}

.spNav-top-01 .has-sub .sub-nav li .arrow {
  width: 14px;
  font-size: 0;
  display: block;
}

.spNav-top-01 .has-sub .sub-nav li a:hover {
  background-color: #eee;
}

/* 開いた状態 */
.spNav-top-01 .has-sub.is-open .sub-nav {
  max-height: 500px; /* 中身より少し大きめならOK（5件くらいなら十分） */
}


@media (max-width: 1270px) {

  .openbtn {
    position: fixed;
    right: 0;
    top: 0;
    width: 52px;
    height: 52px;
    border-radius: 1px;
    display: block;
    transform: translate3d(0, 0, 0);
    z-index: 9999;
  }

  .openbtn {
    top: 20px;
    right: 30px;
    display: block;
  }

  .openbtn p {
    font-size: 13px;
    line-height: 1;
    text-align: center;
    color: #fff;
    padding-left: 1px;
    font-weight: 700;
    margin-top: 34px;
  }
}

@media (max-width: 786px) {
  .openbtn {
    right: 20px;
    display: block;
  }

}

@media (max-width: 480px) {
  .openbtn {
    right: 20px;
    display: block;
  }
}

/* =======================================
コンテナ
======================================== */

@media (max-width: 1560px) {
  .container {
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }
}


/* =======================================
お問い合わせ
======================================== */
.contact-area {
  background-color: #ecf5fb;
  position: relative;
  z-index: 2;
  padding-top: 162px;
  padding-bottom: 0;
}

.page .contact-area {
  background-color: #ffffff;
}

.page .contact-area {
  padding-top: 100px;
  padding-bottom: 0;
}

.bottom-cloud {
  position: absolute;
  top: -240px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

.page .bottom-cloud {
  display: none;
}

.contact-inner {
  position: relative;
  z-index: 3;
}

.contact-area .sec-ttl-box {
  margin-bottom: 60px;
  justify-content: center;
}

.contact-mail-box {
  max-width: 612px;
  width: 100%;
  border-radius: 30px;
  height: 200px;
  background-color: #fe9c10;
}

.contact-mail-box a {
  width: 100%;
  cursor: pointer;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-mail-box p {
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  transition: 0.7s;
}

.contact-mail-box a:hover p {
  font-size: 26px;
}

.contact-box {
  justify-content: center;
  display: flex;
  gap: 0 30px;
}

.contact-tel-box {
  max-width: 612px;
  width: 100%;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  background-color: #fff;
  gap: 0 30px;
  border: 2px solid #257db7;
}

.contact-tel-box .tel-text {
  font-size: 52px;
  line-height: 1;
  font-family: "Amaranth", sans-serif;
}

.contact-tel-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #257db7;
}

.contact-tel-icon img {
  width: 33px;
  height: auto;
}

.contact-tel-text-box h4 {
  text-align: center;
  line-height: 1;
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}

@media (max-width: 1500px) {
  .contact-inner {
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }
}

@media (max-width: 1100px) {
  .bottom-cloud {
    position: absolute;
    top: -100px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .contact-box {
    justify-content: center;
    display: block;
    gap: 0 30px;
    margin: 0 auto;
  }

  .contact-tel-box {
    max-width: 612px;
    width: 100%;
    border-radius: 30px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #fff;
    gap: 0 30px;
    border: 2px solid #257db7;
  }

  .contact-mail-box {
    max-width: 612px;
    width: 100%;
    border-radius: 30px;
    display: flex;
    margin: 30px auto 0;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #fe9c10;
  }

  .bottom-cloud {
    position: absolute;
    top: 0;
    width: 1200px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {

  .contact-tel-box {
    max-width: 612px;
    width: 100%;
    border-radius: 30px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    height: 160px;
    background-color: #fff;
    gap: 0 20px;
    border: 2px solid #257db7;
  }

  .contact-mail-box {
    max-width: 612px;
    width: 100%;
    border-radius: 30px;
    display: flex;
    margin: 30px auto 0;
    justify-content: center;
    align-items: center;
    height: 160px;
    background-color: #fe9c10;
  }

  .contact-tel-box .tel-text {
    font-size: 42px;
    line-height: 1;
    font-family: "Amaranth", sans-serif;
  }

  .contact-tel-text-box h4 {
    text-align: center;
    line-height: 1;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .contact-mail-box p {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
  }

  .contact-area .sec-ttl-box {
    margin-bottom: 40px;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .contact-tel-box {
    max-width: 612px;
    width: 100%;
    border-radius: 30px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    height: 120px;
    background-color: #fff;
    gap: 0 15px;
    border: 2px solid #257db7;
  }

  .contact-mail-box {
    max-width: 612px;
    width: 100%;
    border-radius: 30px;
    display: flex;
    margin: 30px auto 0;
    justify-content: center;
    align-items: center;
    height: 120px;
    background-color: #fe9c10;
  }

  .contact-tel-box .tel-text {
    font-size: 36px;
    line-height: 1;
    font-family: "Amaranth", sans-serif;
  }

  .contact-tel-text-box h4 {
    text-align: center;
    line-height: 1;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
  }

  .contact-tel-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #257db7;
  }

  .contact-tel-icon img {
    width: 27px;
    height: auto;
  }

  .page .contact-area {
    padding-top: 100px;
    padding-bottom: 0;
  }
}