@charset "UTF-8";
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 上から */
.fadeDownTrigger {
  animation-name: fadeDownAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeftTrigger {
  animation-name: fadeLeftAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRightTrigger {
  animation-name: fadeRightAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* その場で */
.fadeInTrigger {
  opacity: 0;
}
.fadeInTrigger.fadeIn {
  opacity: 0;
  animation-name: fadeInAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fadeInTrigger.delay100 {
  animation-delay: 0.1s;
}
.fadeInTrigger.delay300 {
  animation-delay: 0.3s;
}
.fadeInTrigger.delay400 {
  animation-delay: 0.4s;
}
.fadeInTrigger.delay500 {
  animation-delay: 0.5s;
}
.fadeInTrigger.delay600 {
  animation-delay: 0.6s;
}
.fadeInTrigger.delay1000 {
  animation-delay: 1s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUpTrigger {
  opacity: 0;
}
.fadeUpTrigger.fadeUp {
  opacity: 0;
  animation-name: fadeUpAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
.fadeUpTrigger.delay100 {
  animation-delay: 0.1s;
}
.fadeUpTrigger.delay300 {
  animation-delay: 0.3s;
}
.fadeUpTrigger.delay400 {
  animation-delay: 0.4s;
}
.fadeUpTrigger.delay500 {
  animation-delay: 0.5s;
}
.fadeUpTrigger.delay600 {
  animation-delay: 0.6s;
}
.fadeUpTrigger.delay1000 {
  animation-delay: 1s;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.flipTrigger {
  opacity: 0;
  transform-origin: bottom center;
  transform: translateY(30px) rotateX(90deg);
  transition: opacity 0.8s cubic-bezier(0.45, 0, 0.55, 1), transform 0.8s cubic-bezier(0.45, 0, 0.55, 1);
}
.flipTrigger.flip {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}
.flipTrigger.delay100 {
  animation-delay: 0.1s;
}
.flipTrigger.delay300 {
  animation-delay: 0.3s;
}
.flipTrigger.delay400 {
  animation-delay: 0.4s;
}
.flipTrigger.delay500 {
  animation-delay: 0.5s;
}
.flipTrigger.delay600 {
  animation-delay: 0.6s;
}
.flipTrigger.delay1000 {
  animation-delay: 1s;
}

/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/* || GENERAL STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 10px !important;
}
html:focus-within {
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px !important;
  }
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
output,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

strong,
b {
  font-weight: 700;
}

p {
  margin-top: 0;
  margin-bottom: 0rem;
}

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

body {
  min-height: 100vh;
  font-family: "Noto Sans JP";
  font-size: 1.5rem;
  color: #333;
  text-rendering: optimizeSpeed;
}

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

blockquote,
q {
  quotes: none;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  width: 100%;
  padding: 1rem;
  background: #fff;
  color: #666463;
  border: none;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: black;
}

input,
button,
textarea,
select {
  font: inherit;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  margin: 0;
  vertical-align: middle;
  accent-color: #000000;
}

/* || UTILITIES */
.container {
  width: 100%;
  max-width: calc(128rem - 0rem);
  margin-right: auto;
  margin-left: auto;
  --bs-gutter-container-x: 6rem;
  --bs-gutter-container-m-x: 6rem;
  padding-right: calc(0.5 * var(--bs-gutter-container-x));
  padding-left: calc(0.5 * var(--bs-gutter-container-x));
}
@media screen and (max-width: 991.98px) {
  .container {
    max-width: calc(128rem - 0rem);
    padding-right: calc(0.5 * var(--bs-gutter-container-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-x));
  }
}
@media screen and (max-width: 575.98px) {
  .container {
    max-width: 100%;
    padding-right: calc(0.5 * var(--bs-gutter-container-m-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-m-x));
  }
}

.container-smaller {
  width: 100%;
  max-width: calc(128rem - 0rem);
  margin-right: auto;
  margin-left: auto;
  --bs-gutter-container-x: 6rem;
  --bs-gutter-container-m-x: 6rem;
  padding-right: calc(0.5 * var(--bs-gutter-container-x));
  padding-left: calc(0.5 * var(--bs-gutter-container-x));
}
@media screen and (max-width: 991.98px) {
  .container-smaller {
    max-width: calc(128rem - 0rem);
    padding-right: calc(0.5 * var(--bs-gutter-container-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-x));
  }
}
@media screen and (max-width: 575.98px) {
  .container-smaller {
    max-width: 100%;
    padding-right: calc(0.5 * var(--bs-gutter-container-m-x));
    padding-left: calc(0.5 * var(--bs-gutter-container-m-x));
  }
}

/*--------------------------------------------------------------
//Components*/
#loader-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

#loader-container .loader {
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  place-items: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

#loader-container .loader__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#loader-container .loader__logo > span {
  -webkit-animation: bounce-loader 0.6s infinite alternate;
  animation: bounce-loader 0.6s infinite alternate;
  margin: 0 0.5rem;
  border-radius: 50%;
  background: #FCC800;
  width: 1.2rem;
  height: 1.2rem;
}

#loader-container .loader__logo > span:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

#loader-container .loader__logo > span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#loader-container .loader__logo > span:last-child {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}

#loader-container .loader__progress {
  display: none;
  position: relative;
  width: 100%;
}

#loader-container .loader__progress #progress-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  text-align: center;
}

@-webkit-keyframes fade {
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes fade {
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes bounce-loader {
  to {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
    opacity: 0.1;
  }
}
@keyframes bounce-loader {
  to {
    -webkit-transform: translateY(-1rem);
    transform: translateY(-1rem);
    opacity: 0.1;
  }
}
.section-404 {
  padding: 0 0 3rem;
}
.section-404 .svg {
  width: 100%;
}
.section-404 .svg__character {
  fill: #FCC800;
}
.section-404 .svg__line {
  fill: none;
  stroke: #FCC800;
  stroke-dasharray: 6;
  stroke-width: 1;
  stroke-linejoin: round;
}
.section-404 .svg__dot {
  fill: #FCC800;
}
.section-404 .svg__plane {
  transform: translate(-6px, -11px) rotate(25deg);
  fill: #FCC800;
  opacity: 0;
}
.section-404 .svg__mask {
  fill: none;
  stroke: white;
  stroke-width: 10;
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
}
.section-404 .btn {
  width: 100%;
  max-width: 30rem;
  padding: 1rem 0;
  background: #FCC800;
  color: #fff;
  margin: 0 auto;
}
.section-404 .btn:hover {
  opacity: 0.7;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
@media (min-width: 960px) {
  .-series-right .w-header {
    margin-left: 0px;
  }
  .-series .c-headLogo {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .-series .l-header__logo {
    margin-right: 0;
  }
}
@media not all and (min-width: 960px) {
  .-img .c-headLogo__link {
    padding: 0;
  }
}
.home #header {
  top: 0;
}
@media (max-width: 960px) {
  .home #header {
    top: 0;
  }
}

@media (max-width: 959.98px) {
  .-series .l-header__logo {
    padding: 0 !important;
  }
}

.l-header__menuBtn.sp_ {
  margin-right: 0;
}
.l-header__menuBtn.sp_ i {
  font-size: 26px;
  color: #033560;
  font-weight: 700;
}

.l-header {
  z-index: 1111;
}

#header {
  position: relative;
  transition: all 0.3s ease;
}
#header .l-header__inner.l-container {
  padding: 23px 0 29px;
}
@media (max-width: 1200px) {
  #header .l-header__inner.l-container {
    padding: 23px 40px 29px;
  }
}
@media (max-width: 960px) {
  #header .l-header__inner.l-container {
    padding: 15px;
  }
}
#header .l-header__inner.l-container {
  position: relative;
  max-width: 116rem;
}
@media (min-width: 1441px) {
  #header .l-header__inner.l-container {
    max-width: calc(100% - 280px);
  }
}
@media (max-width: 1200px) {
  #header .l-header__inner.l-container {
    max-width: 100%;
  }
}
#header.custom-box-shadow {
  position: sticky;
}
@media (max-width: 960px) {
  #header.custom-box-shadow .l-header__inner.l-container:before {
    display: block;
  }
}
#header.header-minus-1 {
  z-index: 1;
}

.c-gnav {
  gap: 54px;
}
.c-gnav .menu-item {
  position: relative;
}
.c-gnav .menu-item a {
  padding: 0;
}
.c-gnav .menu-item a span {
  font-size: 1.5rem !important;
  font-weight: 500;
  line-height: 40px;
  color: #FFFFFF !important;
  font-family: "Noto Sans JP";
}
.c-gnav .menu-item a:hover {
  transition: all 0.3s ease;
}
.c-gnav .menu-item .sub-menu {
  box-shadow: 0 5px 15px 0 rgba(0, 41, 117, 0.6);
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0;
  top: 87%;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 0;
  min-width: fit-content;
  transform: translateX(-75%);
  transition: none;
}
.c-gnav .menu-item .sub-menu li {
  padding: 10px 30px;
}
.c-gnav .menu-item .sub-menu li a {
  min-height: 35px;
  text-align: right;
  white-space: nowrap;
  font-size: 15px !important;
  line-height: 20px;
  font-weight: 500;
  line-height: 1;
  color: #fff !important;
  font-family: "Noto Sans JP";
  width: fit-content;
  margin: 0 0 0 auto;
  margin-top: 15px;
  -webkit-text-stroke: 0.4px;
}
.c-gnav .menu-item .sub-menu li a .ttl {
  font-size: 14px !important;
  line-height: 23px;
  -webkit-text-stroke: 0.4px;
}
.c-gnav .menu-item .sub-menu li a:hover {
  background-color: transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.c-gnav .menu-item .sub-menu li a:hover .ttl {
  left: 0;
}
.c-gnav .menu-item .sub-menu li a::before {
  display: none;
}
.c-gnav .menu-item.menu-item-has-children .sub-menu.show {
  opacity: 1;
  visibility: visible;
}
.c-gnav .menu-item.current_page_item a::after, .c-gnav .menu-item.current_page_parent a::after, .c-gnav .menu-item.-current a::after {
  transform: scaleX(1);
}

#custom_html-2 {
  margin-left: 5.4rem;
}
#custom_html-2 .btn-header {
  display: block;
  padding: 0.5rem 3rem;
  font-size: 1.5rem;
  line-height: 3.2rem;
  font-weight: bold;
  background-color: #fff;
  color: #0077DF;
  border-radius: 5rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
#custom_html-2 .btn-header:hover {
  background-color: #0077DF;
  color: #fff;
  border: 1px solid #fff;
}

#custom_html-3 .btn-header {
  width: fit-content;
  display: block;
  padding: 0.5rem 3rem;
  font-size: 1.5rem;
  line-height: 3.2rem;
  font-weight: bold;
  background-color: #fff;
  color: #0077DF;
  border-radius: 5rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
#custom_html-3 .btn-header:hover {
  background-color: #0077DF;
  color: #fff;
  border: 1px solid #fff;
}

#sp_menu {
  z-index: 1112;
}
#sp_menu .p-spMenu__body .c-widget__title.-spmenu {
  background: transparent;
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu .menu-item a {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  color: #fff !important;
  font-family: "Noto Sans JP";
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu .menu-item a:hover {
  background-color: transparent !important;
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu ul.sub-menu {
  display: block;
}
#sp_menu .p-spMenu__body .p-spMenu__nav .c-listMenu ul.sub-menu.show {
  display: none;
}

@media (min-width: 960px) {
  .-series .l-header__logo {
    padding: 0 !important;
  }
}
.c-headLogo__img {
  transform: translate(1px, 5px);
}
@media (max-width: 1200px) {
  .c-headLogo__img {
    transform: translateX(0);
  }
}

.c-iconBtn__icon:before {
  color: #fff;
}

#header.z-index-1 {
  z-index: 1;
}

#sp_menu_bottom {
  margin-top: 1em;
}

.home #header {
  position: fixed;
}

.p-fixBtnWrap {
  right: 7px;
  bottom: 14px;
}
@media (max-width: 759.99px) {
  .p-fixBtnWrap {
    bottom: 70px;
  }
}
.p-fixBtnWrap.z-minus-1 {
  z-index: -1;
}
.p-fixBtnWrap .c-fixBtn {
  border: 1px solid #0077DF;
  opacity: 1;
  width: 5rem;
  height: 5rem;
  background-color: #fff;
}
.p-fixBtnWrap .c-fixBtn i {
  color: #0077DF;
}
.p-fixBtnWrap .c-fixBtn:hover {
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.49);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.49);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.49);
  background-color: #1E5AA8;
}
.p-fixBtnWrap .c-fixBtn:hover i {
  color: #f6f6f8;
}

.w-beforeFooter {
  margin: 0;
}

footer.z-minus-1 {
  z-index: -1;
}
footer .l-footer__inner {
  max-width: calc(100% - 28rem);
  padding: 11rem 0 5rem;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  footer .l-footer__inner {
    max-width: 100%;
  }
}
@media (max-width: 767.99px) {
  footer .l-footer__inner {
    flex-direction: column;
    padding: 6rem 1.5rem 5rem;
  }
}
footer .l-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  gap: 0;
  position: relative;
}
@media (max-width: 1000px) {
  footer .l-container {
    flex-direction: column;
    gap: 3rem;
  }
}
footer .w-footer__box {
  padding: 0;
}
footer .w-footer__box {
  flex: none;
}
footer .w-footer__box img {
  width: auto;
  max-width: 21.2rem !important;
  margin: 0 auto;
}
footer .w-footer__box .copy-right {
  margin-top: 7.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 4rem;
  color: #fff;
}
footer .w-footer__box .copy-right .underline {
  text-decoration: underline;
}
footer .l-footer__foot,
footer .l-footer__widgetArea {
  padding: 0;
}
footer .l-footer__foot {
  display: none;
}

/*--------------------------------------------------------------


/*--------------------------------------------------------------
# Pages

--------------------------------------------------------------*/
#calendarMonth {
  height: auto !important;
}
#calendarMonth table {
  border: none;
}
#calendarMonth table thead tr th.fc-day-sun a {
  color: #c23033 !important;
}
#calendarMonth table thead tr th.fc-day-sat a {
  color: #2d64a6 !important;
}
#calendarMonth table tbody tr td.fc-day-sun a {
  color: #c23033 !important;
}
#calendarMonth table tbody tr td.fc-day-sat a {
  color: #2d64a6 !important;
}
#calendarMonth table tbody tr td.fc-day:has(.fc-daygrid-event-harness) .fc-daygrid-day-top .fc-daygrid-day-number {
  color: #c23033 !important;
}
#calendarMonth table tbody tr td .fc-daygrid-event-dot {
  display: none;
}
#calendarMonth td,
#calendarMonth th {
  padding: 0;
  border: none;
}
#calendarMonth .fc {
  height: 100%;
}
#calendarMonth .fc-view-harness {
  height: auto !important;
}
#calendarMonth .fc-toolbar-chunk > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#calendarMonth .fc-toolbar-chunk > div button {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: #333;
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 1.4rem;
}
#calendarMonth .fc-toolbar-chunk > div button .fc-icon {
  height: auto;
  width: auto;
}
#calendarMonth .fc-toolbar-chunk > div button:focus {
  box-shadow: none;
}
#calendarMonth .fc-toolbar-chunk > div .fc-toolbar-title {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
  color: #333;
  font-size: 1.4rem;
  font-family: "M PLUS 2";
  font-weight: 400;
  line-height: 2.4rem;
}
#calendarMonth .fc-toolbar-chunk > div .fc-toolbar-title::before {
  display: none;
}
#calendarMonth.fc .fc-scrollgrid-section-sticky > * {
  background-color: transparent !important;
  padding: 0;
}
#calendarMonth .fc-scrollgrid .fc-col-header-cell {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
}
#calendarMonth .fc-scrollgrid .fc-col-header-cell a {
  color: #333;
  font-family: "M PLUS 2";
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 510px) {
  #calendarMonth .fc-scrollgrid .fc-col-header-cell a {
    max-width: 3ch;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
  }
}
#calendarMonth .fc-daygrid-day .fc-daygrid-day-frame {
  padding: 0.5rem;
  margin: 0.2rem;
  border: 1px solid #ddd;
}
#calendarMonth .fc-daygrid-day .fc-daygrid-day-top {
  flex-direction: row;
}
#calendarMonth .fc-daygrid-day .fc-daygrid-day-top a {
  color: #333;
  font-family: "M PLUS 2";
  font-weight: bold;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
}
#calendarMonth .fc-daygrid-day .fc-daygrid-day-events {
  color: #333;
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  padding: 0;
  margin: 0 0 1rem 0;
}
#calendarMonth .fc-daygrid-day .fc-event-title {
  color: #333;
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#calendarWeek {
  height: calc(100% - 4.5rem) !important;
  min-height: 300px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  #calendarWeek {
    height: 100% !important;
  }
}
#calendarWeek.fc .fc-list-day-cushion {
  background-color: transparent !important;
  display: flex !important;
  justify-content: start !important;
  border: none !important;
  flex-direction: row !important;
  align-items: center !important;
  padding: 0 2rem !important;
  color: #333;
  overflow-y: auto;
  gap: 3rem;
}
@media (max-width: 600px) {
  #calendarWeek.fc .fc-list-day-cushion {
    padding: 0 !important;
    gap: 3rem;
  }
}
#calendarWeek.fc .fc-list-day-cushion::after {
  display: none;
}
#calendarWeek.fc .fc-list-sticky .fc-list-day > * {
  position: relative;
}
#calendarWeek.fc .fc-list-day-text {
  min-width: 12rem !important;
}
#calendarWeek.fc .fc-list-day-side-text {
  min-width: 1.6rem;
}
#calendarWeek.fc .fc-list-day-side-text,
#calendarWeek.fc .fc-list-day-text {
  font-family: "M PLUS 2";
  font-weight: 400;
  font-size: 1.6rem;
}
#calendarWeek.fc .fc-list-day-side-text {
  min-width: 30px !important;
  text-align: center !important;
}
#calendarWeek.fc .fc-list-day-side-text {
  text-align: right !important;
}
#calendarWeek.fc .fc-list-event {
  border: none !important;
  font-family: "M PLUS 2";
  font-size: 1.4rem;
}
#calendarWeek.fc .fc-list-event:hover td {
  background-color: transparent !important;
}
#calendarWeek.fc .fc-list-event td:first-child {
  padding-left: 3.5rem !important;
}
@media (max-width: 600px) {
  #calendarWeek.fc .fc-list-event td:first-child {
    padding-left: 1rem !important;
  }
}
#calendarWeek.fc .fc-list-event-time {
  width: 80px !important;
  color: #666 !important;
}
#calendarWeek.fc .fc-list-event-title {
  font-weight: normal !important;
}
#calendarWeek.fc .fc-list-table td {
  padding: 1rem !important;
  border-color: #eee !important;
}
#calendarWeek.fc.fc-theme-standard .fc-list-day th {
  padding: 1rem !important;
  border: 1px solid #ddd !important;
}

.fc-event:focus::after, .fc-daygrid-dot-event:hover {
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.1);
}

.fc-event:focus::before {
  border-radius: 2rem !important;
}

.fc-event:focus {
  box-shadow: none !important;
}

.fc-event .fc-event-title {
  padding: 0 3px;
}

.tippy-box {
  background-color: white;
  border-radius: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  font-family: "M PLUS 2";
}

.tippy-box .tippy-content {
  padding: 0;
}

.event-popup-details {
  padding: 0;
  font-family: "M PLUS 2";
  line-height: 1.4;
}

/* Event title with bullet point */
.event-title-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}

.event-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--fc-event-border-color);
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 5px;
}

.event-popup-details h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  flex: 1;
}

/* Date time styling */
.event-datetime {
  font-size: 14px;
  color: #5f6368;
  margin-bottom: 16px;
  padding-left: 20px;
  font-family: "M PLUS 2";
}

/* Location and other info sections styling */
.event-location,
.event-organizer,
.event-description {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-start;
}

.event-location i,
.event-organizer i,
.event-description i {
  color: #5f6368;
  width: 12px;
  font-size: 16px;
  margin-right: 8px;
  margin-top: 3px;
}

.location-details,
.event-organizer > div,
.event-description > div {
  font-size: 14px;
  color: #5f6368;
  flex: 1;
}

.location-details div,
.event-organizer div,
.event-description div {
  margin-bottom: 4px;
  line-height: 1.5;
}

/* Details link button */
.event-details-link {
  text-align: left;
  margin-top: 0;
  margin-left: 20px;
}

.event-details-link a {
  display: inline-block;
  padding: 0;
  background-color: transparent;
  color: #1E5AA8;
  border-radius: 4px;
  text-decoration: none;
  font-size: 10px;
  font-family: "M PLUS 2";
  font-weight: 400;
}

.event-details-link a:hover {
  background-color: transparent;
  opacity: 0.8;
}

body.overflow-hidden {
  overflow: hidden;
}

.desc {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 3.2rem;
}
.desc.bold {
  font-weight: bold;
}

.title-gradient {
  font-family: "Lexend Exa";
  font-size: 9.6rem;
  line-height: 1;
  background: linear-gradient(90deg, rgba(0, 119, 223, 0.2) 0%, rgba(3, 202, 250, 0.2) 100%);
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-gradient.op1 {
  background: linear-gradient(90deg, rgb(0, 119, 223) 0%, rgb(3, 202, 250) 100%);
  -webkit-background-clip: text;
}
.title-gradient.fs64 {
  font-size: 6.4rem;
}
@media (max-width: 400px) {
  .title-gradient.fs64 {
    font-size: 4.5rem;
    white-space: nowrap;
  }
}
@media (max-width: 960px) {
  .title-gradient {
    font-size: 6.4rem;
  }
}
@media (max-width: 400px) {
  .title-gradient {
    font-size: 4.5rem;
    white-space: nowrap;
  }
}

.section-title {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media (max-width: 500px) {
  .section-title .title {
    font-size: 5rem !important;
  }
}
.section-title .sub-title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 3.2rem;
}

.sub-form {
  max-width: 85.3rem;
  margin: 0 auto;
}
.sub-form .cf-field-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  row-gap: 1rem;
  padding: 1.5rem 0 !important;
  border-top: 1px solid #E6FAFE;
  background-color: transparent;
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .sub-form .cf-field-container {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}
@media (max-width: 600px) {
  .sub-form .cf-field-container {
    padding: 2rem 0rem !important;
  }
}
.sub-form .cf-field-container label {
  min-width: 36.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 0rem;
  width: auto;
  row-gap: 1rem;
  padding-top: 0 !important;
  padding-left: 0 !important;
  box-sizing: border-box;
  background-color: transparent;
  border-bottom: none;
}
@media (max-width: 960px) {
  .sub-form .cf-field-container label {
    width: 100%;
    justify-content: flex-start;
    gap: 2rem;
  }
}
.sub-form .cf-field-container label .text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.2rem;
  color: #333333;
  min-width: 13.4rem;
}
@media (max-width: 960px) {
  .sub-form .cf-field-container label .text {
    font-weight: 500;
    min-width: fit-content;
  }
}
.sub-form .cf-field-container label .required-label {
  color: #fff;
  background: #1e5aa8;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 3.2rem;
  white-space: nowrap;
  display: block;
  border-radius: 0;
  margin: 0;
  padding: 0rem 1rem;
  border-radius: 0.3rem;
}
@media (max-width: 900px) {
  .sub-form .cf-field-container label .required-label {
    font-weight: 500;
  }
}
.sub-form .cf-field-container .cf-input-container,
.sub-form .cf-field-container .input-container {
  margin: 0;
  position: relative;
  z-index: 1;
  width: calc(100% - 36.7rem);
}
@media (max-width: 960px) {
  .sub-form .cf-field-container .cf-input-container,
  .sub-form .cf-field-container .input-container {
    border-left: 0;
    border-right: 0;
    padding: 0 !important;
    width: 100%;
  }
}
.sub-form .cf-field-container .cf-input-container .name-inputs,
.sub-form .cf-field-container .input-container .name-inputs {
  width: 100% !important;
}
.sub-form .cf-field-container .cf-input-container input,
.sub-form .cf-field-container .cf-input-container textarea,
.sub-form .cf-field-container .cf-input-container select,
.sub-form .cf-field-container .input-container input,
.sub-form .cf-field-container .input-container textarea,
.sub-form .cf-field-container .input-container select {
  font-size: 1.5rem !important;
  font-weight: bold;
  line-height: 3.2rem !important;
  color: #333 !important;
  padding: 1.4rem 2rem !important;
  border: 1px solid #0077DF !important;
  border-radius: 0.3rem !important;
  height: 48px;
  width: 100% !important;
  background-color: #fff !important;
  box-sizing: border-box;
  margin: 0 !important;
}
.sub-form .cf-field-container .cf-input-container input::placeholder,
.sub-form .cf-field-container .cf-input-container textarea::placeholder,
.sub-form .cf-field-container .cf-input-container select::placeholder,
.sub-form .cf-field-container .input-container input::placeholder,
.sub-form .cf-field-container .input-container textarea::placeholder,
.sub-form .cf-field-container .input-container select::placeholder {
  color: #9c9c9c !important;
}
.sub-form .cf-field-container .cf-input-container textarea,
.sub-form .cf-field-container .input-container textarea {
  min-height: 19.6rem;
}
.sub-form .cf-field-container .cf-input-container select,
.sub-form .cf-field-container .input-container select {
  max-width: 22.8rem;
}
.sub-form .cf-field-container .cf-input-container input[type=number]::-webkit-outer-spin-button,
.sub-form .cf-field-container .cf-input-container input[type=number]::-webkit-inner-spin-button,
.sub-form .cf-field-container .input-container input[type=number]::-webkit-outer-spin-button,
.sub-form .cf-field-container .input-container input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox] + label,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox] + label {
  position: relative;
  padding-left: 25px;
  width: 100%;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox] + label::before,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox] + label::before {
  content: "";
  width: 16px;
  height: 16px;
  border: none;
  background-color: #fff;
  position: absolute;
  top: 5px;
  left: -25px;
  border: 1px solid #005cc8;
  border-radius: 5px;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox] + label::after,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox] + label::after {
  content: "";
  width: 18px;
  height: 12px;
  border-left: 4px solid #005cc8 !important;
  border-bottom: 4px solid #005cc8 !important;
  transform: translate(-2px, 1px) scale(0.5) rotate(-45deg);
  position: absolute;
  top: 5px;
  left: -25px;
  opacity: 0;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::before,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::before {
  border: 1px solid #005cc8;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::after,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) label,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) label {
  position: relative;
  display: flex;
  width: fit-content !important;
  gap: 15px;
  flex-direction: column;
  font-size: 15px;
  font-weight: normal;
  line-height: 28px;
  color: #333333;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) label a,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) label a {
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  color: #333333;
  width: fit-content;
  margin: 0 auto;
}
.sub-form .cf-field-container .cf-input-container:has(input[type=checkbox]) label a:hover,
.sub-form .cf-field-container .input-container:has(input[type=checkbox]) label a:hover {
  opacity: 0.7;
}
.sub-form .cf-field-container .cf-error-message {
  width: calc(100% - 36.7rem);
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .sub-form .cf-field-container .cf-error-message {
    flex-basis: 100%;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  gap: 3.5rem;
  row-gap: 2rem;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=checkbox],
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label {
  position: relative;
  padding-left: 17px !important;
  width: 100%;
  min-width: fit-content;
  font-size: 1.4rem;
  line-height: 2rem;
  margin-left: 0;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 1px solid #333;
  background-color: #fff;
  position: absolute;
  top: 3px;
  left: 0;
  border-radius: 50%;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio] + label::after {
  content: "";
  width: 13px;
  height: 13px;
  background-color: #1e5aa8;
  transform: scale(0.5);
  position: absolute;
  top: 3px;
  left: 0;
  opacity: 0;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio]:checked + label::before {
  box-shadow: 0 0 0 1px #1e5aa8, 0px 1px 2px rgb(30, 90, 168) !important;
  border-radius: 50%;
}
.sub-form .cf-field-container:has(#label-radio) .cf-input-container input[type=radio]:checked + label::after {
  opacity: 1;
  border-radius: 50%;
}
.sub-form .cf-field-container:first-child {
  padding-top: 0 !important;
  border-top: none !important;
}
.sub-form .cf-field-container[data-field-index="6"] {
  align-items: start;
}
.sub-form .cf-field-container[data-type=privacy_policy] {
  justify-content: center !important;
  margin-bottom: 0 !important;
  border-top: none !important;
  padding: 6.5rem 0 0 !important;
}
@media (max-width: 768px) {
  .sub-form .cf-field-container[data-type=privacy_policy] {
    padding: 4rem 0 0 !important;
  }
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container {
  width: 100% !important;
  padding: 0 !important;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-button-center {
  padding: 0;
  transform: translateX(10px);
}
@media (max-width: 960px) {
  .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-button-center {
    transform: translateX(0);
  }
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy {
  width: fit-content;
  padding: 0 0 13px 0 !important;
  justify-content: center;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] {
  opacity: 0;
  position: absolute;
  height: 0 !important;
  width: 0;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label {
  position: relative;
  padding-left: 25px;
  width: 100%;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::before {
  content: "";
  width: 20px;
  height: 20px;
  border: none;
  position: absolute;
  top: 7px;
  left: -25px;
  border: 1px solid #0077DF;
  border-radius: 1px;
  background-color: #fff !important;
}
@media (max-width: 768px) {
  .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::before {
    top: 7px;
    left: -30px;
  }
}
@media (max-width: 400px) {
  .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::before {
    left: -10px;
  }
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::after {
  content: "";
  width: 20px;
  height: 14px;
  border-left: 4px solid #0077DF !important;
  border-bottom: 4px solid #0077DF !important;
  transform: translate(-2px, 1px) scale(0.5) rotate(-45deg);
  position: absolute;
  top: 7px;
  left: -23px;
  opacity: 0;
}
@media (max-width: 768px) {
  .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::after {
    top: 7px;
    left: -28px;
  }
}
@media (max-width: 400px) {
  .sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox] + label::after {
    left: -8px;
  }
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox]:checked + label::before {
  border: 1px solid #0077DF;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy label {
  min-width: auto !important;
  max-width: 100%;
  position: relative;
  display: flex;
  width: fit-content !important;
  margin: 0 auto;
  gap: 0;
  row-gap: 15px;
  flex-direction: row;
  font-size: 15px;
  line-height: 32px;
  font-weight: 400;
  letter-spacing: 0;
  color: #333333;
  background-color: transparent;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy label a {
  margin-top: 0;
  text-align: center;
  font-size: 15px;
  letter-spacing: 1.4px;
  font-weight: 400;
  font-weight: normal;
  line-height: 32px;
  color: #333333;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy label a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.sub-form .cf-field-container[data-type=privacy_policy] .cf-input-container .cf-privacy-policy .cf-error-message {
  flex-basis: 100%;
}
.sub-form .cf-field-container[data-type=privacy_policy] label {
  gap: 5px !important;
}
@media (max-width: 600px) {
  .sub-form .cf-field-container[data-type=privacy_policy] label {
    flex-direction: column !important;
  }
}
@media (max-width: 400px) {
  .sub-form .cf-field-container[data-type=privacy_policy] label {
    padding-left: 20px !important;
  }
}
.sub-form .cf-button-center {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.sub-form .cf-button-center {
  margin-top: 0;
}
.sub-form .cf-button,
.sub-form .cf-button-submit,
.sub-form .cf-button-confirm {
  display: block;
  margin: 0;
  min-width: 39.7rem;
  width: fit-content;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  line-height: 3.2rem !important;
  color: #0077DF;
  box-sizing: border-box;
  padding: 1.4rem !important;
  min-height: 6.2rem !important;
  border-radius: 5rem !important;
  background: #fff !important;
  border: 1px solid #0077DF !important;
}
@media (max-width: 450px) {
  .sub-form .cf-button,
  .sub-form .cf-button-submit,
  .sub-form .cf-button-confirm {
    min-width: 100%;
  }
}
.sub-form .cf-button:hover,
.sub-form .cf-button-submit:hover,
.sub-form .cf-button-confirm:hover {
  background-color: #0077DF !important;
  color: #fff !important;
}

.cf-confirmation-screen {
  background: transparent;
  border: none;
  padding: 0;
}
.cf-confirmation-screen .cf-title-confirm-info {
  display: none;
}
.cf-confirmation-screen .cf-title-confirm-info h3::before {
  display: none !important;
}
.cf-confirmation-screen .cf-confirmation-item {
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 600px) {
  .cf-confirmation-screen .cf-confirmation-item {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.cf-confirmation-screen .cf-confirmation-item strong {
  width: 40%;
  font-size: 15px;
}
@media (max-width: 600px) {
  .cf-confirmation-screen .cf-confirmation-item strong {
    width: 100%;
    text-align: left;
  }
}
.cf-confirmation-screen .cf-button-center {
  margin-top: 5.5rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.cf-confirmation-screen .cf-button-center .cf-button {
  display: block;
  margin: 0;
  min-width: 450px;
  width: fit-content;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  line-height: 2.6rem !important;
  letter-spacing: 1.8px;
  color: #fff;
  box-sizing: border-box;
  padding: 2rem !important;
  min-height: 6.3rem !important;
  border-radius: 3rem !important;
  background: #1e5aa8 !important;
  border: 1px solid #1e5aa8 !important;
}
@media (max-width: 450px) {
  .cf-confirmation-screen .cf-button-center .cf-button {
    min-width: 100%;
  }
}
.cf-confirmation-screen .cf-button-center .cf-button:hover {
  background-color: #fff !important;
  color: #1e5aa8 !important;
}

/* || TEXT */
.font-noto-jp {
  font-family: "Noto Sans JP";
}

.white-nowrap {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .text-mb-left {
    text-align: left !important;
  }
}

.m-r-20 {
  margin-right: 20px !important;
}
.m-auto {
  margin: 0 auto !important;
}
.m-l-auto {
  margin-left: auto !important;
}
.m-r-auto {
  margin-right: auto !important;
}
@media (max-width: 600px) {
  .m-mb-auto {
    margin: 0 auto !important;
  }
}

.w-fit-content {
  width: fit-content;
}

/* || LINE LIMIT */
.line-limit--1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.line-limit--2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line-limit--3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.line-limit--4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* || BACKGROUND COLOR */
/* || ASPECT RATIO */
.aspect-ratio-unset img {
  aspect-ratio: unset;
}
.aspect-ratio--1-1 img {
  aspect-ratio: 1/1;
}
.aspect-ratio--2-1 img {
  aspect-ratio: 2/1;
}
.aspect-ratio--3-2 img {
  aspect-ratio: 3/2;
}
.aspect-ratio--3-4 img {
  aspect-ratio: 3/4;
}
.aspect-ratio--4-3 img {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 992px) {
  .aspect-ratio-lg-unset img {
    aspect-ratio: unset;
  }
}

/* || HOVER */
.hover--scale img {
  transition: all 0.3s ease-out;
}
.hover--scale:hover img {
  transform: scale(1.1);
}

/* || Z-INDEX */
.z-index--1 {
  z-index: 1;
}

.z-minus-1 {
  z-index: -1;
}

@media only screen and (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }
}

.border-b-ccc {
  border-bottom: 1px solid #ccc;
}

.white-space-nowrap {
  white-space: nowrap;
}

.sp-only {
  display: none !important;
}
@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }
}

.pc-only {
  display: block !important;
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.flex-sp-only {
  display: none !important;
}
@media (max-width: 600px) {
  .flex-sp-only {
    display: flex !important;
  }
}

.flex--pc-only {
  display: flex !important;
}
@media (max-width: 600px) {
  .flex--pc-only {
    display: none !important;
  }
}

.min-900 {
  display: block !important;
}
@media (max-width: 900px) {
  .min-900 {
    display: none !important;
  }
}

.max-900 {
  display: none !important;
}
@media (max-width: 899.99px) {
  .max-900 {
    display: block !important;
  }
}

.min-780 {
  display: block !important;
}
@media (max-width: 780px) {
  .min-780 {
    display: none !important;
  }
}

.max-768 {
  display: none !important;
}
@media (max-width: 767.99px) {
  .max-768 {
    display: block !important;
  }
}

.min-768 {
  display: block !important;
}
@media (max-width: 767.99px) {
  .min-768 {
    display: none !important;
  }
}

.max-760 {
  display: none !important;
}
@media (max-width: 760px) {
  .max-760 {
    display: block !important;
  }
}

.max-960 {
  display: none !important;
}
@media (max-width: 960px) {
  .max-960 {
    display: block !important;
  }
}

.min-960 {
  display: block !important;
}
@media (max-width: 960px) {
  .min-960 {
    display: none !important;
  }
}

.max-475 {
  display: none !important;
}
@media (max-width: 475px) {
  .max-475 {
    display: block !important;
  }
}

.min-475 {
  display: block !important;
}
@media (max-width: 475px) {
  .min-475 {
    display: none !important;
  }
}

.max-575 {
  display: none !important;
}
@media (max-width: 575px) {
  .max-575 {
    display: block !important;
  }
}

.min-575 {
  display: block !important;
}
@media (max-width: 575px) {
  .min-575 {
    display: none !important;
  }
}

.max-600 {
  display: none !important;
}
@media (max-width: 600px) {
  .max-600 {
    display: block !important;
  }
}

.min-600 {
  display: block !important;
}
@media (max-width: 600px) {
  .min-600 {
    display: none !important;
  }
}

.min-500 {
  display: block !important;
}
@media (max-width: 500px) {
  .min-500 {
    display: none !important;
  }
}

.max-500 {
  display: none !important;
}
@media (max-width: 500px) {
  .max-500 {
    display: block !important;
  }
}

:root {
  --color_border--table: #9dceb3;
  --swl-pad_post_content: 0;
  --swl-pad_container: 0;
}
@media (max-width: 1230px) {
  :root {
    --swl-pad_container: 15px !important;
    --swl-pad_post_content: 15px !important;
  }
}

.alignfull > .wp-block-cover__inner-container > *,
.alignfull > .wp-block-group__inner-container > *,
.swell-block-fullWide__inner > * {
  margin-bottom: 0;
}

.single .l-content {
  z-index: 2;
}

.l-mainContent__inner > .post_content {
  padding: 0;
}

.single .l-content {
  padding-top: 50px;
  padding-bottom: 50px;
}

.single-sales-plugin.id_887 .l-content, .single-sales-plugin.id_903 .l-content {
  padding-top: 0;
  padding-bottom: 0;
}

.l-content {
  padding-top: 0;
}

.l-content,
.post_content {
  margin: 0 auto !important;
}

.top #content {
  padding-top: 0;
}

.l-content {
  margin-top: 0px;
}

.c-tabBody__item > *,
.cap_box_content > *,
.faq_a > *,
.swell-block-accordion__body > *,
.swell-block-dl__dd > *,
.swell-block-step__body > *,
.swl-has-mb--s > *,
.wp-block-column > *,
.wp-block-cover__inner-container > *,
.wp-block-group__inner-container > *,
.wp-block-media-text__content > *,
div[class*=is-style-] > * {
  margin-bottom: 0;
}

.home .l-content {
  margin-top: 0 !important;
}

.c-pageTitle,
.l-header__bar,
#breadcrumb {
  display: none;
}

.post_content > * {
  margin-bottom: 0;
}

.wp-block-spacer {
  margin-bottom: 0 !important;
}

.swell-block-fullWide + .swell-block-fullWide {
  margin-top: 0;
}

.z-1111 {
  z-index: 1111;
}

.c-postThumb__figure {
  border-radius: 1.5rem;
}
.c-postThumb__figure::before {
  border-radius: 1.5rem;
}
.c-postThumb__figure img {
  border-radius: 1.5rem;
}

.p-postList__thumb {
  border-radius: 1.5rem;
}
.p-postList__thumb::before {
  border-radius: 1.5rem;
}

.gradient-text-wrapper {
  position: relative;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.45;
  font-family: "Noto Sans JP";
  color: white;
}
@media (max-width: 850px) {
  .gradient-text-wrapper {
    font-size: 5.6vw;
  }
}
@media (max-width: 768px) {
  .gradient-text-wrapper {
    font-size: 5.2vw;
  }
}
.gradient-text-wrapper .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  font-family: "Noto Sans JP";
  color: transparent;
  background: linear-gradient(90deg, transparent 40%, #8de1ff 50%, transparent 60%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientPingPong 6s ease-in-out infinite;
}

@keyframes gradientPingPong {
  0% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 0;
  }
}
.section-banner-hero {
  position: relative;
  width: 100%;
}
.section-banner-hero .background {
  height: 810px;
  width: 100vw;
  background-size: cover !important;
}
@media screen and (max-width: 768px) {
  .section-banner-hero .background {
    height: 1018px;
  }
}
@media screen and (max-width: 500px) {
  .section-banner-hero .background {
    height: 600px;
  }
}
.section-banner-hero .box-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -15%);
  display: flex;
  width: 100%;
  width: 116rem;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  font-size: 4.8rem;
  line-height: 7rem;
  font-family: bold;
}
@media (max-width: 1200px) {
  .section-banner-hero .box-text {
    padding: 0 4rem;
    max-width: 100%;
  }
}
@media (max-width: 960px) {
  .section-banner-hero .box-text {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .section-banner-hero .box-text {
    display: none;
  }
}
.section-banner-hero .box-text-mb {
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 116rem;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  font-size: 4.8rem;
  line-height: 7rem;
  font-family: bold;
}
@media (max-width: 768px) {
  .section-banner-hero .box-text-mb {
    display: flex;
    width: 100%;
    padding: 4rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .section-banner-hero .box-text-mb {
    display: flex;
    width: 100%;
  }
}

.section-clean .swell-block-fullWide__inner {
  margin-left: auto;
  max-width: calc(100% - 140px) !important;
}
@media (min-width: 1441px) {
  .section-clean .swell-block-fullWide__inner {
    margin: 0 auto;
    max-width: 130rem !important;
  }
}
@media screen and (max-width: 1200px) {
  .section-clean .swell-block-fullWide__inner {
    max-width: calc(100% - 40px) !important;
  }
}
@media screen and (max-width: 1200px) {
  .section-clean .swell-block-fullWide__inner {
    max-width: calc(100% - 40px) !important;
  }
}
@media screen and (max-width: 960px) {
  .section-clean .swell-block-fullWide__inner {
    max-width: 100% !important;
  }
}
.section-clean .wp-block-columns {
  gap: 63px !important;
}
@media screen and (max-width: 1200px) {
  .section-clean .wp-block-columns {
    gap: 30px !important;
  }
}
@media screen and (max-width: 960px) {
  .section-clean .wp-block-columns {
    flex-direction: column;
  }
}
.section-clean .wp-block-columns .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
@media screen and (max-width: 960px) {
  .section-clean .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .section-clean .wp-block-columns .wp-block-column:nth-child(1) {
    padding: 0 15px;
  }
}
@media screen and (max-width: 960px) {
  .section-clean .wp-block-columns .wp-block-column img {
    width: 100%;
  }
}

.section-service-top .box-top {
  transform: translateX(-10px);
  gap: 6.9rem;
  align-items: center;
}
@media (max-width: 1200px) {
  .section-service-top .box-top {
    transform: translate(0);
    gap: 4rem;
  }
}
@media (max-width: 960px) {
  .section-service-top .box-top {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: start;
    justify-content: start;
    gap: 2rem;
  }
}
.section-service-top .box-top .sub-title {
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #333333;
  margin-bottom: 0;
  font-weight: bold;
}
@media (max-width: 960px) {
  .section-service-top .box-top .sub-title {
    font-size: 2rem;
  }
}
.section-service-top .box-service > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media (max-width: 960px) {
  .section-service-top .box-service > .wp-block-group__inner-container {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 40px;
  }
}
@media (max-width: 500px) {
  .section-service-top .box-service > .wp-block-group__inner-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section-service-top .box-service .wp-block-group > .wp-block-group__inner-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(-18px);
}
@media (max-width: 1200px) {
  .section-service-top .box-service .wp-block-group > .wp-block-group__inner-container {
    transform: translateX(0);
  }
}
.section-service-top .box-service .wp-block-group > .wp-block-group__inner-container p {
  margin-bottom: 2.2rem;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 3.2rem;
  background: linear-gradient(90deg, rgb(0, 119, 223) 0%, rgb(3, 202, 250) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-service-top .box-service .wp-block-tiptip-hyperlink-group-block {
  position: relative;
  overflow: hidden;
}
@media (max-width: 500px) {
  .section-service-top .box-service .wp-block-tiptip-hyperlink-group-block {
    max-height: 20rem;
  }
}
.section-service-top .box-service .wp-block-tiptip-hyperlink-group-block img {
  width: 100%;
  transition: all 0.3s ease;
  object-fit: cover;
}
.section-service-top .box-service .wp-block-tiptip-hyperlink-group-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(7, 167, 245, 0) 0%, rgb(7, 167, 245) 100%);
  z-index: 1;
}
.section-service-top .box-service .wp-block-tiptip-hyperlink-group-block p {
  position: absolute;
  bottom: 2rem;
  left: 0;
  padding: 0 3rem;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.8rem;
}
.section-service-top .box-service .wp-block-tiptip-hyperlink-group-block p::after {
  content: "";
  background: url(../../assets/img/common/arrow-white.svg) no-repeat center;
  background-size: contain;
  height: 3rem;
  width: 3rem;
  position: absolute;
  bottom: -0.75rem;
  right: -1rem;
}
.section-service-top .box-service .wp-block-tiptip-hyperlink-group-block:hover img {
  transform: scale(1.2);
}

.section-contact-top {
  padding-top: 4rem !important;
  padding-bottom: 8.3rem !important;
  position: relative;
  max-width: 100% !important;
  margin: 0 auto !important;
  left: auto !important;
}
.section-contact-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 119, 223, 0.9) 0%, rgba(3, 202, 250, 0.9) 100%);
}
.section-contact-top .box-top {
  position: relative;
  z-index: 2;
}
.section-contact-top .box-top .title-gradient {
  font-size: 6.4rem;
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, rgb(45, 173, 246) 0%, rgb(45, 192, 249) 100%);
  -webkit-background-clip: text;
}
@media (max-width: 400px) {
  .section-contact-top .box-top .title-gradient {
    font-size: 4.5rem;
  }
}
.section-contact-top .box-top .sub {
  font-size: 1.5rem;
  line-height: 3.2rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.section-contact-top .box-content {
  gap: 20rem;
  justify-content: center;
  align-items: start;
}
@media (max-width: 768px) {
  .section-contact-top .box-content {
    gap: 10rem;
  }
}
@media (max-width: 600px) {
  .section-contact-top .box-content {
    gap: 0;
    flex-direction: column;
    align-items: center;
  }
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block {
  min-height: 18.5rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  min-width: 30rem;
}
@media (max-width: 960px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block {
    min-width: 25rem;
  }
}
@media (max-width: 600px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block {
    min-height: auto;
  }
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block .wp-block-image {
  background-color: #fff;
  border-radius: 50%;
  padding: 2.8rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 500px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block .wp-block-image {
    padding: 2rem;
  }
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block .wp-block-image img {
  width: 3rem;
  height: 3rem;
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block p {
  margin-top: 2.2rem;
  color: #fff;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: bold;
}
@media (max-width: 500px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block p {
    font-size: 1.5rem;
  }
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block p.phone {
  font-family: "Lexend Giga";
  font-weight: 400;
  font-size: 2.4rem;
}
@media (max-width: 500px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block p.phone {
    font-size: 2rem;
  }
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block p.time {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:hover .wp-block-image {
  border: 1px solid #fff;
  background-color: #0077df;
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:hover .wp-block-image img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(324deg) brightness(106%) contrast(117%);
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(1) {
  transform: translateX(5rem);
}
@media (max-width: 960px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(1) {
    transform: translateX(0);
  }
}
@media (max-width: 600px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(1) {
    padding-bottom: 4rem;
  }
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(2) {
  position: relative;
  transform: translateX(-5rem);
}
@media (max-width: 960px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(2) {
    transform: translateX(0);
  }
}
@media (max-width: 600px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(2) {
    padding-top: 4rem;
  }
}
.section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(2)::before {
  content: "";
  height: calc(100% + 7.5rem);
  width: 1px;
  position: absolute;
  left: -4.6rem;
  bottom: 0rem;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
}
@media (max-width: 960px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(2)::before {
    left: -10rem;
  }
}
@media (max-width: 768px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(2)::before {
    left: -5rem;
  }
}
@media (max-width: 600px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(2)::before {
    height: 1px;
    width: calc(100% + 3rem);
    position: absolute;
    left: -1.5rem;
    top: 0rem;
    bottom: auto;
  }
}
@media (max-width: 340px) {
  .section-contact-top .box-content .wp-block-tiptip-hyperlink-group-block:nth-child(2)::before {
    width: 100%;
    left: 0;
  }
}

.section-detail-top a {
  transition: all 0.3s ease;
}
.section-detail-top a :hover {
  opacity: 0.9;
}

.section-maps {
  padding-top: 10rem !important;
  padding-bottom: 16rem !important;
  background: linear-gradient(90deg, rgba(3, 202, 250, 0.2) 0%, rgba(0, 119, 223, 0.2) 100%);
}
@media (max-width: 600px) {
  .section-maps {
    padding-top: 5rem !important;
    padding-bottom: 8rem !important;
  }
}
.section-maps .box-maps {
  padding: 3rem;
  background: #fff;
}
@media (max-width: 600px) {
  .section-maps .box-maps {
    padding: 1.5rem;
  }
}
.section-maps .box-maps .columns {
  gap: 3.5rem !important;
}
@media (max-width: 960px) {
  .section-maps .box-maps .columns {
    display: flex;
    flex-direction: column;
    gap: 3rem !important;
  }
}
.section-maps .box-maps .columns .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.section-maps .box-maps .columns .wp-block-column:nth-child(1) {
  max-width: 56.5rem;
}
@media (max-width: 960px) {
  .section-maps .box-maps .columns .wp-block-column:nth-child(1) {
    max-width: 100%;
  }
}
@media (max-width: 960px) {
  .section-maps .box-maps .columns .wp-block-column {
    flex-basis: 100% !important;
    display: block;
  }
}
.section-maps .box-maps .columns .wp-block-column iframe {
  min-height: 46.6rem;
}
@media (max-width: 960px) {
  .section-maps .box-maps .columns .wp-block-column iframe {
    width: 100%;
  }
}
.section-maps .box-maps .columns .wp-block-column .title-map {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3.2rem !important;
}
.section-maps .box-maps .columns .wp-block-column .wp-block-group {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid #e6fafe;
  gap: 0;
}
@media (max-width: 410px) {
  .section-maps .box-maps .columns .wp-block-column .wp-block-group {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.section-maps .box-maps .columns .wp-block-column .wp-block-group:nth-child(2) {
  border-top: none;
  padding: 0 0 1.5rem;
}
.section-maps .box-maps .columns .wp-block-column .wp-block-group:last-child {
  padding: 1.5rem 0 0;
}
.section-maps .box-maps .columns .wp-block-column .wp-block-group p:first-child {
  min-width: 15rem;
  font-size: 1.5rem;
  line-height: 3.2rem;
  font-weight: 400;
}
@media (max-width: 410px) {
  .section-maps .box-maps .columns .wp-block-column .wp-block-group p:first-child {
    font-weight: bold;
  }
}
.section-maps .box-maps .box-information {
  gap: 0rem !important;
}
@media (max-width: 960px) {
  .section-maps .box-maps .box-information {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 960px) {
  .section-maps .box-maps .box-information .wp-block-column {
    flex-basis: 100% !important;
  }
}
.section-maps .box-maps .box-information .wp-block-column:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 5.2rem;
  justify-content: space-between;
  align-items: start;
  padding: 3rem;
  background: linear-gradient(-90deg, rgb(3, 202, 250) 0%, rgb(0, 119, 223) 100%);
  color: #fff;
}
@media (max-width: 960px) {
  .section-maps .box-maps .box-information .wp-block-column:nth-child(1) {
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .section-maps .box-maps .box-information .wp-block-column:nth-child(1) {
    padding: 2rem;
  }
}
.section-maps .box-maps .box-information .wp-block-column:nth-child(2) {
  padding: 3rem;
  background: #e6fafe;
}
@media (max-width: 600px) {
  .section-maps .box-maps .box-information .wp-block-column:nth-child(2) {
    padding: 2rem;
  }
}
.section-maps .box-maps .box-information .wp-block-column:nth-child(2) .address-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: 2.7rem;
  grid-row-gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1200px) {
  .section-maps .box-maps .box-information .wp-block-column:nth-child(2) .address-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 960px) {
  .section-maps .box-maps .box-information .wp-block-column:nth-child(2) .address-list {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 810px) {
  .section-maps .box-maps .box-information .wp-block-column:nth-child(2) .address-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 600px) {
  .section-maps .box-maps .box-information .wp-block-column:nth-child(2) .address-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 500px) {
  .section-maps .box-maps .box-information .wp-block-column:nth-child(2) .address-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 350px) {
  .section-maps .box-maps .box-information .wp-block-column:nth-child(2) .address-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-maps .box-maps .box-information .wp-block-column:nth-child(2) .address-list li {
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 3.2rem;
  white-space: nowrap;
}
@media (max-width: 350px) {
  .section-maps .box-maps .box-information .wp-block-column:nth-child(2) .address-list li {
    text-align: center;
  }
}
.section-maps .box-maps .box-information .wp-block-column .title-information {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.4rem !important;
}
.section-maps .box-maps .box-information .wp-block-column .sub {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2.4rem !important;
}

.section-greeting .swell-block-fullWide__inner {
  margin-left: auto;
  max-width: calc(100% - 140px) !important;
}
@media (min-width: 1441px) {
  .section-greeting .swell-block-fullWide__inner {
    max-width: 130rem !important;
  }
}
@media (min-width: 1450px) {
  .section-greeting .swell-block-fullWide__inner {
    margin: 0 auto;
    transform: translateX(5.5%);
  }
}
@media screen and (max-width: 1200px) {
  .section-greeting .swell-block-fullWide__inner {
    max-width: calc(100% - 40px) !important;
  }
}
@media screen and (max-width: 1200px) {
  .section-greeting .swell-block-fullWide__inner {
    max-width: calc(100% - 40px) !important;
  }
}
@media screen and (max-width: 960px) {
  .section-greeting .swell-block-fullWide__inner {
    max-width: 100% !important;
  }
}
.section-greeting .wp-block-columns {
  gap: 30px !important;
}
@media screen and (max-width: 960px) {
  .section-greeting .wp-block-columns {
    flex-direction: column;
  }
}
.section-greeting .wp-block-columns .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
@media screen and (max-width: 960px) {
  .section-greeting .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .section-greeting .wp-block-columns .wp-block-column img {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .section-greeting .wp-block-columns .wp-block-column .title-gradient.fs64 {
    font-size: 10vw;
  }
}
.section-greeting .wp-block-columns .wp-block-column .sign {
  max-width: 20rem !important;
}
@media screen and (max-width: 960px) {
  .section-greeting .wp-block-columns .wp-block-column:nth-child(1) {
    padding: 0 15px;
  }
}

.section-philosophy {
  padding-top: 7rem !important;
  padding-bottom: 8rem !important;
  background: linear-gradient(90deg, rgba(45, 173, 246, 0.2) 0%, rgba(45, 192, 249, 0.2) 100%);
}
@media (max-width: 600px) {
  .section-philosophy {
    padding: 4rem 1rem !important;
  }
}
@media (max-width: 500px) {
  .section-philosophy .title-gradient {
    font-size: 10vw;
    white-space: wrap;
  }
}

@media (max-width: 400px) {
  .section-profile .title-gradient {
    font-size: 10vw;
  }
}
.section-profile .wp-block-columns {
  gap: 30px !important;
}
@media screen and (max-width: 960px) {
  .section-profile .wp-block-columns {
    flex-direction: column;
  }
}
.section-profile .wp-block-columns .wp-block-column {
  background-color: #e6fafe;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 3rem;
}
@media screen and (max-width: 960px) {
  .section-profile .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
    display: block;
  }
}
@media (max-width: 450px) {
  .section-profile .wp-block-columns .wp-block-column {
    padding: 2rem;
  }
}
.section-profile .wp-block-columns .wp-block-column p {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: bold;
  margin-bottom: 0;
}
@media (max-width: 450px) {
  .section-profile .wp-block-columns .wp-block-column table tr {
    display: block;
  }
}
.section-profile .wp-block-columns .wp-block-column table tr th,
.section-profile .wp-block-columns .wp-block-column table tr td {
  vertical-align: middle;
  padding: 1.5rem 0;
  border: none;
  border-bottom: 1px solid #fff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 3.15rem;
  background: transparent;
}
@media (max-width: 450px) {
  .section-profile .wp-block-columns .wp-block-column table tr th,
  .section-profile .wp-block-columns .wp-block-column table tr td {
    width: 100%;
    display: block;
  }
}
.section-profile .wp-block-columns .wp-block-column table tr th {
  min-width: 15rem !important;
}
@media (max-width: 450px) {
  .section-profile .wp-block-columns .wp-block-column table tr th {
    border-bottom: none;
    padding: 1.5rem 0 0.5rem !important;
    font-weight: bold;
  }
}
@media (max-width: 450px) {
  .section-profile .wp-block-columns .wp-block-column table tr td {
    padding: 0 0 1.5rem;
  }
}
.section-profile .wp-block-columns .wp-block-column table tr:first-child th,
.section-profile .wp-block-columns .wp-block-column table tr:first-child td {
  padding-top: 0;
}
.section-profile .wp-block-columns .wp-block-column table tr:last-child th,
.section-profile .wp-block-columns .wp-block-column table tr:last-child td {
  padding-bottom: 0;
  border-bottom: none;
}

.cl-lists {
  max-width: 1160px;
  margin: 0 auto;
}

.cl-inner {
  background-color: rgba(255, 255, 255, 0.3);
}

.text-service .desc {
  max-width: 1150px;
}

.group-btn-service {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1200px) {
  .group-btn-service {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .group-btn-service {
    gap: 1.5rem;
    justify-content: start;
  }
}
@media (max-width: 400px) {
  .group-btn-service {
    gap: 1rem;
    row-gap: 1.5rem;
  }
}
.group-btn-service .btn-service {
  display: block;
  width: fit-content;
  padding: 1.5rem 2.9rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 3.2rem;
  color: #0077df;
  border-radius: 5rem;
  border: 1px solid #0077df;
  background: transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0;
}
@media (max-width: 600px) {
  .group-btn-service .btn-service {
    text-align: center;
    flex-wrap: wrap;
    font-size: 1.5rem;
    padding: 1.5rem 1rem;
    width: calc(50% - 1.5rem);
  }
}
@media (max-width: 400px) {
  .group-btn-service .btn-service {
    padding: 1.5rem 0.5rem;
    width: calc(50% - 1rem);
  }
}
.group-btn-service .btn-service:hover {
  background-color: #0077df;
  color: #fff;
  border-color: #0077df;
}

.bg-linear {
  background: linear-gradient(90deg, rgba(45, 173, 246, 0.1) 0%, rgba(45, 192, 249, 0.1) 100%);
}

.section-service .wp-block-columns {
  gap: 65px !important;
}
@media screen and (max-width: 1200px) {
  .section-service .wp-block-columns {
    gap: 30px !important;
  }
}
.section-service .wp-block-columns .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
@media screen and (max-width: 960px) {
  .section-service .wp-block-columns .wp-block-column {
    flex-basis: 100% !important;
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .section-service .wp-block-columns .wp-block-column img, .section-service .wp-block-columns .wp-block-column figure {
    width: 100%;
  }
}
.section-service .wp-block-columns .wp-block-column .title {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: bold;
  margin-bottom: 0;
}
@media screen and (max-width: 500px) {
  .section-service .wp-block-columns .wp-block-column .title {
    font-size: 2rem;
  }
}
.section-service .wp-block-columns .wp-block-column .wp-block-group.is-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.section-service .wp-block-columns .wp-block-column .wp-block-group.is-row p {
  font-size: 1.5rem;
  line-height: 3.2rem;
  padding: 0 0.9rem;
  font-weight: 400;
  border: 1px solid #0077df;
  border-radius: 0.3rem;
  color: #0077df;
  background: transparent;
}

.section-pre p {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: bold;
}
.section-pre ul {
  margin: 0 0 0 1.5rem;
  padding: 0;
  list-style: "◎";
}
.section-pre ul li {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  line-height: 3.2rem;
  font-weight: bold;
}

.section-contact-policy p {
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: bold;
}
.section-contact-policy .swell-block-dl {
  padding: 1.1rem 1.8rem;
  background-color: #fff;
  max-width: 85.3rem;
  height: 26.8rem;
  overflow: auto;
  margin: 0 auto;
}
.section-contact-policy .swell-block-dl::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}
.section-contact-policy .swell-block-dl::-webkit-scrollbar-thumb {
  background: #C6C5C5;
  border-radius: 2px;
}
.section-contact-policy .swell-block-dl::-webkit-scrollbar-track {
  background: transparent;
}
.section-contact-policy .swell-block-dl dt {
  margin: 2rem 0 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: bold;
  color: #000;
}
.section-contact-policy .swell-block-dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  color: #000;
}
.section-contact-policy .swell-block-dl p {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
}

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