@charset "UTF-8";
.grad1 {
  background: radial-gradient(164.97% 65.13% at 50% 50%, #FFF 13.63%, #E4F6FE 48.97%, #E4E9FF 67.43%, #D8FCFF 70.59%, #F5FAFD 88.5%, #FFF 99.42%);
  background-size: cover;
  background-attachment: fixed;
}

.grad2 {
  background: linear-gradient(90deg, #86FDE8 0%, #ACB6E5 100%);
}

.drop-shadow1 {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 768px) {
  .drop-shadow1 {
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
  }
}

.drop-shadow2 {
  box-shadow: 0px 0px 14px 10px rgba(216, 226, 231, 0.2);
}
@media only screen and (min-width: 768px) {
  .drop-shadow2 {
    box-shadow: 0px 0px 20px 20px rgba(216, 226, 231, 0.2);
  }
}

.drop-shadow3 {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.06);
}
@media only screen and (min-width: 768px) {
  .drop-shadow3 {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
  }
}

.reset-link-style:link, .reset-link-style:visited {
  color: #1E1E1E;
  text-decoration: none;
}

.reset-list-style {
  list-style: none;
  padding-left: 0;
}
.reset-list-style li {
  margin-top: 0;
}
.reset-list-style li:not(:first-of-type) {
  margin-top: 0;
}

.icon-arrow1, *:not(.site-header, .site-footer) .link-arrow-right::after {
  content: "";
  width: 9px;
  height: 10px;
  background-color: #cccccc;
  -webkit-mask-image: url(./assets/images/common/icon-arrow1.svg);
  mask-image: url(./assets/images/common/icon-arrow1.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  display: inline-block;
  transform: rotate(-90deg);
  transition: all 0.3s ease 0s;
}

.icon-arrow2 {
  content: "";
  width: 8px;
  height: 100%;
  background-color: #B5B5B5;
  -webkit-mask-image: url(./assets/images/common/icon-arrow2.svg);
  mask-image: url(./assets/images/common/icon-arrow2.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  transition: all 0.3s ease 0s;
}

.icon-blank {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #ACB6E5;
  -webkit-mask-image: url(./assets/images/common/icon-blank.svg);
  mask-image: url(./assets/images/common/icon-blank.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  display: inline-block;
  transition: all 0.3s ease 0s;
}

.icon-download, *:not(.site-header, .site-footer) .link-download::after {
  content: "";
  width: 12px;
  height: 15px;
  background-color: #ACB6E5;
  -webkit-mask-image: url(./assets/images/common/icon-download.svg);
  mask-image: url(./assets/images/common/icon-download.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  display: inline-block;
  transition: all 0.3s ease 0s;
}

/* === 必要最小限のリセット === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

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

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}

a {
  transition: all 0.15s;
}
a:link, a:visited {
  color: var(--wp--preset--color--secondary);
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: underline;
}

figure {
  line-height: 1;
}

body, p, span, div {
  word-wrap: break-word;
  /* 長い単語を折り返す */
  overflow-wrap: break-word;
  /* 同上 */
}

sup {
  margin: 0 0.25em;
  color: var(--wp--preset--color--secondary);
}
sup a::before {
  content: "※";
  font-size: 90%;
}

/* ----------------------------------------------------------------
  デフォルトのブレークポイント600pxを変更
---------------------------------------------------------------- */
.wp-block-navigation__responsive-container-open:not(.always-shown) {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none;
  }
}

.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
  display: none;
}
@media only screen and (min-width: 768px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block;
  }
}

/* ----------------------------------------------------------------
  header
---------------------------------------------------------------- */
.site-header {
  display: flex;
  align-items: center;
  padding-left: 17px;
  padding-right: 11px;
  width: 100%;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.85);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .site-header {
    padding-right: 20px;
    height: 102px;
    background-color: rgba(255, 255, 255, 0);
    background-image: url(../assets/images/common/bg-header.png);
    background-repeat: no-repeat;
    background-position: left -100px top;
    background-size: auto 100%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1280px) {
  .site-header {
    padding-left: 23px;
    padding-right: 60px;
    background-position: left top;
  }
}
.site-header > * {
  width: 100%;
}
.site-header .header-logo {
  width: 170px;
}
@media only screen and (min-width: 768px) {
  .site-header .header-logo {
    width: 200px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1280px) {
  .site-header .header-logo {
    width: 280px;
  }
}

.wp-block-navigation__responsive-container-open {
  width: 38px;
  height: 38px;
}
.wp-block-navigation__responsive-container-open::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/common/icon-hmenu-open.svg);
  background-size: cover;
}
.wp-block-navigation__responsive-container-open svg {
  display: none;
}

.wp-block-navigation__responsive-container-close {
  width: 27px;
  height: 27px;
  position: absolute;
  top: 22px;
  right: 16px;
}
.wp-block-navigation__responsive-container-close::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/common/icon-hmenu-close.svg);
  background-size: cover;
  display: block;
}
.wp-block-navigation__responsive-container-close svg {
  display: none;
}

.wp-block-navigation__responsive-close {
  position: relative;
}
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content {
  padding-left: 30px;
  padding-top: 100px;
  padding-right: 30px;
}
@media only screen and (min-width: 768px) {
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content {
    padding-left: 0;
    padding-top: 0;
    padding-right: 0;
  }
}
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  gap: 27px;
}
@media only screen and (min-width: 1280px) {
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
    gap: 60px;
  }
}
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content {
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content:not(.home .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content):not(.single .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content):link, .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content:not(.home .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content):not(.single .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content):visited {
    color: #fff;
  }
}
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content:hover, .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content:active {
  text-decoration: none;
  color: var(--wp--preset--color--secondary);
}
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content .wp-block-navigation-item__label {
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media only screen and (min-width: 768px) {
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content .wp-block-navigation-item__label {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1280px) {
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content .wp-block-navigation-item__label {
    font-size: 1.5625rem;
  }
}
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content[target=_blank] {
  color: var(--wp--preset--color--secondary);
}
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content[target=_blank]::after {
  background-color: var(--wp--preset--color--secondary);
}
@media only screen and (min-width: 768px) {
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content[target=_blank]::before {
    content: "";
    display: inline-block;
    margin-right: 9px;
    vertical-align: calc(1em - 20px);
    width: 33px;
    height: 22px;
    transition: all 0.15s;
    background-color: var(--wp--preset--color--secondary);
    -webkit-mask-image: url(../assets/images/common/icon-blank2.svg);
    mask-image: url(../assets/images/common/icon-blank2.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content[target=_blank]:hover::before, .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content[target=_blank]:active::before {
    background-color: var(--wp--preset--color--secondary);
  }
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content[target=_blank]::after {
    content: none;
  }
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content[target=_blank] .wp-block-navigation-item__label {
    font-weight: 400;
  }
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content:not(.home .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content):not(.single .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item .wp-block-navigation-item__content)[target=_blank]::before {
    background-color: #fff;
  }
}
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.link-small-item {
  margin-top: 17px;
  margin-bottom: -30px;
}
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.link-small-item .wp-block-navigation-item__content {
  line-height: 1;
}
.wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.link-small-item .wp-block-navigation-item__content .wp-block-navigation-item__label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .wp-block-navigation__responsive-close .wp-block-navigation__responsive-dialog .wp-block-navigation__responsive-container-content .wp-block-navigation__container .wp-block-navigation-item.link-small-item {
    display: none;
  }
}

.has-modal-open .wp-block-navigation__responsive-container-open {
  display: none;
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open {
  z-index: -1;
}

/* メニューが開くとき */
@-webkit-keyframes overlay-menu__fade-in-animation {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes overlay-menu__fade-in-animation {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* メニューが閉じるとき */
@-webkit-keyframes overlay-menu__fade-out-animation {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes overlay-menu__fade-out-animation {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateY(0);
  }
}
/* ----------------------------------------------------------------
  footer
---------------------------------------------------------------- */
.page-top {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease 0s;
}
@media only screen and (min-width: 1025px) {
  .page-top {
    opacity: 0;
    position: fixed;
    right: 30px;
    bottom: 25px;
  }
}
.page-top img {
  transition: all 0.3s ease 0s;
  cursor: pointer;
  width: 74px;
}
@media only screen and (min-width: 768px) {
  .page-top img {
    width: 110px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .page-top img:hover {
    opacity: 0.7;
  }
}
.page-top.is-fixed {
  opacity: 1;
}

.site-footer {
  margin-top: 80px;
}
@media only screen and (min-width: 768px) {
  .site-footer {
    margin-top: 160px;
  }
}
.site-footer .footer-contents {
  margin-top: 80px;
  padding: 30px 20px;
  background-color: #efefef;
}
@media only screen and (min-width: 768px) {
  .site-footer .footer-contents {
    padding: 55px 20px 30px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .site-footer .footer-contents {
    margin-top: 50px;
  }
}
.site-footer .footer-contents .footer-corp-name {
  font-size: clamp(0.75rem, 4.36vw, 1.0625rem);
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .site-footer .footer-contents .footer-corp-name {
    font-size: 1.875rem;
  }
}
.site-footer .footer-contents .footer-corp-info {
  align-items: center;
  gap: 5px;
  font-size: 0.875rem;
}
@media only screen and (min-width: 768px) {
  .site-footer .footer-contents .footer-corp-info {
    flex-direction: row;
    justify-content: center;
    gap: 1.5em;
    font-size: 1.25rem;
  }
}
.site-footer .footer-contents .copyright {
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 768px) {
  .site-footer .footer-contents .copyright {
    font-size: 0.9375rem;
  }
}

/* ----------------------------------------------------------------
  layout
---------------------------------------------------------------- */
.site-main {
  margin-left: 30px;
  margin-right: 30px;
}
@media only screen and (min-width: 1280px) {
  .site-main {
    margin-left: 0;
    margin-right: 0;
  }
}

.single-main {
  margin-top: 100px;
}
@media only screen and (min-width: 768px) {
  .single-main {
    margin-top: 200px;
  }
}

/* ----------------------------------------------------------------
  ブロック単位
---------------------------------------------------------------- */
.page-header {
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 60px;
  padding-top: 70px;
  min-height: unset;
  height: 390px;
  background-color: #fff;
  background-position: center;
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .page-header {
    padding-top: 20px;
    margin-bottom: 150px;
    height: 560px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1280px) {
  .page-header {
    margin-left: 0;
    margin-right: 0;
  }
}
.page-header .wp-block-cover__inner-container {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.page-header .wp-block-cover__inner-container .wp-block-heading {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .page-header .wp-block-cover__inner-container .wp-block-heading {
    font-size: 1.875rem;
  }
}
.page-header .wp-block-cover__inner-container p {
  margin-top: 0;
  font-family: var(--wp--preset--font-family--montserrat);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.2;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .page-header .wp-block-cover__inner-container p {
    font-size: 5rem;
  }
}
.page-about .page-header {
  background-image: url(../assets/images/common/page-header-about-s.jpg);
}
@media only screen and (min-width: 768px) {
  .page-about .page-header {
    background-image: url(../assets/images/common/page-header-about-l.jpg);
  }
}
.page-news .page-header {
  background-image: url(../assets/images/common/page-header-news-s.jpg);
}
@media only screen and (min-width: 768px) {
  .page-news .page-header {
    background-image: url(../assets/images/common/page-header-news-l.jpg);
  }
}
.page-service .page-header {
  background-image: url(../assets/images/common/page-header-service-s.jpg);
}
@media only screen and (min-width: 768px) {
  .page-service .page-header {
    background-image: url(../assets/images/common/page-header-service-l.jpg);
  }
}
.page-privacy-policy .page-header {
  background-image: url(../assets/images/common/page-header-news-s.jpg);
}
@media only screen and (min-width: 768px) {
  .page-privacy-policy .page-header {
    background-image: url(../assets/images/common/page-header-news-l.jpg);
  }
}

*:not(.site-header, .site-footer) {
  /* ----------------------------------------------------------------
    記事タイトル
  ---------------------------------------------------------------- */
  /* ----------------------------------------------------------------
    記事タイトル
  ---------------------------------------------------------------- */
}
*:not(.site-header, .site-footer).single-main .wp-block-post-title {
  padding-bottom: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 1.25em;
  font-size: 1.5rem;
  line-height: 1.6;
  border-bottom: 1px solid #707070;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer).single-main .wp-block-post-title {
    margin-top: 1em;
    font-size: 2.375rem;
  }
}
*:not(.site-header, .site-footer) .title1 {
  margin: 20px 0;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .title1 {
    margin: 40px 0;
    font-size: 3.75rem;
    letter-spacing: 0.2em;
  }
}
*:not(.site-header, .site-footer) .title2 {
  margin-top: 70px;
  gap: 0;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .title2 {
    margin-top: 150px;
  }
}
*:not(.site-header, .site-footer) .title2 .wp-block-image {
  order: 1;
  width: 56px;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .title2 .wp-block-image {
    width: 120px;
  }
}
*:not(.site-header, .site-footer) .title2 .wp-block-heading {
  order: 3;
  margin-top: 2px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--wp--preset--color--secondary);
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .title2 .wp-block-heading {
    font-size: 1.875rem;
  }
}
*:not(.site-header, .site-footer) .title2 p {
  order: 2;
  margin-top: 8px !important;
  font-family: var(--wp--preset--font-family--montserrat);
  font-size: min(9.49vw, 2.3125rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: var(--wp--preset--color--secondary);
  text-align: center;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .title2 p {
    margin-top: 14px !important;
    font-size: 5rem;
  }
}
*:not(.site-header, .site-footer) .title3 {
  gap: 0;
}
*:not(.site-header, .site-footer) .title3:not(:first-of-type) {
  margin-top: 100px;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .title3:not(:first-of-type) {
    margin-top: 220px;
  }
}
*:not(.site-header, .site-footer) .title3 .title-number {
  padding-left: 0.15em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--wp--preset--color--secondary);
  font-family: var(--wp--preset--font-family--montserrat);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .title3 .title-number {
    width: 105px;
    height: 105px;
    font-size: 3.6875rem;
  }
}
*:not(.site-header, .site-footer) .title3 .title-number::before {
  content: "";
  width: 28px;
  height: 28px;
  background-color: #082C5C;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .title3 .title-number::before {
    width: 61px;
    height: 61px;
  }
}
*:not(.site-header, .site-footer) .title3 .wp-block-heading {
  margin-top: 15px;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .title3 .wp-block-heading {
    margin-top: 50px;
    font-size: 3.75rem;
    letter-spacing: 0.2em;
  }
}
*:not(.site-header, .site-footer) .title3 .sub-text {
  margin-top: 8px;
  padding: 0.35em 1em;
  background-color: var(--wp--preset--color--secondary);
  border-radius: 999px;
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .title3 .sub-text {
    margin-top: 40px;
    padding: 0.05em 1em 0.18em;
    font-size: 2.5rem;
  }
}

*:not(.site-header, .site-footer) {
  /* ----------------------------------------------------------------
    ブロック
  ---------------------------------------------------------------- */
  /* ----------------------------------------------------------------
    テキストスタイル
  ---------------------------------------------------------------- */
}
*:not(.site-header, .site-footer) .wp-block-footnotes {
  list-style: none;
  /* デフォルトの番号を消す */
  counter-reset: custom-counter;
  /* カウンターをリセット */
  padding: 1em 2em 1em 3em;
  border: 1px solid #cccccc;
  font-size: 95%;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .wp-block-footnotes {
    padding: 2em 2em 2em 3.5em;
    font-size: 85%;
  }
}
*:not(.site-header, .site-footer) .wp-block-footnotes li {
  counter-increment: custom-counter;
  /* 各リスト項目でカウンターを増加 */
  scroll-margin-top: 30vh;
  padding-left: 1em;
  line-height: 1.8;
}
*:not(.site-header, .site-footer) .wp-block-footnotes li::marker {
  content: "※" counter(custom-counter);
  /* "※" + 数字 */
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .page-intro {
    font-size: 1.5625rem;
  }
}
*:not(.site-header, .site-footer) .page-intro br {
  display: none;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .page-intro br {
    display: block;
  }
}
*:not(.site-header, .site-footer) .wp-block-post-date {
  font-family: var(--wp--preset--font-family--montserrat);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--wp--preset--color--secondary);
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .wp-block-post-date {
    font-size: 1.75rem;
  }
}

*:not(.site-header, .site-footer) {
  /* ----------------------------------------------------------------
    リンクタイプ
  ---------------------------------------------------------------- */
}
*:not(.site-header, .site-footer) a[target=_blank]::after {
  content: "";
  display: inline-block;
  margin-left: 12px;
  margin-right: 6px;
  vertical-align: calc(1em - 18px);
  width: 16px;
  height: 17px;
  background-color: var(--wp--preset--color--text);
  -webkit-mask-image: url(../assets/images/common/icon-blank1.svg);
  mask-image: url(../assets/images/common/icon-blank1.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
*:not(.site-header, .site-footer) .link-tel:hover, *:not(.site-header, .site-footer) .link-tel:focus {
  outline: none;
  text-decoration: none;
}
*:not(.site-header, .site-footer) .link-arrow-right {
  color: #1E1E1E;
}
*:not(.site-header, .site-footer) .link-arrow-right::after {
  margin-left: 5px;
}
*:not(.site-header, .site-footer) .link-arrow-right:link, *:not(.site-header, .site-footer) .link-arrow-right:visited {
  text-decoration: none;
}
*:not(.site-header, .site-footer) .link-download {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #1E1E1E;
}
*:not(.site-header, .site-footer) .link-download::after {
  margin-left: 5px;
}
*:not(.site-header, .site-footer) .link-download:link, *:not(.site-header, .site-footer) .link-download:visited {
  text-decoration: none;
}

*:not(.site-header, .site-footer) {
  /* ----------------------------------------------------------------
    ボタン wrapper
  ---------------------------------------------------------------- */
  /* ----------------------------------------------------------------
    ボタン 個別
  ---------------------------------------------------------------- */
}
*:not(.site-header, .site-footer) .wp-block-buttons {
  margin-top: 60px;
  flex-direction: column;
  gap: 2em;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .wp-block-buttons {
    margin-top: 120px;
    flex-direction: row;
    justify-content: center;
  }
}
*:not(.site-header, .site-footer) .wp-block-button .wp-block-button__link {
  padding: 15px 2em 17px;
  min-width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5BB9E8;
  border-radius: 9999px;
  font-size: 1.0625rem;
  line-height: 1;
  position: relative;
  transition: all 0.15s;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .wp-block-button .wp-block-button__link {
    padding: 22px 2.4em 24px;
    min-width: 320px;
    font-size: 1.875rem;
    letter-spacing: 0.1em;
  }
}
*:not(.site-header, .site-footer) .wp-block-button .wp-block-button__link:link, *:not(.site-header, .site-footer) .wp-block-button .wp-block-button__link:visited {
  background-color: #5BB9E8;
  color: #fff;
}
*:not(.site-header, .site-footer) .wp-block-button .wp-block-button__link:hover, *:not(.site-header, .site-footer) .wp-block-button .wp-block-button__link:active {
  opacity: 0.8;
  text-decoration: none;
}
*:not(.site-header, .site-footer) .wp-block-button .wp-block-button__link::after {
  content: "";
  width: 10px;
  height: 100%;
  background-color: #fff;
  -webkit-mask-image: url(../assets/images/common/icon-arrow1.svg);
  mask-image: url(../assets/images/common/icon-arrow1.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  position: absolute;
  right: 10px;
  top: 0;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .wp-block-button .wp-block-button__link::after {
    width: 15px;
    right: 23px;
  }
}

*:not(.site-header, .site-footer) {
  /* ----------------------------------------------------------------
    記事リスト
  ---------------------------------------------------------------- */
  /* ----------------------------------------------------------------
    ページネーション
  ---------------------------------------------------------------- */
}
*:not(.site-header, .site-footer) .list-post {
  border-top: 1px dashed #9FA0A0;
}
*:not(.site-header, .site-footer) .list-post .wp-block-post {
  padding-bottom: 12px;
  margin-top: 16px;
  border-bottom: 1px dashed #9FA0A0;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .list-post .wp-block-post {
    padding-bottom: 50px;
    margin-top: 40px;
    display: flex;
    gap: 127px;
  }
}
*:not(.site-header, .site-footer) .list-post .wp-block-post .wp-block-post-date {
  font-size: 0.8125rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .list-post .wp-block-post .wp-block-post-date {
    font-size: 1.5625rem;
    line-height: 1.6;
  }
}
*:not(.site-header, .site-footer) .list-post .wp-block-post .wp-block-post-title {
  margin-top: 0.5em;
  font-size: 0.75rem;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .list-post .wp-block-post .wp-block-post-title {
    margin-top: 0;
    font-size: 1.5625rem;
    line-height: 1.6;
  }
}
*:not(.site-header, .site-footer) .list-post .wp-block-post .wp-block-post-title a:link, *:not(.site-header, .site-footer) .list-post .wp-block-post .wp-block-post-title a:visited {
  color: var(--wp--preset--color--text);
}
*:not(.site-header, .site-footer) .wp-block-query-pagination {
  margin-top: 50px;
  justify-content: center;
  gap: 1.5em;
  font-size: 0.875rem;
  line-height: 1;
  color: #2A2A2A;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .wp-block-query-pagination {
    margin-top: 100px;
    font-size: 1.5625rem;
  }
}
*:not(.site-header, .site-footer) .wp-block-query-pagination .wp-block-query-pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--wp--preset--font-family--montserrat);
}
*:not(.site-header, .site-footer) .wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers:not(:last-child):after {
  content: "/";
  font-size: 80%;
  margin: 0 1.5em;
}
*:not(.site-header, .site-footer) {
  /* ----------------------------------------------------------------
    テーブルタイプ
  ---------------------------------------------------------------- */
}
*:not(.site-header, .site-footer) .wp-block-table table {
  border-top: 1px solid #707070;
}
*:not(.site-header, .site-footer) .wp-block-table table th, *:not(.site-header, .site-footer) .wp-block-table table td {
  padding: 2em 1em;
  border: none;
  border-bottom: 1px solid #707070;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .wp-block-table table th, *:not(.site-header, .site-footer) .wp-block-table table td {
    padding: 2em;
    font-size: 1.5625rem;
  }
}
*:not(.site-header, .site-footer) .wp-block-table table tr td:first-of-type {
  width: 35%;
  background-color: #E8F6F9;
  text-align: center;
  color: var(--wp--preset--color--secondary);
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .wp-block-table table tr td:first-of-type {
    padding: 2em 1em;
  }
}
*:not(.site-header, .site-footer) .wp-block-table.table-type1 table th, *:not(.site-header, .site-footer) .wp-block-table.table-type1 table td {
  padding: 1em;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .wp-block-table.table-type1 table th, *:not(.site-header, .site-footer) .wp-block-table.table-type1 table td {
    padding: 1em 1.5em;
    font-size: 1rem;
  }
}
*:not(.site-header, .site-footer) .wp-block-table.table-type1 table tr td:first-of-type {
  width: auto;
  text-align: left;
  background-color: #f5f5f5;
  color: var(--wp--preset--color--text);
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .wp-block-table.table-type1 table tr td:first-of-type {
    padding: 1em 1.5em;
  }
}

*:not(.site-header, .site-footer) {
  /* ----------------------------------------------------------------
    各ページ
  ---------------------------------------------------------------- */
}
*:not(.site-header, .site-footer) .mv {
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 60px;
  min-height: unset;
  background-color: #f4c636;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .mv {
    margin-bottom: 150px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1280px) {
  *:not(.site-header, .site-footer) .mv {
    margin-left: 0;
    margin-right: 0;
  }
}
*:not(.site-header, .site-footer) .mv .wp-block-image {
  margin-top: 0 !important;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .mv .wp-block-image {
    margin-top: min(100px, 5vw) !important;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1280px) {
  *:not(.site-header, .site-footer) .mv .wp-block-image {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .mv .img-mobile {
    display: none;
  }
}
*:not(.site-header, .site-footer) .mv .img-desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .mv .img-desktop {
    display: block;
    max-width: 2400px;
    margin: 0 auto;
  }
}
*:not(.site-header, .site-footer) .mv .img-scroll {
  width: 64px;
  position: absolute;
  left: calc(50% - 32px);
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .mv .img-scroll {
    left: 13vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1280px) {
  *:not(.site-header, .site-footer) .mv .img-scroll {
    width: 121px;
  }
}
*:not(.site-header, .site-footer) .sec-to-member {
  margin-top: 60px;
  margin-left: -30px;
  margin-right: -30px;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-to-member {
    margin-top: 160px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-to-member .banner-m {
    display: none;
  }
}
*:not(.site-header, .site-footer) .sec-to-member .banner-l {
  display: none;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-to-member .banner-l {
    display: block;
  }
}
*:not(.site-header, .site-footer) .sec-to-member p {
  margin-top: 20px !important;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 1rem;
  line-height: 1.75;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-to-member p {
    font-size: 1.5625rem;
    text-align: center;
  }
}
*:not(.site-header, .site-footer) .sec-news-list {
  margin: 60px -30px 0;
  padding: 60px 30px;
  background-color: #f0fcff;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-news-list {
    margin-top: 160px;
    padding-top: 125px;
    padding-bottom: 125px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1280px) {
  *:not(.site-header, .site-footer) .sec-news-list {
    margin-left: 0;
    margin-right: 0;
  }
}
*:not(.site-header, .site-footer) .sec-news-list .title2 {
  margin-top: 0;
}
*:not(.site-header, .site-footer) .sec-news-list .list-post {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-news-list .list-post {
    margin-top: 70px;
  }
}
*:not(.site-header, .site-footer) .sec-news-list .wp-block-buttons {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-news-list .wp-block-buttons {
    margin-top: 70px;
  }
}
*:not(.site-header, .site-footer) .sec-service .service-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-service .service-list {
    margin-top: 105px;
    grid-template-columns: repeat(3, 1fr);
    gap: 6.7vw;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1440px) {
  *:not(.site-header, .site-footer) .sec-service .service-list {
    gap: 3.89vw;
  }
}
*:not(.site-header, .site-footer) .sec-service .service-list .list-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-service .service-list .list-item {
    margin-top: 0;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 26px;
  }
}
*:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-num {
  padding-left: 0.15em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--wp--preset--color--secondary);
  font-family: var(--wp--preset--font-family--montserrat);
  font-size: 2.0625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-num {
    margin-left: 0 !important;
    padding-left: 0.075em;
    width: 80px;
    height: 80px;
    font-size: 2.8125rem;
    letter-spacing: 0.05em;
    position: relative;
    left: auto;
    top: auto;
  }
}
*:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-num::before {
  content: "";
  width: 35px;
  height: 35px;
  background-color: #082c5c;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-num::before {
    width: 47px;
    height: 47px;
  }
}
*:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-image {
  width: 82%;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-image {
    margin-top: -20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 360/234;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1440px) {
  *:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-image {
    margin-top: -40px;
    width: 82%;
  }
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-image img {
    margin-top: auto;
    vertical-align: bottom;
    width: 100%;
  }
}
*:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-title {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #082c5c;
}
@media only screen and (min-width: 1025px) {
  *:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-title {
    font-size: 2.0625rem;
    text-align: center;
  }
}
*:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-text {
  margin-top: -5px;
  width: 82%;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #082c5c;
}
@media only screen and (min-width: 1025px) {
  *:not(.site-header, .site-footer) .sec-service .service-list .list-item .list-text {
    margin-top: -10px;
  }
}
*:not(.site-header, .site-footer) .sec-service .service-list .list-item:nth-of-type(2) {
  padding-top: 35px;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-service .service-list .list-item:nth-of-type(2) {
    padding-top: 0;
  }
}
*:not(.site-header, .site-footer) .sec-service .wp-block-buttons {
  margin-top: 80px;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .sec-service .wp-block-buttons {
    margin-top: 90px;
  }
}
*:not(.site-header, .site-footer) .page-service .img-service01 {
  margin-top: 40px;
  max-width: 1500px;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .page-service .img-service01 {
    margin-top: 50px;
  }
}
*:not(.site-header, .site-footer) .page-service .img-service02 {
  margin-top: 40px;
  max-width: 770px;
}
@media only screen and (min-width: 768px) {
  *:not(.site-header, .site-footer) .page-service .img-service02 {
    margin-top: 80px;
  }
}

.single-main {
  /* ----------------------------------------------------------------
    このページ
  ---------------------------------------------------------------- */
}
.single-main .entry-content + .wp-block-buttons {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) {
  .single-main .entry-content + .wp-block-buttons {
    margin-top: 200px;
  }
}