@charset "UTF-8";
/* ====================================================
Module
==================================================== */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* A Modern CSS Reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
}

a,
button {
  cursor: revert;
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: normal;
  text-align: left;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

:root {
  --wh: #fff;
  --orange: #f7b756;
  --green: #85c261;
  --lgblue: #76bbc8;
}

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

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* ====================================================
HTML
==================================================== */
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 834px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  padding: 0;
  margin: 0;
  color: #67493b;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  background: #fff;
}

.inner {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0 100px 0 auto;
}
@media screen and (max-width: 834px) {
  .inner {
    padding: 0 5%;
  }
}
.inner--1200 {
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 1200px) {
  .inner--1200 {
    padding: 0 5%;
  }
}

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

a {
  text-decoration: none;
  color: #67493b;
}

.arrow--view-more {
  background-color: var(--bk);
  color: var(--wh);
  width: 35px;
  height: 22px;
  border-radius: 11px;
  position: relative;
}
.arrow--view-more::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.arrow--view-more::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.arrow--view-more:hover::before {
  animation: arrowSlide 0.5s normal cubic-bezier(0.1, -0.6, 0.2, 0);
}

.btn--view-more {
  background-color: var(--bk);
  display: block;
  width: 100%;
  max-width: 35px;
  height: 22px;
  border: none;
  border-radius: 100vmax;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn--view-more::before {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: url(../img/common/arrow-wh.svg) no-repeat;
  background-position: 50% 50%;
  background-size: 35%;
}
.btn--view-more:hover::before {
  animation: arrowSlide 0.5s normal cubic-bezier(0.1, -0.6, 0.2, 0);
}
@keyframes arrowSlide {
  0% {
    background-position: 50% 50%;
    opacity: 1;
  }
  25% {
    background-position: 120% 50%;
    opacity: 0;
  }
  50% {
    background-position: 0 50%;
    opacity: 0;
  }
  75% {
    background-position: 0 50%;
    opacity: 0;
  }
  100% {
    background-position: 50% 50%;
    opacity: 1;
  }
}

.arrowSlide:hover .btn--view-more::before {
  animation: arrowSlide 0.5s normal cubic-bezier(0.1, -0.6, 0.2, 0);
}

.rolle-effect {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.rolle-effect:hover {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}

.rotate-text {
  display: inline-block;
}

.rotate-text:hover {
  animation: rotate 0.5s forwards;
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
/* ====================================================
SWIPER
==================================================== */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ====================================================
LOADING
==================================================== */
body {
  animation: fadeIn 2s ease-out 0 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ====================================================
Animation
==================================================== */
.zoom-in.active {
  animation: zoom-in 1s ease-out forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(9%);
    opacity: 1;
  }
}
.bounce-in.active {
  animation: bounceIn 1.5s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    transform: translateY(-10%);
    opacity: 1;
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fadeup.visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-heading span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.yureru-s {
  animation: yureru-s 2s infinite;
}

@keyframes puluShake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  1% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  2% {
    transform: translate(-2px, 2px) rotate(-1deg);
  }
  3% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  4% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  /* 残りの時間は停止 */
}
.text-wave,
.interview__ttl-title,
.about__ttl-title-s {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.text-wave .char,
.interview__ttl-title .char,
.about__ttl-title-s .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.text-wave .char.is-visible,
.interview__ttl-title .char.is-visible,
.about__ttl-title-s .char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 回転アニメーション */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 回転アニメーション 3D */
@keyframes spin3D {
  0% {
    transform: rotate3d(1, 0, 0, 0deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 360deg);
  }
}
.text-hover {
  display: inline-block;
  cursor: pointer;
  perspective: 400px;
  /* 3D回転をきれいに見せるため（任意） */
}
.text-hover .char {
  display: inline-block;
  transform-origin: center center;
  /* 回転の中心を文字の中央に */
  /* backface-visibility: hidden; // 裏面非表示（任意） */
  /* アニメーション関連のプロパティはJSで設定 */
}

/* テキストウェーブ */
@keyframes slideTextWave {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ====================================================
Pages
==================================================== */
/* ====================================================
Header PC
==================================================== */
.header {
  background-color: var(--wh);
  width: 400px;
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 1000;
  padding: 2.6rem 4rem 4rem;
  border-radius: 20px 20px 0 0;
  display: block;
  overflow-y: auto;
}
@media (min-width: 1681px) {
  .header {
    left: calc(100% - 1200px - 200px - (100% - 1200px) / 2 - 4rem);
  }
}
@media screen and (max-width: 834px) {
  .header {
    display: none;
  }
}
@media (max-height: 900px) {
  .header {
    height: 100vh;
    max-height: 900px;
    overflow: hidden;
  }
}
@media (max-height: 861px) {
  .header {
    bottom: 0;
    overflow-y: scroll;
  }
}
.header__logo-img {
  max-width: 200px;
  margin: auto;
}
.header__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 20px 0;
  background-color: #c7eff1;
  border-radius: 10px;
  margin-top: 2rem;
}
.header__ttl-title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.header__ttl-img-icon {
  max-width: 65px;
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 5rem;
}
@media (max-height: 900px) {
  .header__nav-list {
    gap: 1rem;
  }
}
.header__nav-list-item {
  font-size: 18px;
  font-weight: 600;
  position: relative;
}
.header__nav-list-item:hover {
  color: var(--lgblue);
}
.header__nav-list-item:hover:has(.header__nav-list-sub:hover) {
  color: inherit;
}
.header__nav-list-item:hover:has(.header__nav-list-sub:hover)::before {
  display: none;
}
.header__nav-list-item:hover::before {
  content: "arrow_forward";
  font-family: "Material Symbols Outlined";
  color: var(--orange);
  position: absolute;
  top: -5px;
  left: -3rem;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .header__nav-list-item:hover::before {
    font-size: 20px;
  }
}
@media screen and (max-width: 834px) {
  .header__nav-list-item:hover::before {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .header__nav-list-item:hover::before {
    font-size: 16px;
  }
}
.header__nav-list-item:has(> a.active)::before {
  content: "arrow_forward";
  font-family: "Material Symbols Outlined";
  color: var(--orange);
  position: absolute;
  top: -5px;
  left: -3rem;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .header__nav-list-item:has(> a.active)::before {
    font-size: 20px;
  }
}
@media screen and (max-width: 834px) {
  .header__nav-list-item:has(> a.active)::before {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .header__nav-list-item:has(> a.active)::before {
    font-size: 16px;
  }
}
.header__nav-list-sub {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.header__nav-list-sub-item {
  font-size: 15px;
  color: #83807f;
}
.header__nav-list-sub-item:hover {
  color: var(--lgblue);
}
.header__nav-list a.active {
  color: var(--lgblue);
}
.header__banner {
  background-color: #e7f8dd;
  border-radius: 10px;
  padding: 2.5rem 3rem;
  text-align: center;
  line-height: 1;
}
.header__banner-title {
  font-size: 18px;
  font-weight: 600;
  background-color: var(--orange);
  color: var(--wh);
  font-weight: 600;
  border-radius: 100vmax;
  padding: 7px 0;
}
.header__banner-text {
  font-size: 15px;
  font-weight: 600;
  margin-top: 1rem;
}
.header__banner-text.--s {
  font-size: 13px;
  display: block;
}
.header__banner-tel {
  font-size: 36px;
  font-family: "Inter", sans-serif;
  font-weight: bold;
}
.header__banner-btn {
  background-color: var(--wh);
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 2.3rem;
  width: 100%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  height: 45px;
}
.header__banner-btn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.header__banner-btn-link span {
  color: var(--orange);
  padding-left: 1.5rem;
}

/* ====================================================
Header SP
==================================================== */
.header__sp {
  display: none;
  height: auto;
}
@media screen and (max-width: 834px) {
  .header__sp {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem;
    background-color: transparent;
    border-radius: 0;
  }
}
.header__sp-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 640px) {
  .header__sp-inner {
    justify-content: space-around;
    gap: 0;
  }
}
.header__sp-logo-img {
  max-width: 114px;
  margin: auto;
}
.header__sp-btn {
  background-color: var(--orange);
  color: var(--wh);
  border-radius: 10px;
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 600;
}
.header__sp-nav {
  width: 100%;
  overflow-x: auto;
  display: none;
  background-color: var(--wh);
  padding: 2.5rem 2rem 2.5rem;
  box-shadow: 6px 0 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (max-width: 834px) {
  .header__sp-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    pointer-events: auto;
  }
}
.header__sp-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.header__sp-nav-list {
  display: flex;
  gap: 3rem;
  width: -moz-max-content;
  width: max-content;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.header__sp-nav-list-item {
  scroll-snap-align: start;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
}
.header__sp-nav-list-sub {
  padding-left: 1rem;
  gap: 2rem;
}
.header__sp-nav-list-sub-item {
  font-size: 15px;
  color: #83807f;
}
.header__sp-nav-list a.active {
  color: var(--lgblue);
}

/* ====================================================
Footer
==================================================== */
.footer {
  width: 100%;
  background-color: #187046;
  color: var(--wh);
  padding: 67px 0 75px;
}
@media screen and (max-width: 1200px) {
  .footer {
    padding: 50px 0 60px;
  }
}
@media screen and (max-width: 834px) {
  .footer {
    padding: 40px 0 50px;
  }
}
@media screen and (max-width: 640px) {
  .footer {
    padding: 30px 0 40px;
  }
}
@media (min-width: 1681px) {
  .footer-inner {
    margin-right: calc((100% - 1200px) / 2 - 220px + 100px);
  }
}
@media (max-width: 1680px) {
  .footer-inner {
    width: calc(100% - 440px);
    max-width: 1000px;
    margin-left: calc(100% - (100% - 440px) + (100% - 1440px) / 2);
    margin-right: calc((100% - 1440px) / 2);
  }
}
@media (max-width: 1500px) {
  .footer-inner {
    width: calc(100% - 440px - 2rem);
    margin-left: 440px;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .footer-inner {
    width: 100%;
    margin-left: auto;
  }
}
.footer__ttl {
  width: 100%;
  position: relative;
  height: auto;
  border-bottom: 1px solid #2c8259;
  padding-bottom: 3rem;
  margin-bottom: 6rem;
  text-align: right;
}
@media screen and (max-width: 834px) {
  .footer__ttl {
    padding-bottom: 2rem;
    margin-bottom: 4rem;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .footer__ttl {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
.footer__logo {
  max-width: 200px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .footer__logo {
    max-width: 180px;
  }
}
@media screen and (max-width: 834px) {
  .footer__logo {
    max-width: 160px;
  }
}
@media screen and (max-width: 640px) {
  .footer__logo {
    max-width: 140px;
  }
}
.footer__address-ttl {
  font-size: 21px;
  margin-bottom: 2rem;
}
.footer__address-number {
  font-size: 15px;
  margin-left: 1.8rem;
}
.footer__address-link {
  text-decoration: underline;
}
.footer__subinner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}
@media screen and (max-width: 834px) {
  .footer__subinner {
    flex-direction: column;
    gap: 4rem;
  }
}
.footer small {
  color: #89af9d;
  font-size: 12px;
  font-family: "Inter", sans-serif;
}

/* ページトップ */
.pagetop {
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  .pagetop {
    margin-top: 2rem;
    display: inline-block;
  }
}
@media screen and (max-width: 834px) {
  .pagetop {
    margin-bottom: 1rem;
  }
}

/* ====================================================
Common（共通）
==================================================== */
body {
  background-color: #fffdf3;
}

body.active {
  overflow: hidden;
}

.orange-txt {
  font-size: 20px;
  font-weight: 600;
  color: var(--orange);
}
@media screen and (max-width: 834px) {
  .orange-txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .orange-txt {
    font-size: 16px;
  }
}

/* ====================================================
CTA（Call To Action）
==================================================== */
.cta {
  width: 100%;
  background: url(../img/cta-bg.webp) no-repeat center;
  background-size: cover;
  background-color: var(--green);
  padding: 12rem 0 13rem;
}
@media screen and (max-width: 1200px) {
  .cta {
    padding: 8rem 0 9rem;
  }
}
@media screen and (max-width: 834px) {
  .cta {
    padding: 6rem 0 7rem;
  }
}
@media screen and (max-width: 640px) {
  .cta {
    padding: 4rem 0 5rem;
  }
}
@media (min-width: 1681px) {
  .cta-inner {
    margin-right: calc((100% - 1200px) / 2 - 220px + 100px);
  }
}
@media (max-width: 1680px) {
  .cta-inner {
    width: calc(100% - 440px);
    max-width: 1000px;
    margin-left: calc(100% - (100% - 440px) + (100% - 1440px) / 2);
    margin-right: calc((100% - 1440px) / 2);
  }
}
@media (max-width: 1500px) {
  .cta-inner {
    width: calc(100% - 440px - 2rem);
    margin-left: 440px;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .cta-inner {
    width: 100%;
    margin-left: auto;
  }
}
.cta__ttl {
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1200px) {
  .cta__ttl {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .cta__ttl {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .cta__ttl {
    margin-bottom: 2rem;
  }
}
.cta__ttl-title {
  font-size: 42px;
  font-weight: bold;
  color: #fff000;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1200px) {
  .cta__ttl-title {
    font-size: 36px;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .cta__ttl-title {
    font-size: 30px;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .cta__ttl-title {
    font-size: 24px;
    margin-bottom: 1rem;
  }
}
.cta__ttl-text {
  font-size: 18px;
  color: var(--wh);
}
@media screen and (max-width: 834px) {
  .cta__ttl-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .cta__ttl-text {
    font-size: 14px;
  }
}
.cta__banner {
  background-color: #fffdf3;
  border-radius: 20px;
  padding: 6rem 6rem;
}
@media screen and (max-width: 1200px) {
  .cta__banner {
    padding: 4rem 5rem;
  }
}
@media screen and (max-width: 834px) {
  .cta__banner {
    padding: 3rem 4rem;
  }
}
@media screen and (max-width: 640px) {
  .cta__banner {
    padding: 2rem 3rem;
  }
}
.cta__banner:not(:last-of-type) {
  margin-bottom: 2rem;
}
.cta__banner:nth-of-type(2), .cta__banner:nth-of-type(3) {
  padding: 3rem 6rem 4rem;
}
@media screen and (max-width: 1200px) {
  .cta__banner:nth-of-type(2), .cta__banner:nth-of-type(3) {
    padding: 3rem 5rem 4rem;
  }
}
@media screen and (max-width: 834px) {
  .cta__banner:nth-of-type(2), .cta__banner:nth-of-type(3) {
    padding: 3rem 4rem;
  }
}
@media screen and (max-width: 640px) {
  .cta__banner:nth-of-type(2), .cta__banner:nth-of-type(3) {
    padding: 2rem 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .cta__banner:nth-of-type(2) .cta__banner-cont-inner, .cta__banner:nth-of-type(3) .cta__banner-cont-inner {
    align-items: flex-start;
  }
}
.cta__banner-img {
  position: absolute;
  bottom: 0;
  right: -3%;
  z-index: 1;
}
.cta__banner-img .img {
  width: 100%;
  max-width: 298px;
}
@media screen and (max-width: 1200px) {
  .cta__banner-img .img {
    max-width: 196px;
  }
}
@media screen and (max-width: 834px) {
  .cta__banner-img .img {
    max-width: 196px;
  }
}
@media screen and (max-width: 640px) {
  .cta__banner-img .img {
    max-width: 19vw;
  }
}
@media screen and (max-width: 499px) {
  .cta__banner-img .img {
    display: none;
  }
}
.cta__banner-ttl-title {
  font-size: 28px;
  font-weight: bold;
  color: #f7b756;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 834px) {
  .cta__banner-ttl-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .cta__banner-ttl-title {
    font-size: 21px;
  }
}
.cta__banner-ttl-text {
  background-color: #f7b756;
  font-weight: 600;
  color: var(--wh);
  border-radius: 5px;
  text-align: center;
  padding: 10px 0;
}
.cta__banner-cont-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .cta__banner-cont-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .cta__banner-cont-inner {
    margin-top: 1rem;
    align-items: center;
  }
}
.cta__banner-cont-subinner {
  flex-shrink: 0;
  width: 45%;
}
@media screen and (max-width: 1200px) {
  .cta__banner-cont-subinner {
    width: 100%;
  }
}
.cta__banner-cont-tel {
  font-size: 42px;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: #67493b;
}
@media screen and (max-width: 1200px) {
  .cta__banner-cont-tel {
    font-size: 36px;
  }
}
@media screen and (max-width: 834px) {
  .cta__banner-cont-tel {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  .cta__banner-cont-tel {
    font-size: 28px;
  }
}
.cta__banner-cont-text {
  font-size: 18px;
  font-weight: 600;
  color: #67493b;
}
@media screen and (max-width: 834px) {
  .cta__banner-cont-text {
    font-size: 16px;
  }
}
.cta__banner-cont-text.--s {
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .cta__banner-cont-text.--s {
    font-size: 11px;
  }
}
@media screen and (max-width: 499px) {
  .cta__banner-cont-text.--s {
    font-size: 10px;
  }
}
.cta__banner.--01 {
  position: relative;
  padding-right: 26rem;
}
@media screen and (max-width: 1200px) {
  .cta__banner.--01 {
    padding-right: 20rem;
  }
}
@media screen and (max-width: 834px) {
  .cta__banner.--01 {
    padding-right: 15rem;
  }
}
@media screen and (max-width: 640px) {
  .cta__banner.--01 {
    padding-right: 3rem;
  }
}
@media screen and (max-width: 499px) {
  .cta__banner.--01 {
    padding: 3rem 2rem;
  }
}
.cta__banner.--02 .cta__banner-cont-tel {
  font-size: 32px;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1200px) {
  .cta__banner.--02 .cta__banner-cont-tel {
    font-size: 28px;
  }
}
@media screen and (max-width: 834px) {
  .cta__banner.--02 .cta__banner-cont-tel {
    font-size: 24px;
  }
}
.cta__banner.--03 .cta__banner-cont-tel {
  font-size: 32px;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1200px) {
  .cta__banner.--03 .cta__banner-cont-tel {
    font-size: 28px;
  }
}
@media screen and (max-width: 834px) {
  .cta__banner.--03 .cta__banner-cont-tel {
    font-size: 24px;
  }
}

/* ====================================================
CHatBot
==================================================== */
#ricoh-smartchat-launcher-wrap {
  bottom: 100px !important;
}/*# sourceMappingURL=common.css.map */