@charset "UTF-8";
/* 共通スタイル */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
.js-parallax {
  background: pink;
  overflow: hidden;
}
.js-parallax img {
  display: block;
  height: 120%;
  width: 120%;
  max-width: unset;
}

.js-recommend-img {
  position: relative;
  overflow: hidden;
}
.js-recommend-img img {
  display: block;
  transform: scale(1.2);
  transition: transform 1.4s ease-out;
  transition-delay: 0.3s;
}
.js-recommend-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  clip-path: inset(0% 0% 0% 0%);
  transition: clip-path 0.5s ease-in-out;
  transition-delay: 0.3s;
}

.js-recommend-img.is-visible img {
  transform: scale(1);
}
.js-recommend-img.is-visible::after {
  clip-path: inset(0% 0% 100% 0%);
}

.js-text {
  overflow: hidden;
}
.js-text span {
  display: inline-block;
}

.js-rotate span {
  display: inline-block;
}

.js-fadeIn2 span {
  --blur:0px;
  filter: blur(var(--blur));
  display: inline-block;
}

.js-image {
  overflow: hidden;
}
.js-image img {
  display: inline-block;
}

.js-parallax2 {
  overflow: hidden;
}
.js-parallax2 img {
  height: 120%;
  max-width: unset;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
html {
  font-size: 16px;
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
  letter-spacing: 2px;
}

p {
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.8;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 1rem;
  margin: 0 auto;
}

header {
  z-index: 9999;
  position: relative;
}
header .header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  background: #fff;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.0901960784);
}
@media (max-width: 1000px) {
  header .header {
    width: 100%;
    top: 0;
    padding: 12px;
    border-radius: 0;
  }
}
header .header__logo {
  width: 270px;
}
@media (max-width: 1000px) {
  header .header__logo {
    width: 180px;
  }
}
header .header__inner--menu {
  display: flex;
  gap: 1.65rem;
}
@media (max-width: 1000px) {
  header .header__inner--menu {
    flex-direction: column;
    gap: 1rem;
  }
}
header .header__inner--menu a {
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
}
header .header__btn a {
  background: #008ccd;
  color: #fff;
  font-weight: bold;
  padding: 1rem 1.5rem;
  border-radius: 5px;
}
@media screen and (max-width: 1000px) {
  header .header__btn a {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 60px;
  }
}
header nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}
@media screen and (max-width: 768px) {
  header nav {
    display: block;
    background: linear-gradient(90deg, #f03d61, #f7c82e);
  }
}
@media screen and (min-width: 1001px) {
  header .nav__btn {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  header .nav__btn {
    position: absolute;
    top: 50%;
    right: 0px;
    width: 28px;
    height: 18px;
    z-index: 200;
    transform: translate(-50%, -50%);
  }
  header .nav__btn:hover {
    cursor: pointer;
  }
  header .nav__btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #008ccd;
    margin-top: 8px;
    border-radius: 10px;
    transition: ease-out 0.3s;
  }
  header .nav__btn span::before, header .nav__btn span::after {
    content: "";
    display: block;
    height: 2px;
    background: #008ccd;
    position: absolute;
    transition: ease-out 0.3s;
  }
  header .nav__btn span::before {
    top: 0;
    width: 100%;
  }
  header .nav__btn span::after {
    right: 0;
    bottom: 0;
    width: 100%;
  }
  header .nav__btn .hmb.open {
    background: transparent;
  }
  header .nav__btn .hmb.open::before {
    transform: rotate(45deg);
    opacity: 1;
    top: 50%;
  }
  header .nav__btn .hmb.open::after {
    transform: rotate(-45deg);
    opacity: 1;
    top: 50%;
    width: 100%;
  }
  header .nav__btn .hmb.open {
    background: transparent;
  }
  header .nav__btn .hmb.open::before {
    transform: rotate(40deg);
    opacity: 1;
    bottom: -14px;
  }
  header .nav__btn .hmb.open::after {
    transform: rotate(-40deg);
    opacity: 1;
    bottom: -14px;
    width: 100%;
  }
  header nav.hide {
    left: 200%;
    opacity: 0;
  }
  header nav {
    position: fixed;
    left: 50%;
    top: 37px;
    width: 100%;
    height: 100vh;
    align-items: start;
    gap: 30px;
    padding: 30px 20px 2rem;
    z-index: 100;
    transition: ease-out 0.3s;
    opacity: 1;
    overflow-y: scroll;
    transform: translate(-50%, 0);
  }
  header nav::-webkit-scrollbar {
    display: none;
  }
  header nav ul {
    margin-bottom: 2rem;
  }
  header nav li {
    position: relative;
    background: #fff;
    padding: 18px 24px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1450980392);
  }
}

.en {
  color: #f03d61;
  font-weight: bold;
}

h2 {
  position: relative;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.4em;
    margin-bottom: 1.5rem;
  }
}
h2 .pink {
  color: #f03d61;
}
h2 .yellow {
  color: #fcac2d;
}
h2 .green {
  color: #0ea09c;
}
h2 .blue {
  color: #1552a7;
}

h3 {
  font-size: 1.75em;
  font-weight: bold;
  margin: 2rem auto 1rem;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.25em;
    margin: 1rem auto 0.5rem;
  }
}

.btn {
  position: relative;
  background: #fff;
  color: #008ccd;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125em;
  font-weight: bold;
  max-width: 350px;
  padding: 1.25rem 1rem;
  margin: 3rem auto 0;
  border: solid 1px #008ccd;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 1rem;
  }
}
.btn:hover::before {
  top: 0;
  left: 0;
}
.btn::before, .btn::after {
  position: absolute;
  content: "";
  transition: 0.3s all;
}
.btn::before {
  background: #008ccd;
  width: 100%;
  height: 100%;
  top: 5px;
  left: 5px;
  border-radius: 50px;
  z-index: -1;
}
.btn::after {
  position: absolute;
  content: "";
  background: url(./images/b-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 10px;
  top: 50%;
  right: 1.5rem;
  transform: translate(0, -50%);
}

main.home a {
  transition: ease-in 0.3s;
}
main.home section {
  padding: 6.25rem 0 7rem;
}
@media screen and (max-width: 768px) {
  main.home section {
    padding: 3rem 0;
  }
}
main.home .mv {
  position: relative;
  padding: 2rem 0 0;
}
main.home .mv h1 {
  position: absolute;
  font-size: 4.625em;
  line-height: 1.8;
  letter-spacing: 5px;
  color: #fff;
  left: 0;
  bottom: 10%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  main.home .mv h1 {
    font-size: 1.5em;
    bottom: 5%;
  }
}
main.home .mv h1 span {
  background: linear-gradient(90deg, #f03d61, #f7c82e);
  display: inline;
  padding: 0rem 2rem 0.5rem;
}
@media screen and (max-width: 768px) {
  main.home .mv h1 span {
    padding: 3px 1rem 0.3rem;
  }
}
main.home .mv .swiper {
  width: 85%;
  margin-left: auto;
  margin-right: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (max-width: 768px) {
  main.home .mv .swiper img {
    height: 40vh;
  }
}
main.home .concept {
  position: relative;
  text-align: center;
  overflow: hidden;
}
main.home .concept h2 {
  letter-spacing: 8px;
}
@media screen and (max-width: 768px) {
  main.home .concept h2 {
    letter-spacing: 5px;
  }
}
main.home .concept p {
  font-size: 1.125em;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  main.home .concept p {
    font-size: 1em;
    line-height: 2;
  }
}
main.home .concept img {
  position: absolute;
  z-index: -1;
}
main.home .concept .concept-1 {
  width: 320px;
  top: 0;
  right: -1.5rem;
}
@media screen and (max-width: 768px) {
  main.home .concept .concept-1 {
    width: 130px;
    right: -0.75rem;
  }
}
main.home .concept .concept-2 {
  width: 250px;
  top: 20vh;
  left: 10%;
}
@media screen and (max-width: 768px) {
  main.home .concept .concept-2 {
    width: 80px;
    left: 0.5rem;
  }
}
main.home .concept .concept-3 {
  width: 200px;
  bottom: 10vh;
  right: 20%;
}
@media screen and (max-width: 768px) {
  main.home .concept .concept-3 {
    width: 60px;
    right: 5%;
  }
}
main.home .image {
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  main.home .image {
    border-radius: 10px;
    height: 25vh;
  }
}
main.home .news__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: solid 1px #d5d5d5;
}
@media screen and (max-width: 768px) {
  main.home .news__item {
    display: block;
    padding: 1rem 0;
  }
}
main.home .news__item:hover {
  background: #f5f5f5;
}
main.home .news__item-cnt {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.home .news__item-cnt {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.home .news__item-cnt .cat {
  background: linear-gradient(90deg, #f03d61, #f7c82e);
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 120px;
  padding: 5px;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  main.home .news__item-cnt .cat {
    font-size: 14px;
    width: 80px;
    padding: 0 2px;
  }
}
main.home .news__item .title {
  position: relative;
  display: block;
  font-size: 1.125em;
  font-weight: bold;
  width: 100%;
  padding-right: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  main.home .news__item .title {
    font-size: 1em;
  }
}
main.home .news__item .title::after {
  position: absolute;
  content: "";
  background: url(./images/p-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 10px;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
main.home .group {
  background: #e4f9f9;
  padding-bottom: 160px;
  border-radius: 60px 60px 0 0;
}
@media screen and (max-width: 768px) {
  main.home .group {
    border-radius: 30px 30px 0 0;
    padding-bottom: 100px;
  }
}
main.home .group .en {
  color: #0ea09c;
}
main.home .group__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main.home .group__box {
    display: block;
  }
}
main.home .group__box-item {
  position: relative;
  background: #fff;
  display: block;
  width: 48%;
  min-height: 530px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: solid 3px #f03d61;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  main.home .group__box-item {
    width: 100%;
    margin-bottom: 1.5rem;
    min-height: 400px;
  }
}
main.home .group__box-item:hover .arrow img {
  transform: translateX(5px);
}
main.home .group__box-item .arrow {
  position: absolute;
  background: #f03d61;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  right: 0;
  bottom: 0;
  border-radius: 20px 0 5px 0;
}
@media screen and (max-width: 768px) {
  main.home .group__box-item .arrow {
    width: 40px;
    height: 40px;
    border-radius: 10px 0 3px 0;
  }
}
main.home .group__box-item .arrow img {
  width: 18px;
  padding-top: 3px;
  padding-left: 3px;
  transition: 0.3s all;
}
main.home .group__box-item:nth-child(2) {
  border: solid 3px #fcac2d;
}
main.home .group__box-item:nth-child(2) .arrow {
  background: #fcac2d;
}
main.home .group__box-item:nth-child(3) {
  border: solid 3px #1552a7;
}
main.home .group__box-item:nth-child(3) .arrow {
  background: #1552a7;
}
main.home .group__box-item:nth-child(4) {
  border: solid 3px #0ea09c;
}
main.home .group__box-item:nth-child(4) .arrow {
  background: #0ea09c;
}
main.home .group__box-item:nth-child(5) {
  border: solid 3px #008ccd;
}
main.home .group__box-item:nth-child(5) .arrow {
  background: #008ccd;
}
main.home .topcontact {
  background: linear-gradient(180deg, #008ccd, #0ea09c);
  border-radius: 60px 60px 0 0;
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  main.home .topcontact {
    border-radius: 30px 30px 0 0;
  }
}
main.home .topcontact .en,
main.home .topcontact h2,
main.home .topcontact p {
  text-align: center;
  color: #fff;
}
main.home .topcontact__btn {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  main.home .topcontact__btn {
    display: block;
    margin-top: 2rem;
  }
}
main.home .topcontact__btn a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2em;
  width: 40%;
  max-width: inherit;
  margin: 3rem 0 0;
}
@media screen and (max-width: 768px) {
  main.home .topcontact__btn a {
    font-size: 1.125em;
    width: 100%;
    margin: 1rem auto;
  }
}
main.home .topcontact__btn a img {
  width: 20px;
}
main.home .topcontact__btn a:first-child {
  background: #008ccd;
  color: #fff;
  border: solid 2px #fff;
}
main.home .topcontact__btn a:first-child::after {
  background: url(./images/w-arrow.svg);
  background-size: cover;
}
main.home .topcontact__btn a:first-child img {
  width: 24px;
}

.footer {
  position: relative;
  z-index: 0;
  background: #414141;
}
.footer .copy {
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 10px;
}

.contact {
  background: #f5f5f5;
  padding: 3rem;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 2rem 1rem;
  }
}
.contact__form, .contact__textarea {
  padding: 10px;
  width: 100%;
  border: solid 1px #a3a3a3;
  max-width: 720px;
  border-radius: 5px;
}
.contact__sform, .contact__select {
  padding: 10px;
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  border: solid 1px #a3a3a3;
}
.contact__sform {
  width: 80px;
}
.contact .title {
  font-weight: bold;
  margin: 2rem auto 0.1rem !important;
}
.contact .title span {
  color: red;
}
.contact p {
  margin: 1rem auto !important;
}
.contact h3 {
  margin-top: 3rem !important;
}
.contact__btn {
  display: block;
  color: #fff !important;
  background: #008ccd;
  padding: 1rem;
  width: 250px;
  border: none !important;
  border-radius: 5px;
  margin: 2rem 0 0;
}
.contact .wpcf7-list-item {
  margin-left: 0;
  margin-right: 1rem;
}

main.lower {
  padding: 50px 0 8rem;
}
@media screen and (max-width: 768px) {
  main.lower {
    padding: 2rem 0 3rem;
  }
}
main.lower .inner {
  max-width: 1000px;
  min-height: 50vh;
}
@media screen and (max-width: 768px) {
  main.lower .inner {
    min-height: 70vh;
  }
}
main.lower #page_ttl {
  background: linear-gradient(180deg, #008ccd, #0ea09c);
  background-size: 14px;
  padding: 7rem 1rem;
  border-bottom: solid 1px #dbdbdb;
}
@media screen and (max-width: 768px) {
  main.lower #page_ttl {
    padding: 2rem 1rem;
  }
}
main.lower #page_ttl h1,
main.lower #page_ttl p {
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto 0 !important;
}
main.lower #page_ttl h1 {
  color: #fff;
  position: relative;
  font-size: 3em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main.lower #page_ttl h1 {
    font-size: 1.45em;
    padding: 0;
  }
}
main.lower #page_ttl p.english {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main.lower #page_ttl p.english {
    font-size: 13px;
  }
}
main.lower h2,
main.lower h3,
main.lower h4,
main.lower h5 {
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower h2,
  main.lower h3,
  main.lower h4,
  main.lower h5 {
    margin-bottom: 1rem;
  }
}
main.lower p {
  margin: 1.5em 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  main.lower p {
    margin: 1rem 0;
  }
}
main.lower a {
  color: #008ccd;
  text-decoration: underline;
}
main.lower h2 {
  position: relative;
  font-size: 2em;
  margin-top: 4rem;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  main.lower h2 {
    font-size: 1.25em;
    padding-left: 1.25rem;
    margin-top: 2rem;
  }
}
main.lower h2::before {
  position: absolute;
  content: "";
  background: #008ccd;
  width: 10px;
  height: 10px;
  top: 0.6em;
  left: 0;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  main.lower h2::before {
    width: 8px;
    height: 8px;
  }
}
main.lower h3 {
  font-size: 1.5em;
  font-weight: bold;
  border-bottom: solid 1px #dbdbdb;
  padding-bottom: 1rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower h3 {
    font-size: 1.2em;
    padding-bottom: 1rem;
    margin-top: 2rem;
  }
}
main.lower h4 {
  color: #1552a7;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower h4 {
    font-size: 1.125em;
    margin-top: 2rem;
  }
}
main.lower .breadcrumb {
  padding: 10px 5.5vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  main.lower .breadcrumb {
    padding: 5px 5.5vw;
    margin-bottom: 1rem;
  }
}
main.lower .breadcrumb span {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  main.lower .breadcrumb span {
    font-size: 11px;
  }
}
main.lower ul li {
  padding-left: 1em;
  margin-bottom: 0.5em;
  position: relative;
}
main.lower ul li::before {
  content: "・";
  color: #074e1a;
  position: absolute;
  left: 0;
  top: 0;
}
main.lower .news__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  margin-bottom: 3rem;
  border-bottom: solid 1px #d5d5d5;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  main.lower .news__item {
    display: block;
    padding: 1rem 0;
  }
}
main.lower .news__item:hover {
  background: #f5f5f5;
}
main.lower .news__item p {
  margin: 0;
}
main.lower .news__item-cnt {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower .news__item-cnt {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
main.lower .news__item-cnt .date {
  color: #000;
}
main.lower .news__item-cnt .cat {
  background: linear-gradient(90deg, #f03d61, #f7c82e);
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 120px;
  padding: 5px;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  main.lower .news__item-cnt .cat {
    font-size: 14px;
    width: 80px;
    padding: 0 2px;
  }
}
main.lower .news__item .title {
  color: #000;
  position: relative;
  display: block;
  font-size: 1.125em;
  font-weight: bold;
  width: 100%;
  padding-right: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  main.lower .news__item .title {
    font-size: 1em;
  }
}
main.lower .news__item .title::after {
  position: absolute;
  content: "";
  background: url(./images/p-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 10px;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
main.lower .detail {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  main.lower .detail {
    margin-bottom: 1.5rem;
  }
}
main.lower .ark-block-accordion__item {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower .ark-block-accordion__item {
    margin-bottom: 1rem;
  }
}
main.lower .ark-block-accordion__title {
  background: #fff;
  border: solid 1px #fe8e0f;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower .ark-block-accordion__title {
    padding: 1rem;
  }
}
main.lower .ark-block-accordion__label {
  color: #141414;
}
main.lower .ark-block-accordion__body {
  background: #f8f8f8;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1.75rem 2rem;
}
@media screen and (max-width: 768px) {
  main.lower .ark-block-accordion__body {
    padding: 1rem;
  }
}
main.lower .ark-block-accordion__body p {
  color: #141414;
  margin-bottom: 0;
}
main.lower .ark-block-accordion__icon::before, main.lower .ark-block-accordion__icon::after {
  background: #fe8e0f;
}
main.lower .wp-block-table {
  width: 100%;
}
@media screen and (max-width: 768px) {
  main.lower .wp-block-table {
    overflow-x: scroll;
  }
}
main.lower .wp-block-table table {
  width: 100%;
  white-space: nowrap;
  margin-bottom: 2rem;
  border: solid 1px #c3d7e5;
}
main.lower .wp-block-table table thead {
  border-bottom: none !important;
}
main.lower .wp-block-table table thead th {
  background: #dfe9f0;
  border: solid 1px #c3d7e5 !important;
  font-weight: 500;
}
main.lower .wp-block-table table thead td:first-child {
  width: 25%;
  background: inherit !important;
}
main.lower .wp-block-table table tr td {
  background: #fff;
  border: solid 1px #c3d7e5;
  border-left: none;
  padding: 1.2rem;
}
@media screen and (max-width: 768px) {
  main.lower .wp-block-table table tr td {
    padding: 1rem;
  }
}
main.lower .wp-block-table table tr td:first-child {
  width: 25%;
  background: #dfe9f0;
}
main.lower .wp-block-table table tr td:last-child {
  border-right: none;
}
main.lower .wp-block-list {
  padding: 2.5rem;
  border-radius: 5px;
  margin-bottom: 2rem;
  border: solid 1px #008ccd;
}
main.lower .wp-block-list li {
  font-weight: 500;
  margin-bottom: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
}
main.lower .wp-block-list li:last-child {
  margin-bottom: 0;
}
main.lower .wp-block-list li::before {
  content: "";
  background: linear-gradient(180deg, #008ccd, #0ea09c);
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 10px;
}
main.lower .wp-block-button {
  width: 40%;
  min-width: 345px !important;
  margin: 0 0 1.5rem;
}
@media screen and (max-width: 768px) {
  main.lower .wp-block-button {
    width: 80%;
  }
}
main.lower .top0 {
  margin-top: 0 !important;
}
main.lower .bottom0 {
  margin-bottom: 0;
}
main.lower .pagelink {
  min-width: 250px !important;
}
main.lower .pagelink a {
  background: #fff;
  color: #008ccd;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.137254902);
  min-width: auto !important;
  max-width: 280px;
}
main.lower .page_column {
  margin-bottom: 0;
}
main.lower .wp-block-button__link {
  position: relative;
  display: block;
  background: #005ea6;
  color: #fff;
  font-size: 17px;
  padding: 1.75rem 2rem;
  border-radius: 60px;
  width: 100%;
  min-width: 345px !important;
  text-decoration: none !important;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  main.lower .wp-block-button__link {
    font-size: 1em;
    padding: 1rem;
    max-width: 200px;
  }
}
main.lower .wp-block-button__link:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  main.lower .wp-block-columns {
    gap: 0;
  }
}
main.lower .wp-block-columns table {
  white-space: inherit !important;
}
@media screen and (max-width: 768px) {
  main.lower .wp-block-columns table {
    white-space: nowrap !important;
  }
}
main.lower figure {
  margin: 1.5em 0;
}
main.lower .wp-pagenavi {
  display: flex;
  max-width: 375px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
main.lower .wp-pagenavi .pages {
  margin-right: 0.5em;
}
main.lower .wp-pagenavi .current {
  padding: 0 0.75em;
}
main.lower .wp-pagenavi a {
  display: block;
  padding: 0.25em 0.75em;
  margin: 0 0.5rem;
  border-radius: 3rem;
  color: #141414;
  text-decoration: none;
}
main.lower .wp-pagenavi a.current {
  background: #074e1a;
  color: #fff;
}

.single h1 {
  font-size: 2em !important;
  margin-top: 2rem !important;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single h1 {
    font-size: 1.3em !important;
  }
}
.single .thumn {
  display: block;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.archive__item {
  padding: 1.5em;
  border-bottom: solid 1px #f0f0f0;
  margin: 0 !important;
}
.archive__item::before {
  display: none;
}
.archive__item-category {
  background: #074e1a;
  color: #fff;
  padding: 0.5em 1em;
  margin-right: 0.75em;
  font-size: 0.75em;
  border-radius: 6px;
}
.archive__item a {
  color: #000000 !important;
  text-decoration: none !important;
}

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