@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Lexend:wght@100..900&display=swap");
/*!
Theme Name: メディアサイト
Author: PROCMO Inc.
Author URI: https://procmo.co.jp/
Description:
Version: 1.0
*/
/*html5 Reset CSS*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background-color: transparent;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%; /* iphone番safariでの文字サイズを調整*/
  -ms-text-size-adjust: 100%;
}

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

ul, ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
} /* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

input[type=text], input[type=search], input[type=email], input[type=number], input[type=password], input[type=tel], input[type=button] {
  outline: none;
}

textarea,
button {
  outline: none;
}

button {
  border: none;
}

input[type=button],
input[type=submit],
button {
  cursor: pointer;
}

@media screen and (min-width: 1161px) {
  :root {
    --header-height: 72px;
  }
}
@media screen and (max-width: 1160px) {
  :root {
    --header-height: 72px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --header-height-space: 112px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height-space: 150px;
  }
}

html {
  font-size: 62.5%;
}

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

body {
  background: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

a {
  color: #2196F3;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
a:not([class]):hover {
  opacity: 0.7;
}

img {
  vertical-align: bottom;
}

/*
// サンプル
@include g.keyframes(test-sample){
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
*/
.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 1161px) {
  .l-header {
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 1160px) {
  .l-header {
    padding: 40px 0 0;
  }
}
.l-header__inner {
  background-color: rgba(255, 255, 255, 0.6);
  border: 3px solid #fff;
  border-radius: 50px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (min-width: 1161px) {
  .l-header__inner {
    padding: 0 32px;
  }
}
@media screen and (max-width: 1160px) {
  .l-header__inner {
    padding: 0 20px;
    margin: 0 20px;
  }
}
@media screen and (min-width: 1161px) {
  .l-header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 1160px) {
  .l-header__logo {
    width: 130px;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1161px) {
  .l-header__nav {
    flex: 1;
    margin-left: 40px;
  }
}
@media screen and (max-width: 1160px) {
  .l-header__nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    overflow-y: hidden;
    z-index: -1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
  }
  .l-header__nav-inner {
    padding: calc(var(--header-height-space) - 16px) 45px 37px;
    background: url(./assets/img/common/bg-menu.webp) no-repeat 0 0;
    background-size: cover;
    border-radius: 0 0 40px 40px;
  }
}
@media screen and (min-width: 1161px) {
  .l-header__nav-cta, .l-header__nav-other {
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .l-header__nav-cta {
    margin: 0 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .l-header__nav-cta > *:not(:first-child) {
    margin-left: 8px;
  }
}
@media screen and (max-width: 1160px) {
  .l-header__nav-other {
    margin: 25px 0 0;
  }
}
.l-header__nav.is-opened {
  overflow-y: auto;
  height: 100dvh;
}
.l-header__cta {
  margin-left: 43px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1160px) {
  .l-header__cta {
    margin-left: auto;
  }
}
.l-header__cta > *:not(:first-child) {
  margin-left: 12px;
}
@media screen and (max-width: 1160px) {
  .l-header__cta > * {
    white-space: nowrap;
  }
  .l-header__cta > *:first-child {
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .l-header__cta.is-hide > a {
    display: none;
  }
}
.l-header__menu {
  margin: 0 0 0 9px;
}
@media screen and (min-width: 1161px) {
  .l-header__menu {
    display: none;
  }
}
.l-header-other-link > li {
  font-size: 14px;
  font-size: 1.4rem;
}
.l-header-other-link > li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 0;
}
@media screen and (min-width: 1161px) {
  .l-navigation {
    display: flex;
    align-items: center;
  }
}
.l-navigation__item > a {
  font-family: "Lexend", sans-serif;
  text-decoration: none;
  color: #333;
  font-weight: 700;
}
@media screen and (max-width: 1160px) {
  .l-navigation__item > a {
    display: block;
    padding: 20px 0 20px;
    font-size: 16px;
    font-size: 1.6rem;
    color: #fff;
  }
}
.l-navigation__item > a > span {
  line-height: 1.8;
  font-weight: inherit;
}
@media screen and (min-width: 1161px) {
  .l-navigation__item:not(:first-child) {
    margin-left: 24px;
  }
}
@media screen and (max-width: 1160px) {
  .l-navigation__item {
    border-bottom: 1px solid #fff;
  }
}
.l-navigation__item.has-submenu > a {
  display: block;
  position: relative;
}
@media screen and (min-width: 1161px) {
  .l-navigation__item.has-submenu > a {
    padding-right: 18px;
  }
  .l-navigation__item.has-submenu > a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(./assets/img/common/icon-arrow.svg) no-repeat 0 0;
    background-size: 100% auto;
  }
}
.l-footer {
  background-color: #333;
}
.l-footer__body {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .l-footer__body {
    display: none;
  }
}
.l-footer__link {
  flex: 1;
  display: flex;
  justify-content: space-between;
  max-width: 504px;
  width: 100%;
}
.l-footer__outline {
  margin-left: auto;
  padding-top: 8px;
}
.l-footer__copyright {
  background-color: #222;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 19px 0;
}
.l-footer-link-list > li {
  font-family: var(--set-font-family, Noto Sans JP, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif);
  font-weight: var(--set-font-weight, 500);
}
.l-footer-link-list > li:not(:last-child) {
  margin-bottom: var(--set-margin-bottom, 9px);
}
.l-footer-link-list > li a {
  color: #fff;
  text-decoration: none;
}
.l-footer-link-list--eng {
  --set-font-family: Lexend, sans-serif;
  --set-font-weight: 700;
  --set-margin-bottom: 12px;
}
.l-footer-link-list:not(.l-footer-link-list--eng) {
  font-size: 14px;
  font-size: 1.4rem;
}
.l-footer-outline {
  color: #fff;
}
.l-footer-outline__logo {
  max-width: 300px;
  width: 100%;
  margin: 0 0 32px;
}
.l-footer-outline__logo img {
  width: 100%;
  height: auto;
}
.l-footer-outline__name {
  margin: 0 0 8px;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}
.l-footer-outline__address {
  font-size: 14px;
  font-size: 1.4rem;
}
.l-footer-cta {
  background: url(./assets/img/common/bg-footer-cta.webp) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .l-footer-cta {
    min-height: 460px;
  }
}
.l-footer-cta__inner {
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .l-footer-cta__inner {
    max-width: 880px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-cta__inner {
    margin: 0 38px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-cta__button {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-cta__button > *:not(:last-child) {
    margin: 0 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .l-sidebar {
    --set-outer-padding: 36px 0 0;
    --set-inner-padding: 56px 0 100px;
    --set-bg-params: url(./assets/img/common/bg-texture03-sp-mid.webp) repeat-y 0 0;
    position: relative;
    overflow: hidden;
    padding: var(--set-outer-padding, 80px 0);
  }
  .l-sidebar::before {
    content: "";
    display: block;
    background: var(--set-bg-params-partial, url(./assets/img/common/bg-texture03-sp-top.webp) no-repeat center top);
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .l-sidebar::before {
    height: 36px;
    background-position: center top;
  }
}
@media screen and (max-width: 767px) {
  .l-sidebar__bg {
    background: var(--set-bg-params);
    background-size: 100% auto;
  }
  .l-sidebar__inner {
    margin: 0 37px;
    padding: var(--set-inner-padding, 0);
    position: relative;
    z-index: 1;
  }
}
.l-sidebar-block:not(:last-child) {
  margin: 0 0 24px;
}
@media screen and (max-width: 767px) {
  .l-sidebar-block:not(:last-child) {
    margin: 0 0 40px;
  }
}
.l-sidebar-block__heading + .l-sidebar-block__body {
  margin: 16px 0 0;
}
@media screen and (max-width: 767px) {
  .l-sidebar-block__heading {
    --set-bg-color: #fff;
  }
}
.l-sidebar-block--banner img {
  width: 100%;
  height: auto;
}
.l-sidebar-list > li {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .l-sidebar-list > li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.l-sidebar-list > li a {
  display: block;
  text-decoration: none;
  color: #003965;
  position: relative;
  padding: 10px 30px 10px 8px;
}
.l-sidebar-list > li a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
  border-right: 2px solid #003965;
  border-bottom: 2px solid #003965;
}
.l-sidebar-thumb-list > li:not(:last-child) {
  margin: 0 0 16px;
}
.l-sidebar-thumb-block {
  display: flex;
  align-items: center;
}
.l-sidebar-thumb-block:is(a) {
  text-decoration: none;
  color: #003965;
}
.l-sidebar-thumb-block:is(a):hover {
  opacity: 0.7;
}
.l-sidebar-thumb-block__image {
  max-width: 142px;
  width: 100%;
  height: 80px;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 16px 0 0;
}
.l-sidebar-thumb-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-sidebar-thumb-block__text {
  flex: 1;
  padding: 7px 0;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.l-wrapper {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr auto;
  min-height: 100dvh;
}
.l-content:not(.l-content--home):not(.l-content--has-2column) {
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .l-content--has-2column {
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .l-breadcrumb {
    padding: 11px 0;
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    padding: 13px 0;
    display: none;
  }
}
.l-breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .l-breadcrumb__inner {
    max-width: 660px;
  }
}
@media screen and (max-width: 767px) {
  .l-breadcrumb__inner {
    margin: 0 12px;
  }
}
.l-breadcrumb__item {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}
.l-breadcrumb__item:not(:first-child) {
  position: relative;
  margin: 0 0 0 12px;
  padding: 0 0 0 17px;
  /*
  @include g.mq(pc){
    margin: 0 12px 0 0;
    padding: 0 17px 0 0;
  }
  @include g.mq(sp){
    margin: 0 22px 0 0;
    padding: 0 18px 0 0;
  }*/
}
.l-breadcrumb__item:not(:first-child)::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(0.8) rotate(45deg);
  border-right: 2px solid #003965;
  border-top: 2px solid #003965;
}
.l-breadcrumb__item a {
  color: #2196F3;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-column-layout {
    display: grid;
    grid-template-columns: auto 300px;
    gap: 0 40px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-column-layout__content--article {
    padding: 40px 0;
    margin: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-column-layout__supplement {
    margin: 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .l-column-layout__supplement {
    margin: 33px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .l-column-layout__supplement > *:not(:last-child) {
    margin: 0 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-column-layout__supplement > *:not(:last-child) {
    margin: 0 0 40px;
  }
}
.l-column-layout__sub-contents {
  margin: 80px 0 0;
}
.l-page-header {
  padding-top: var(--header-height-space);
  background: url(./assets/img/common/bg-page-header.webp) no-repeat center bottom;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .l-page-header {
    height: 400px;
    margin-bottom: -30px;
  }
}
@media screen and (max-width: 767px) {
  .l-page-header {
    min-height: 310px;
    background-image: url(./assets/img/common/bg-page-header-sp.webp);
  }
}
@media screen and (min-width: 768px) {
  .l-page-header__inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-page-header__inner {
    margin: 0 37px;
  }
}
.l-page-header--short {
  height: 400px;
}
@media screen and (min-width: 768px) {
  .l-page-header--short {
    padding-top: calc(var(--header-height-space) + 50px);
  }
}
@media screen and (max-width: 767px) {
  .l-page-header--short {
    height: 240px;
  }
}
@media screen and (min-width: 768px) {
  .l-page-body {
    margin-top: 30px;
  }
}
.l-article__header {
  margin: 0 0 24px;
}
.l-article__meta {
  display: flex;
  align-items: center;
  margin: 0 0 24px;
}
.l-article__pubdate {
  color: #666;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  line-height: 1.6;
}
.l-article__category {
  display: flex;
  align-items: center;
  margin-left: 24px;
}
.l-article__category > *:not(:last-child) {
  margin-right: 8px;
}
.l-article__title {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
}
.l-article__lead {
  margin-top: 40px;
}
.l-article__toc {
  margin: 80px 0 0;
}
.l-article__body {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-article__body {
    margin-top: 40px;
  }
}
.l-article__event-outline {
  margin-top: 24px;
}
.l-article__eyecatch {
  margin-top: 24px;
}
.l-article__eyecatch img {
  width: 100%;
  height: auto;
}
.l-article__apply {
  margin-top: 40px;
  text-align: center;
}
.l-article__apply > a {
  --set-btn-font-size: 2.4rem;
  --set-btn-width: 464px;
  --set-btn-width-per: 100%;
}
@media screen and (max-width: 767px) {
  .l-article__apply > a {
    --set-btn-font-size: 2.0rem;
  }
}
.l-article__event {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-article__event {
    margin-top: 40px;
  }
}
.l-single-content {
  padding: 40px 0 0;
}
@media screen and (min-width: 768px) {
  .l-single-content {
    max-width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-single-content {
    margin: 0 20px;
  }
}
.l-form-content {
  padding: 40px 0 0;
}
@media screen and (min-width: 768px) {
  .l-form-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-form-content {
    margin: 0 20px;
  }
}

.c-clear-layer {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.c-icon-sphere {
  display: inline-block;
  position: relative;
  width: var(--set-icon-size, 40px);
  height: var(--set-icon-size, 40px);
  border-radius: 100px;
  background: #003965;
  background: linear-gradient(360deg, rgb(0, 57, 101) 0%, rgb(0, 134, 197) 100%);
}
@media screen and (max-width: 767px) {
  .c-icon-sphere {
    --set-icon-size: 32px;
  }
}
.c-icon-sphere::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--set-icon-inner-size, 8px);
  height: var(--set-icon-inner-size, 8px);
  border-radius: 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-icon-sphere::after {
    --set-icon-inner-size: 6px;
  }
}
.c-icon-sphere--large {
  --set-icon-size: 60px;
  --set-icon-inner-size: 12px;
}
@media screen and (max-width: 767px) {
  .c-icon-sphere--large {
    --set-icon-size: 40px;
    --set-icon-inner-size: 8px;
  }
}
.c-icon-new {
  display: inline-block;
  background-color: #73E2E6;
  border: 2px solid #003965;
  border-radius: 40px;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-icon-new {
    min-width: 114px;
    padding: 15px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-icon-new {
    min-width: 88px;
    padding: 13px 0;
  }
}
.c-icon-new::after {
  content: "NEW";
  display: inline;
  color: #003965;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .c-icon-new::after {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-icon-new::after {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-icon-label-round {
  display: inline-block;
  padding: 3px 24px;
  color: #003965;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid #003965;
  font-size: 14px;
  font-size: 1.4rem;
}
.c-icon-sns {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: var(--set-icon-src) no-repeat 0 0;
  background-size: 100% auto;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}
.c-icon-sns--fb {
  --set-icon-src: url(./assets/img/common/icon-sns-fb.svg);
}
.c-icon-sns--x {
  --set-icon-src: url(./assets/img/common/icon-sns-x.svg);
}
.c-icon-sns--hb {
  --set-icon-src: url(./assets/img/common/icon-sns-hb.svg);
}
.c-icon-sns--line {
  --set-icon-src: url(./assets/img/common/icon-sns-line.svg);
}
.c-icon-sns--pocket {
  --set-icon-src: url(./assets/img/common/icon-sns-pocket.svg);
}
.c-icon-required {
  display: inline-block;
  background-color: var(--set-bg-color, #F44336);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 2px 8px;
  font-style: normal;
  text-align: center;
}
.c-icon-required::after {
  content: var(--set-icon-text, "必須");
  font: inherit;
  display: inline;
  line-height: 1;
}
.c-icon-required--any {
  --set-bg-color: #888;
  --set-icon-text: "任意";
}

@media screen and (max-width: 767px) {
  .c-heading-section {
    --set-heading-margin-bottom: 13px;
    --set-heading-fontsize: 6rem;
  }
}
.c-heading-section__main, .c-heading-section__sub {
  display: block;
}
.c-heading-section__main {
  font-family: "Lexend", sans-serif;
  font-size: var(--set-heading-fontsize, 12rem);
  font-weight: var(--set-heading-fontweight, 700);
  color: var(--set-heading-color, #0086C5);
  line-height: 1;
  margin-bottom: var(--set-heading-margin-bottom, 10px);
}
.c-heading-section__sub {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--set-sub-heading-color, #666);
}
@media screen and (max-width: 767px) {
  .c-heading-section__sub {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.c-heading-section--smaller {
  --set-heading-fontweight: 500;
}
@media screen and (min-width: 768px) {
  .c-heading-section--smaller {
    --set-heading-fontsize: 6rem;
    --set-heading-margin-bottom: 18px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-section--smaller {
    --set-heading-fontsize: 4.8rem;
    --set-heading-margin-bottom: 10px;
  }
}
.c-heading-page__eng, .c-heading-page__jp {
  display: block;
}
.c-heading-page__eng {
  color: #fff;
  font-family: "Lexend", sans-serif;
  font-size: var(--set-heading-fontsize, 10rem);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-heading-page__eng {
    --set-heading-fontsize: 4.5rem;
  }
}
.c-heading-page__jp {
  color: #fff;
  font-size: var(--set-sub-heading-fontsize, 1.8rem);
  font-weight: 700;
  margin-top: var(--set-sub-heading-margin-top, 5px);
}
@media screen and (max-width: 767px) {
  .c-heading-page__jp {
    --set-sub-heading-fontsize: 1.6rem;
  }
}
.c-heading-page--parallel {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  --set-heading-fontsize: 6rem;
  --set-sub-heading-margin-top: 0;
}
.c-heading-page--parallel > * {
  line-height: inherit;
}
.c-heading-page--parallel > *:last-child {
  margin-left: 24px;
  padding-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .c-heading-page--parallel > *:last-child {
    margin-left: 10px;
  }
}
.c-heading-content__eng, .c-heading-content__jp {
  display: block;
}
.c-heading-content__eng {
  font-family: "Lexend", sans-serif;
  font-size: var(--set-heading-fontsize-eng, 1.6rem);
  font-weight: 700;
  color: #0086C5;
  margin: 0 0 34px;
  position: relative;
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .c-heading-content__eng {
    margin-bottom: 20px;
    --set-heading-fontsize-eng: 1.6rem;
  }
}
.c-heading-content__eng::before, .c-heading-content__eng::after {
  content: "";
  display: block;
  width: var(--set-icon-size, 24px);
  height: var(--set-icon-size, 24px);
  border-radius: 100%;
  background-color: #0086C5;
  position: absolute;
  left: 0;
  top: 2px;
}
.c-heading-content__eng::after {
  --set-icon-size: 12px;
  background-color: #fff;
  left: 6px;
  top: 8px;
}
.c-heading-content__jp {
  font-size: var(--set-heading-fontsize-jp, 3.2rem);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-heading-content__jp {
    --set-heading-fontsize-jp: 2.6rem;
  }
}
.c-heading-sub-content {
  color: #003965;
  font-size: var(--set-heading-font-size, 1.8rem);
  font-weight: 700;
  border-bottom: 2px solid #003965;
  padding: 3px 8px;
  background-color: var(--set-bg-color, transparent);
}
.c-heading-simple {
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .c-heading-simple {
    font-size: 32px;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-simple {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.c-btn-menu {
  display: block;
  width: 35px;
  height: 35px;
  position: relative;
  background: none;
  appearance: none;
  outline: none;
}
.c-btn-menu__icon {
  display: block;
  width: 32px;
  height: 22px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-menu__icon > i {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #003965;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-menu__icon::before, .c-btn-menu__icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #003965;
  border-radius: 4px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-menu__icon::before {
  top: 0;
}
.c-btn-menu__icon::after {
  top: 100%;
  transform: translateY(-100%);
}
.c-btn-menu.is-opened .c-btn-menu__icon {
  transform: translate(-50%, -50%) rotateY(360deg);
}
.c-btn-menu.is-opened .c-btn-menu__icon > i {
  opacity: 0;
}
.c-btn-menu.is-opened .c-btn-menu__icon::before, .c-btn-menu.is-opened .c-btn-menu__icon::after {
  top: 50%;
}
.c-btn-menu.is-opened .c-btn-menu__icon::before {
  transform: translate(0, -50%) rotate(40deg);
}
.c-btn-menu.is-opened .c-btn-menu__icon::after {
  transform: translate(0, -50%) rotate(-40deg);
}
.c-btn-header-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--set-btn-width-per, auto);
  max-width: var(--set-btn-width, none);
  min-height: var(--set-btn-height, 45px);
  padding: 5px 21px;
  border-radius: 50px;
  border: 3px solid var(--set-btn-bdr-color, #fff);
  background: #fff var(--set-bg-src, transparent) no-repeat center;
  background-size: cover;
  color: var(--set-btn-text-color, #fff);
  font-size: var(--set-text-size, 1.4rem);
  font-weight: 700;
  text-decoration: none;
}
.c-btn-header-cta__label {
  font-weight: inherit;
}
.c-btn-header-cta--aqua {
  --set-bg-src: url(./assets/img/common/bg-btn-texture-aqua.webp);
}
.c-btn-header-cta--aqua:hover {
  --set-bg-src: url(./assets/img/common/bg-btn-texture-aqua-hov.webp);
  --set-btn-text-color: #0086C5;
  --set-btn-bdr-color: #0086C5;
}
.c-btn-header-cta--navy {
  --set-bg-src: url(./assets/img/common/bg-btn-texture-navy.webp);
}
.c-btn-header-cta--navy:hover {
  --set-bg-src: url(./assets/img/common/bg-btn-texture-navy-hov.webp);
  --set-btn-text-color: #003965;
  --set-btn-bdr-color: #003965;
}
@media screen and (max-width: 1160px) {
  .c-btn-header-cta {
    --set-btn-height: 34px;
    --set-text-size: 1.0rem;
    line-height: 1.6;
    border-width: 1px;
    padding: 8px 14px;
  }
}
.c-btn-footer-cta {
  display: block;
  background: var(--set-bg-src) no-repeat center;
  background-size: cover;
  border-radius: 16px;
  padding: 15px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn-footer-cta {
    min-height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-footer-cta {
    min-height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.c-btn-footer-cta:is(a) {
  text-decoration: none;
}
.c-btn-footer-cta::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 3px solid var(--set-bdr-color, transparent);
  border-radius: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-footer-cta__inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-btn-footer-cta__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
}
.c-btn-footer-cta__heading {
  color: var(--set-text-color, inherit);
  line-height: 1.6;
  font-family: "Lexend", sans-serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn-footer-cta__heading {
    font-size: 40px;
    font-size: 4rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-footer-cta__heading {
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 500;
  }
}
.c-btn-footer-cta__outline {
  text-align: center;
  color: var(--set-text-color, inherit);
  margin-top: 8px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-btn-footer-cta__outline {
    line-height: 1.8;
  }
}
.c-btn-footer-cta__icon {
  text-align: center;
  margin: 32px 0 0;
}
.c-btn-footer-cta__icon > i {
  position: relative;
  display: inline-block;
  width: var(--set-icon-size, 60px);
  height: var(--set-icon-size, 60px);
  border-radius: 100px;
  background: #003965;
  background: var(--set-icon-bg-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn-footer-cta__icon > i {
    --set-icon-size: 40px;
  }
}
.c-btn-footer-cta__icon > i::before, .c-btn-footer-cta__icon > i::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-footer-cta__icon > i::before {
  width: var(--set-icon-inner-size, 12px);
  height: var(--set-icon-inner-size, 12px);
  border-radius: 100px;
  background-color: #fff;
  opacity: var(--set-icon-before-opacity, 1);
}
@media screen and (max-width: 767px) {
  .c-btn-footer-cta__icon > i::before {
    --set-icon-inner-size: 8px;
  }
}
.c-btn-footer-cta__icon > i::after {
  width: 33px;
  height: 12px;
  background: url(./assets/img/common/icon-arrow-one-side-white.svg) no-repeat 0 0;
  background-size: 100% auto;
  opacity: var(--set-icon-after-opacity, 0);
  transform: translate(-50%, -70%);
}
.c-btn-footer-cta:hover {
  --set-icon-before-opacity: 0;
  --set-icon-after-opacity: 1;
}
.c-btn-footer-cta--aqua {
  --set-text-color: #003965;
  --set-bg-src: url(./assets/img/common/bg-btn-texture-square-aqua.webp);
  --set-icon-bg-color: linear-gradient(360deg, rgba(0, 134, 197, 1) 0%, rgba(128, 194, 226, 1) 100%);
}
.c-btn-footer-cta--aqua:hover {
  --set-bdr-color: #fff;
  --set-bg-src: url(./assets/img/common/bg-btn-texture-square-aqua-hov.webp);
  --set-text-color: #fff;
  --set-icon-bg-color: linear-gradient(180deg, rgba(0, 134, 197, 1) 0%, rgba(128, 194, 226, 1) 100%);
}
.c-btn-footer-cta--navy {
  --set-text-color: #fff;
  --set-bg-src: url(./assets/img/common/bg-btn-texture-square-navy.webp);
  --set-icon-bg-color: linear-gradient(360deg, rgba(0, 57, 101, 1) 0%, rgba(0, 134, 197, 1) 100%);
}
.c-btn-footer-cta--navy:hover {
  --set-bdr-color: #003965;
  --set-bg-src: url(./assets/img/common/bg-btn-texture-square-navy-hov.webp);
  --set-text-color: #003965;
  --set-icon-bg-color: linear-gradient(180deg, rgba(0, 57, 101, 1) 0%, rgba(0, 134, 197, 1) 100%);
}
.c-btn-semicircle {
  display: inline-block;
  width: var(--set-btn-width-per, auto);
  max-width: var(--set-btn-width, none);
  color: var(--set-text-color, #fff);
  border-radius: 50px;
  background: var(--set-btn-edge-color, #fff);
  text-decoration: none;
  font-size: var(--set-btn-font-size, 2rem);
  font-weight: var(--set-btn-font-weight, 700);
  line-height: 1.6;
  padding: 3px;
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle {
    --set-btn-font-size: 1.4rem;
    --set-btn-height: 64px;
  }
}
.c-btn-semicircle__inner {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: var(--set-btn-height, 50px);
  background: #003965;
  background: var(--set-btn-bg-color, linear-gradient(180deg, rgb(0, 57, 101) 0%, rgb(0, 134, 197) 100%));
  padding: 5px 36px;
  border-radius: inherit;
  font-weight: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle__inner {
    padding: 5px 25px;
  }
}
.c-btn-semicircle__label {
  font-weight: inherit;
  position: relative;
  display: inline-block;
  padding-right: 64px;
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle__label {
    padding-right: 48px;
  }
}
.c-btn-semicircle__label > i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: var(--set-icon-size, 40px);
  height: var(--set-icon-size, 40px);
  border-radius: 100px;
  background: #003965;
  background: var(--set-icon-bg-color, linear-gradient(360deg, rgb(0, 57, 101) 0%, rgb(0, 134, 197) 100%));
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle__label > i {
    --set-icon-size: 32px;
  }
}
.c-btn-semicircle__label > i::before, .c-btn-semicircle__label > i::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-semicircle__label > i::before {
  width: var(--set-icon-inner-size, 8px);
  height: var(--set-icon-inner-size, 8px);
  border-radius: 100px;
  background-color: #fff;
  opacity: var(--set-icon-before-opacity, 1);
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle__label > i::before {
    --set-icon-inner-size: 6px;
  }
}
.c-btn-semicircle__label > i::after {
  width: 22px;
  height: 8px;
  background: url(./assets/img/common/icon-arrow-one-side-white.svg) no-repeat 0 0;
  background-size: 100% auto;
  opacity: var(--set-icon-after-opacity, 0);
  transform: translate(-50%, -60%);
}
.c-btn-semicircle:hover {
  --set-btn-edge-color: linear-gradient(0deg, rgba(0, 57, 101, 1) 0%, rgba(0, 134, 197, 1) 100%);
  --set-btn-bg-color: #fff;
  --set-text-color: #003965;
  --set-icon-bg-color: linear-gradient(180deg, rgba(0, 57, 101, 1) 0%, rgba(0, 134, 197, 1) 100%);
  --set-icon-before-opacity: 0;
  --set-icon-after-opacity: 1;
}
.c-btn-semicircle--borderless {
  --set-btn-height: 80px;
  padding: 0;
}
.c-btn-semicircle-bg {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--set-btn-width-per, auto);
  max-width: var(--set-btn-width, none);
  min-height: var(--set-btn-height, 56px);
  color: var(--set-text-color, #fff);
  border-radius: 50px;
  background: #0086C5 no-repeat center;
  background-image: var(--set-btn-bg-src, url(./assets/img/common/bg-btn-texture-aqua-large.webp));
  background-size: cover;
  text-decoration: none;
  font-size: var(--set-btn-font-size, 2rem);
  font-weight: var(--set-btn-font-weight, 700);
  line-height: 1.6;
  padding: 5px 36px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle-bg {
    padding: 5px 25px;
    --set-btn-font-size: 1.4rem;
    --set-btn-height: 64px;
  }
}
.c-btn-semicircle-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 3px solid var(--set-btn-edge-color, #fff);
  border-radius: inherit;
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle-bg::before {
    --set-btn-edge-color: #fff;
  }
}
.c-btn-semicircle-bg__label {
  font-weight: inherit;
  position: relative;
  display: inline-block;
  padding-right: 64px;
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle-bg__label {
    padding-right: 48px;
  }
}
.c-btn-semicircle-bg__label > i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: var(--set-icon-size, 40px);
  height: var(--set-icon-size, 40px);
  border-radius: 100px;
  background: #0086C5;
  background: var(--set-icon-bg-color, linear-gradient(360deg, rgb(0, 134, 197) 0%, rgb(128, 194, 226) 100%));
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle-bg__label > i {
    --set-icon-size: 32px;
  }
}
.c-btn-semicircle-bg__label > i::before, .c-btn-semicircle-bg__label > i::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-semicircle-bg__label > i::before {
  width: var(--set-icon-inner-size, 8px);
  height: var(--set-icon-inner-size, 8px);
  border-radius: 100px;
  background-color: #fff;
  opacity: var(--set-icon-before-opacity, 1);
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle-bg__label > i::before {
    --set-icon-inner-size: 6px;
  }
}
.c-btn-semicircle-bg__label > i::after {
  width: 22px;
  height: 8px;
  background: url(./assets/img/common/icon-arrow-one-side-white.svg) no-repeat 0 0;
  background-size: 100% auto;
  opacity: var(--set-icon-after-opacity, 0);
  transform: translate(-50%, -60%);
}
.c-btn-semicircle-bg:hover {
  --set-btn-edge-color: #fff;
  --set-btn-bg-src: url(./assets/img/common/bg-btn-texture-aqua-large-hov.webp);
  --set-btn-bg-color: #fff;
  --set-text-color: #0086C5;
  --set-icon-bg-color: linear-gradient(180deg, rgba(0, 134, 197, 1) 0%, rgba(128, 194, 226, 1) 100%);
  --set-icon-before-opacity: 0;
  --set-icon-after-opacity: 1;
}
.c-btn-semicircle-bg--borderless {
  --set-btn-height: 80px;
  padding: 0;
}
.c-btn-arrow {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.c-btn-arrow::after {
  content: "";
  display: block;
  width: 26px;
  height: 9px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(./assets/img/common/icon-arrow-one-side-large.svg) no-repeat 0 0;
  background-size: 100% auto;
}
.c-btn-arrow--reverse::after {
  transform: translate(-50%, -50%) scaleX(-1);
}
.c-btn-arrow:not(.c-btn-arrow--reverse-color) {
  border: 1px solid #003965;
}
.c-btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 50px;
  padding: 5px 20px;
  color: var(--set-btn-text-color, #003965);
  background-color: var(--set-btn-bg-color, #fff);
  border: 2px solid var(--set-btn-bdr-color, #003965);
  border-radius: 60px;
  font-size: var(--set-btn-font-size, 1.4rem);
  font-weight: 700;
}
.c-btn-nav:is(a) {
  text-decoration: none;
}
.c-btn-nav__label {
  display: inline-block;
  font-weight: inherit;
  position: relative;
  padding-right: 20px;
  /*
  &::after{
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: var(--set-icon-color, #003965);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    @include g.transition;
  }
  */
}
.c-btn-nav__label > i {
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-nav__label > i::before, .c-btn-nav__label > i::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--set-icon-color, #003965);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-nav:hover {
  --set-btn-bg-color: #003965;
  --set-btn-text-color: #fff;
  --set-icon-color: #fff;
}
.c-btn-nav:hover .c-btn-nav__label {
  /*
  &::after{
    height: 10px;
    border-right: 2px solid g.$bdr-color-white;
    border-bottom: 2px solid g.$bdr-color-white;
    background: none;
    transform: translate(0, -50%) rotate(45deg);
  }
  */
}
.c-btn-nav:hover .c-btn-nav__label > i {
  transform: translateY(-50%) scale(0.8, 0.8);
}
.c-btn-nav:hover .c-btn-nav__label > i::before, .c-btn-nav:hover .c-btn-nav__label > i::after {
  left: 0;
  transform-origin: center;
}
.c-btn-nav:hover .c-btn-nav__label > i::before {
  transform: translate(-25%, -50%) rotate(45deg);
}
.c-btn-nav:hover .c-btn-nav__label > i::after {
  transform: translate(25%, -50%) rotate(-45deg);
}
.c-btn-nav.is-current {
  --set-btn-bg-color: #003965;
  --set-btn-text-color: #fff;
  --set-icon-color: #fff;
}
.c-btn-category {
  display: inline-block;
  border-radius: 8px;
  border: 2px solid #003965;
  padding: 6px 30px;
  color: var(--set-text-color, #003965);
  background-color: var(--set-btn-bg-color, #fff);
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
}
.c-btn-category__label {
  font-weight: inherit;
}
.c-btn-category:hover, .c-btn-category.is-current {
  --set-text-color: #fff;
  --set-btn-bg-color: #003965;
}
.c-btn-toggle {
  display: inline-block;
  border-radius: 50px;
  border: 2px solid #003965;
  background-color: #fff;
  padding: 4px 24px;
  text-align: center;
  color: #003965;
  font-weight: 700;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-toggle__label {
  display: inline-block;
  position: relative;
  padding-right: 16px;
  font-weight: inherit;
}
.c-btn-toggle__label::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-75%) rotate(-45deg);
  border-left: 2px solid #003965;
  border-bottom: 2px solid #003965;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-toggle:hover {
  background-color: #809CB2;
}
.c-btn-semicircle-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--set-btn-width-per, auto);
  max-width: var(--set-btn-width, none);
  min-height: var(--set-btn-height, 64px);
  color: var(--set-text-color, #0086C5);
  border-radius: 50px;
  border: 3px solid var(--set-btn-bdr-color, #0086C5);
  background: var(--set-btn-bg-color, #fff);
  text-decoration: none;
  font-size: var(--set-btn-font-size, 2rem);
  font-weight: var(--set-btn-font-weight, 700);
  line-height: 1.6;
  padding: 3px 32px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn-semicircle-outline {
    --set-btn-height: 40px;
    --set-btn-font-size: 1.4rem;
  }
}
.c-btn-semicircle-outline__label {
  display: inline-block;
  font-weight: inherit;
}
.c-btn-semicircle-outline:hover {
  --set-btn-bg-color: #0086C5;
  --set-text-color: #fff;
}
.c-btn-semicircle-outline--gray {
  --set-btn-bg-color: #fff;
  --set-btn-bdr-color: #666;
  --set-text-color: #666;
}
.c-btn-semicircle-outline--gray:hover {
  --set-btn-bg-color: #666;
  --set-text-color: #fff;
}

.c-form-ui-textfield, .c-form-ui-textarea {
  display: block;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #809CB2;
  background-color: #F0F7FA;
  font-family: inherit;
  font-size: inherit;
}
.c-form-ui-textfield:placeholder-shown, .c-form-ui-textarea:placeholder-shown {
  color: #888;
}
.c-form-ui-textfield::-webkit-input-placeholder, .c-form-ui-textarea::-webkit-input-placeholder {
  color: #888;
}
.c-form-ui-textfield::-moz-placeholder, .c-form-ui-textarea::-moz-placeholder {
  color: #888;
}
@media screen and (min-width: 768px) {
  .c-form-ui-textfield {
    height: 60px;
    padding: 16px 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-form-ui-textfield {
    height: 48px;
    padding: 12px 16px;
  }
}
@media screen and (min-width: 768px) {
  .c-form-ui-textarea {
    height: 130px;
    padding: 16px 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-form-ui-textarea {
    height: 120px;
    padding: 12px 16px;
  }
}
.c-form-ui-radio {
  display: inline-block;
  position: relative;
}
.c-form-ui-radio__text {
  display: block;
  position: relative;
  padding-left: 25px;
}
.c-form-ui-radio__text > i {
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  border-radius: 100%;
  border: 1px solid var(--set-bdr-color, #809CB2);
  background-color: #fff;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-form-ui-radio__text > i {
    top: 0.4em;
  }
}
@media screen and (max-width: 767px) {
  .c-form-ui-radio__text > i {
    top: 0.25em;
  }
}
.c-form-ui-radio__text > i::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background-color: #003965;
  opacity: var(--set-selected-opacity, 0);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-form-ui-radio input {
  position: absolute;
  left: -100vw;
  top: 0;
}
.c-form-ui-radio input:checked + .c-form-ui-radio__text {
  --set-selected-opacity: 1;
  --set-bdr-color: #003965;
}
.c-form-ui-radio:hover {
  --set-bdr-color: #003965;
}
.c-form-ui-checkbox {
  display: inline-block;
  position: relative;
}
.c-form-ui-checkbox__text {
  display: block;
  position: relative;
  padding-left: 25px;
}
.c-form-ui-checkbox__text > i {
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  border-radius: 3px;
  border: 1px solid var(--set-bdr-color, #809CB2);
  background-color: var(--set-bg-color, #fff);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-form-ui-checkbox__text > i {
    top: 0.4em;
  }
}
@media screen and (max-width: 767px) {
  .c-form-ui-checkbox__text > i {
    top: 0.25em;
  }
}
.c-form-ui-checkbox__text > i::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -65%) rotate(45deg) scaleX(0.5);
  border-right: 4px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: var(--set-selected-opacity, 0);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.c-form-ui-checkbox input {
  position: absolute;
  left: -100vw;
  top: 0;
}
.c-form-ui-checkbox input:checked + .c-form-ui-checkbox__text {
  --set-bg-color: #003965;
  --set-selected-opacity: 1;
  --set-bdr-color: #003965;
}
.c-form-ui-checkbox:hover {
  --set-bdr-color: #003965;
}
.c-form-ui-error {
  color: #F44336;
  margin-top: 5px;
}
.c-form-ui-note {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 8px;
}

.p-content-section {
  padding: var(--set-outer-padding, 80px 0);
}
@media screen and (max-width: 767px) {
  .p-content-section {
    --set-outer-padding: 40px 0;
  }
}
.p-content-section:last-child {
  padding-bottom: 0;
}
.p-content-section__bg {
  background: var(--set-bg-params);
  background-size: 100% 100%;
}
.p-content-section__inner {
  position: relative;
  z-index: 1;
  padding: var(--set-inner-padding, 0);
}
@media screen and (min-width: 768px) {
  .p-content-section__inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section__inner {
    margin: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section__header + .p-content-section__body {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section__header + .p-content-section__body {
    margin-top: 40px;
  }
}
.p-content-section__description {
  margin-top: 16px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-content-section__description {
    margin-top: 8px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.p-content-section__description p {
  font-weight: inherit;
}
@media screen and (min-width: 768px) {
  .p-content-section__description + .p-content-section__body {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section__description + .p-content-section__body {
    margin-top: 40px;
  }
}
.p-content-section__button {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-content-section__button {
    margin: 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section__button {
    margin: 40px 0 0;
  }
}
.p-content-section__button-link {
  margin-top: 40px;
}
.p-content-section__button-link a {
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-content-section--line-grad {
    --set-outer-padding: 120px 0;
    background: url(./assets/img/common/bg-texture-linegrad.webp) repeat-x bottom;
    background-size: auto 100%;
  }
}
.p-content-section--line-grad .p-content-section__inner {
  padding: 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-content-section--line-grad .p-content-section__inner {
    padding-bottom: 280px;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--line-grad .p-content-section__inner::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 544px;
    height: 261px;
    right: 0;
    bottom: -10px;
    background: url(./assets/img/common/bg-texture-linegrad-aboutus.webp) no-repeat right bottom;
    background-size: 100% auto;
  }
  .p-content-section--line-grad .p-content-section__inner::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--line-grad .p-content-section__inner::before, .p-content-section--line-grad .p-content-section__inner::after {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    width: calc(100% + 40px);
    bottom: 0;
  }
  .p-content-section--line-grad .p-content-section__inner::before {
    height: 260px;
    background: url(./assets/img/common/bg-texture-linegrad-sp.webp) repeat-x center 0;
    background-size: auto 100%;
  }
  .p-content-section--line-grad .p-content-section__inner::after {
    width: 100%;
    height: 158px;
    max-width: 336px;
    left: 50%;
    bottom: 51px;
    background: url(./assets/img/common/bg-texture-linegrad-aboutus-sp.webp) no-repeat center 0;
    background-size: 100% auto;
    transform: translateX(-50%);
  }
}
.p-content-section--texture01, .p-content-section--texture01-end, .p-content-section--texture02, .p-content-section--texture02-end {
  position: relative;
  overflow: hidden;
}
.p-content-section--texture01::before, .p-content-section--texture01::after, .p-content-section--texture01-end::before, .p-content-section--texture01-end::after, .p-content-section--texture02::before, .p-content-section--texture02::after, .p-content-section--texture02-end::before, .p-content-section--texture02-end::after {
  content: "";
  display: block;
  background: var(--set-bg-params-partial);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  width: 100%;
}
.p-content-section--texture01::before, .p-content-section--texture01-end::before, .p-content-section--texture02::before, .p-content-section--texture02-end::before {
  top: 0;
  height: var(--set-bg-top-height, 153px);
  background-position: center top;
}
.p-content-section--texture01::after, .p-content-section--texture01-end::after, .p-content-section--texture02::after, .p-content-section--texture02-end::after {
  bottom: 0;
  height: var(--set-bg-btm-height, 150px);
  background-position: center bottom;
}
@media screen and (min-width: 768px) {
  .p-content-section--texture01 {
    --set-outer-padding: 135px 0 135px;
    --set-inner-padding: 70px 0 80px;
    --set-bg-top-height: 153px;
    --set-bg-btm-height: 136px;
    --set-bg-params: url(./assets/img/common/bg-texture03-mid.webp) repeat-y 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--texture01 {
    --set-outer-padding: 36px 0 36px;
    --set-inner-padding: 44px 0 36px;
    --set-bg-top-height: 36px;
    --set-bg-btm-height: 36px;
    --set-bg-params: url(./assets/img/common/bg-texture03-sp-mid.webp) no-repeat 0 0;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--texture01::before {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture03-top.webp) no-repeat 0 top;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--texture01::before {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture03-sp-top.webp) no-repeat 0 top;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--texture01::after {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture03-btm.webp) no-repeat 0 bottom;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--texture01::after {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture03-sp-btm.webp) no-repeat 0 bottom;
  }
}
.p-content-section--texture01-end {
  margin-bottom: -100px;
}
@media screen and (min-width: 768px) {
  .p-content-section--texture01-end {
    --set-outer-padding: 135px 0 0;
    --set-inner-padding: 70px 0 100px;
    --set-bg-top-height: 153px;
    --set-bg-btm-height: 136px;
    --set-bg-params: url(./assets/img/common/bg-texture03-mid.webp) repeat-y 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--texture01-end {
    --set-outer-padding: 36px 0 0;
    --set-inner-padding: 44px 0 100px;
    --set-bg-top-height: 36px;
    --set-bg-btm-height: 36px;
    --set-bg-params: url(./assets/img/common/bg-texture03-sp-mid.webp) no-repeat 0 0;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--texture01-end::before {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture03-top.webp) no-repeat 0 top;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--texture01-end::before {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture03-sp-top.webp) no-repeat 0 top;
  }
}
.p-content-section--texture01-end::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-content-section--texture02 {
    --set-outer-padding: 125px 0 125px;
    --set-inner-padding: 60px 0 95px;
    --set-bg-btm-height: 125px;
    --set-bg-params: url(./assets/img/common/bg-texture04-mid.webp) repeat-y 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--texture02 {
    --set-outer-padding: 32px 0 36px;
    --set-inner-padding: 40px 0 50px;
    --set-bg-top-height: 32px;
    --set-bg-btm-height: 36px;
    --set-bg-params: url(./assets/img/common/bg-texture04-sp-mid.webp) repeat-y 0 0;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--texture02::before {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture04-top.webp) no-repeat 0 top;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--texture02::before {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture04-sp-top.webp) no-repeat 0 top;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--texture02::after {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture04-btm.webp) no-repeat 0 bottom;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--texture02::after {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture04-sp-btm.webp) no-repeat 0 bottom;
  }
}
.p-content-section--texture02-end {
  margin-bottom: -100px;
}
@media screen and (min-width: 768px) {
  .p-content-section--texture02-end {
    --set-outer-padding: 125px 0 0;
    --set-inner-padding: 60px 0 100px;
    --set-bg-btm-height: 125px;
    --set-bg-params: url(./assets/img/common/bg-texture04-mid.webp) repeat-y 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--texture02-end {
    --set-outer-padding: 32px 0 0;
    --set-inner-padding: 40px 0 100px;
    --set-bg-top-height: 32px;
    --set-bg-btm-height: 36px;
    --set-bg-params: url(./assets/img/common/bg-texture04-sp-mid.webp) repeat-y 0 0;
  }
}
@media screen and (min-width: 768px) {
  .p-content-section--texture02-end::before {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture04-top.webp) no-repeat 0 top;
  }
}
@media screen and (max-width: 767px) {
  .p-content-section--texture02-end::before {
    --set-bg-params-partial: #fff url(./assets/img/common/bg-texture04-sp-top.webp) no-repeat 0 top;
  }
}
.p-content-section--texture02-end::after {
  display: none;
}
.p-content-simple-section:not(:last-child) {
  margin: 0 0 36px;
}
.p-content-simple-section__header {
  margin: 0 0 16px;
}
.p-local-nav, .p-category-nav {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-local-nav, .p-category-nav {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-local-nav, .p-category-nav {
    overflow-x: auto;
  }
}
.p-local-nav > li:not(:last-child), .p-category-nav > li:not(:last-child) {
  margin: 0 16px 0 0;
}
@media screen and (min-width: 768px) {
  .p-local-nav-container > *, .p-category-nav-container > * {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-local-nav-container > *, .p-category-nav-container > * {
    white-space: nowrap;
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-local-nav-container {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-local-nav-container {
    padding: 20px 0 0;
  }
  .p-local-nav-container + * {
    margin-top: 20px;
  }
}
.p-category-nav-container {
  padding: 20px 0 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-archive {
    margin: 0 20px;
  }
}
.p-archive__pager {
  margin: 80px 0 0;
}
@media screen and (min-width: 768px) {
  .p-article-sub-section:not(:last-child) {
    margin: 0 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-article-sub-section:not(:last-child) {
    margin: 0 0 40px;
  }
}
.p-article-sub-section__heading {
  margin: 0 0 24px;
  --set-heading-font-size: 2.0rem;
}
.p-article-sub-section--slide-content {
  overflow: hidden;
  margin: 0 -20px;
  padding: 0 20px;
}

.is-term-text p + p {
  margin-top: 1em;
}
.is-term-text ul + ul,
.is-term-text ul + ol, .is-term-text ol + ul,
.is-term-text ol + ol {
  margin-top: 1em;
}
.is-term-text * + ul,
.is-term-text * + ol {
  margin-top: 1em;
}

.p-keyvisual {
  position: relative;
  background: url(./assets/img/home/bg-keyvisual.webp) no-repeat center bottom;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-keyvisual {
    padding-bottom: 93px;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual {
    background-image: url(./assets/img/home/bg-keyvisual-sp.webp);
    padding-bottom: 50px;
  }
}
.p-keyvisual__bg {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-keyvisual__bg {
    height: 1000px;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual__bg {
    min-height: 600px;
    background-image: url(./assets/img/home/bg-keyvisual-sp.webp);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 600px;
  }
}
.p-keyvisual__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-keyvisual__slide {
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-keyvisual__slide {
    /*
    position: absolute;
    left: 0;
    top: 0;
    height: 687px;
    */
  }
}
.p-keyvisual__slide-inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-keyvisual__slide-inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 34px;
  }
}
@media screen and (max-width: 767px) {
  .p-keyvisual__slide-inner {
    padding-bottom: 16px;
  }
}
.p-keyvisual__slide .swiper-slide {
  overflow: hidden;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-keyvisual__slide .swiper-slide {
    border-radius: 32px;
  }
}
.p-keyvisual__slide .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}
.p-keyvisual.is-firstview {
  padding-top: var(--header-height-space);
}
@media screen and (max-width: 767px) {
  .p-calendar-container .tribe-events .tribe-events-header {
    --tec-grid-gutter-page-small: 0;
  }
}
.p-event-data__heading {
  background-color: #CCD7E0;
  margin: 0 0 16px;
  position: relative;
  padding: 8px 16px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  border-left: 6px solid #003965;
}
.p-event-data__button {
  margin: 40px 0 0;
  text-align: center;
  --set-btn-font-size: 2.4rem;
  --set-btn-width: 464px;
  --set-btn-width-per: 100%;
}
@media screen and (max-width: 767px) {
  .p-event-data__button > a {
    --set-btn-font-size: 2.0rem;
  }
}
@media screen and (min-width: 768px) {
  .p-event-card-container + .p-event-card-container {
    margin: 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-event-card-container + .p-event-card-container {
    margin: 40px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-event-card-container:not(.p-event-card-container:first-child) {
    padding-bottom: 72px;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-card-img-column-list > *:not(:last-child) {
    margin: 0 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-img-column-list > *:not(:last-child) {
    margin: 0 0 48px;
  }
}
.p-card-img-column-block {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-card-img-column-block {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .p-card-img-column-block__image {
    max-width: 480px;
    width: 100%;
  }
}
.p-card-img-column-block__image img {
  width: 100%;
  height: auto;
}
.p-card-img-column-block__content {
  margin: var(--set-content-space, 0 40px 0 0);
  order: var(--set-order-num);
}
@media screen and (min-width: 768px) {
  .p-card-img-column-block__content {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-card-img-column-block__content {
    --set-content-space: 24px 0 0;
    --set-order-num: 1;
  }
}
.p-card-img-column-block__heading {
  color: #003965;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-card-img-column-block__heading {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-card-img-column-block__heading {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-card-img-column-block__heading + .p-card-img-column-block__text {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-img-column-block__heading + .p-card-img-column-block__text {
    margin-top: 8px;
  }
}
.p-card-img-column-block__text p + p {
  margin-top: 1em;
}
.p-card-img-column-block--reverse {
  --set-order-num: 1;
  --set-content-space: 0 0 0 40px;
}
.p-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.p-pagination .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  text-align: center;
  margin: 0 4px;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  /*&.disabled{
    cursor: default;
    pointer-events: none;
    --set-icon-color: #CCD7E0;
  }*/
}
.p-pagination .page-numbers:not(.dots) {
  background-color: var(--set-bg-color, #fff);
  border: 1px solid var(--set-bdr-color, #003965);
  color: var(--set-text-color, #003965);
}
.p-pagination .page-numbers:hover {
  --set-bg-color: #003965;
  --set-bdr-color: #003965;
  --set-text-color: #fff;
  --set-icon-color: #fff;
}
.p-pagination .page-numbers.prev, .p-pagination .page-numbers.next {
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-radius: 100%;
  width: 40px;
  height: 40px;
}
.p-pagination .page-numbers.prev::after, .p-pagination .page-numbers.next::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 8px;
  background: var(--set-icon-src, url(./assets/img/common/icon-arrow-one-side.svg)) no-repeat 0 0;
  background-size: 100% auto;
  transform: var(--set-icon-transform, translate(-50%, -60%));
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  backface-visibility: hidden;
}
.p-pagination .page-numbers.prev:hover, .p-pagination .page-numbers.next:hover {
  --set-icon-src: url(./assets/img/common/icon-arrow-one-side-white.svg);
}
.p-pagination .page-numbers.prev {
  margin-left: 0;
  margin-right: 32px;
  --set-icon-transform: translate(-50%, -60%) scaleX(-1);
}
.p-pagination .page-numbers.next {
  margin-right: 0;
  margin-left: 32px;
}
.p-pagination .page-numbers.current {
  --set-bg-color: #003965;
  --set-bdr-color: #003965;
  --set-text-color: #fff;
}
.p-pagination .page-numbers:last-child {
  margin-right: 0;
}
.p-pagination__omission {
  margin: 0 13px 0 9px;
}
.p-toc {
  overflow: hidden;
}
.p-toc__heading {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  padding: 12px 16px;
  background-color: #003965;
  border-radius: 4px 4px 0 0;
}
.p-toc__body {
  padding: 22px 38px;
  border: 2px solid #003965;
  border-top: none;
  border-radius: 0 0 4px 4px;
}
.p-toc__body.is-opened .p-toc__list {
  grid-template-rows: 1fr;
}
.p-toc__body.is-opened .p-toc__list::after {
  height: 0;
}
.p-toc__body.is-opened .p-toc__button {
  margin-top: -70px;
}
.p-toc__body.is-opened .label::after {
  transform: translateY(-25%) scaleY(-1) rotate(-45deg);
}
.p-toc__list {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
  position: relative;
}
.p-toc__list::after {
  content: "";
  display: block;
  width: 100%;
  height: 20%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
  -o-transition: 0.5s ease-out;
  -ms-transition: 0.5s ease-out;
  transition: 0.5s ease-out;
}
.p-toc__button {
  position: relative;
  text-align: center;
  margin-top: 0;
  padding: 10px 0 0;
  -webkit-transition: margin-top 0.5s ease-out;
  -moz-transition: margin-top 0.5s ease-out;
  -o-transition: margin-top 0.5s ease-out;
  -ms-transition: margin-top 0.5s ease-out;
  transition: margin-top 0.5s ease-out;
}
.p-toc-list {
  overflow: hidden;
  padding-bottom: 80px;
  counter-reset: toc-list-num;
}
.p-toc-list a {
  color: #003965;
  text-decoration: inherit;
  font-weight: 700;
}
.p-toc-list a:hover {
  opacity: 0.7;
}
.p-toc-list > li {
  counter-increment: toc-list-num;
  line-height: 1.6;
  padding: 0 0 0 1.5em;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-toc-list > li {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.p-toc-list > li:not(:first-child) {
  margin-top: 12px;
}
.p-toc-list > li::before {
  display: block;
  content: counter(toc-list-num) ".";
  color: #003965;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-toc-list > li::before {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.p-toc-list__child {
  margin-top: 8px;
}
.p-toc-list__child > li {
  line-height: 1.6;
  padding: 0 0 0 1.5em;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-toc-list__child > li {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-toc-list__child > li::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.p-share-section__heading {
  color: #003965;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
}
.p-share-link {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-share-link > li:not(:last-child) {
    margin: 0 32px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-share-link > li:not(:last-child) {
    margin: 0 16px 0 0;
  }
}
.p-share-link > li a:hover {
  opacity: 0.7;
}
.p-author-profile {
  border: 1px solid #809CB2;
  border-radius: 2px;
  padding: 24px;
}
.p-author-profile__excerpt {
  margin: 8px 0 0;
}
.p-author-profile-writer {
  display: flex;
  align-items: center;
}
.p-author-profile-writer__image {
  width: 48px;
  height: 48px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 12px 0 0;
}
.p-author-profile-writer__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-author-profile-writer__text {
  flex: 1;
}
.p-author-profile-writer__caption {
  color: #666;
  font-size: 10px;
  font-size: 1rem;
}
.p-author-profile-writer__name {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-author-profile-writer__name {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .p-author-profile-writer__name {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.p-card-insert-post {
  border: 1px solid #809CB2;
}
@media screen and (min-width: 768px) {
  .p-card-insert-post {
    display: flex;
    align-items: center;
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-insert-post {
    display: block;
    padding: 24px 18px;
  }
}
.p-card-insert-post:is(a) {
  text-decoration: none;
  color: inherit;
}
.p-card-insert-post:is(a):hover {
  opacity: 0.7;
}
.p-card-insert-post__image {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-card-insert-post__image {
    max-width: 293px;
    width: 100%;
    height: 165px;
    margin: 0 24px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-card-insert-post__image {
    margin: 0 0 24px;
  }
}
.p-card-insert-post__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-card-insert-post__image img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .p-card-insert-post__image img {
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-card-insert-post__content {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-card-insert-post__content {
    margin: 0 5px;
  }
}
.p-card-insert-post__meta {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
}
.p-card-insert-post__pubdate {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-card-insert-post__pubdate {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-card-insert-post__pubdate {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-card-insert-post__category {
    margin: 0 0 0 35px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-insert-post__category {
    margin: 0 0 0 46px;
  }
}
.p-card-insert-post__title {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-card-insert-post__title {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-card-insert-post__title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-card-insert-post__excerpt {
  margin: 8px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-event-map {
  margin-top: 8px;
}
.p-event-map-box {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-event-map-box {
    height: 220px;
  }
}
@media screen and (max-width: 767px) {
  .p-event-map-box {
    height: 180px;
  }
}
.p-event-map-box iframe {
  width: 100%;
  height: 100%;
}
.p-event-map-link {
  margin-top: 3px;
}

@media screen and (min-width: 768px) {
  .p-index-thumb-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-index-thumb-list > *:not(:last-child) {
    margin: 0 0 20px;
  }
}
.p-index-thumb-block {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-index-thumb-block {
    display: block;
    border-radius: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-index-thumb-block {
    display: flex;
    border-radius: 8px;
  }
}
.p-index-thumb-block:is(a) {
  text-decoration: none;
  color: inherit;
}
.p-index-thumb-block:is(a):hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-index-thumb-block__thumb {
    height: 240px;
  }
}
@media screen and (max-width: 767px) {
  .p-index-thumb-block__thumb {
    max-width: 140px;
    width: 100%;
  }
}
.p-index-thumb-block__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-thumb-block__caption {
  background-color: #003965;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-index-thumb-block__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-index-thumb-block__caption {
    display: flex;
    align-items: center;
    flex: 1;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 5px 5px 5px 13px;
  }
}
.p-index-thumb-block__label {
  font-weight: inherit;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-index-thumb-block__label {
    padding-right: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-index-thumb-block__label {
    padding-right: 10px;
    display: block;
    width: 100%;
    margin-right: 10px;
  }
}
.p-index-thumb-block__label::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  /*@include g.mq(sp){
    right: 10px;
  }*/
}
@media screen and (min-width: 768px) {
  .p-column-thumb-list__item:not(:last-child) {
    margin: 0 0 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-column-thumb-list__item:not(:last-child) {
    margin: 0 0 16px;
  }
}
.p-column-thumb-block {
  display: flex;
  align-items: center;
}
.p-column-thumb-block:is(a) {
  color: inherit;
  text-decoration: none;
}
.p-column-thumb-block:is(a):hover {
  opacity: 0.7;
}
.p-column-thumb-block__thumb {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-column-thumb-block__thumb {
    max-width: 300px;
    height: 169px;
    border-radius: 8px;
    margin: 0 36px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-column-thumb-block__thumb {
    max-width: 177px;
    height: 100px;
    border-radius: 4px;
  }
}
.p-column-thumb-block__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-column-thumb-block__content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-column-thumb-block__content {
    padding: 11px 0 11px 16px;
  }
}
.p-column-thumb-block__meta {
  margin: 0 0 16px;
}
@media screen and (max-width: 767px) {
  .p-column-thumb-block__meta {
    margin: 0 0 8px;
  }
}
.p-column-thumb-block__pubtime {
  border: 1px solid #003965;
  border-radius: 4px;
  color: #003965;
  font-weight: 700;
  font-family: "Lexend", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-column-thumb-block__pubtime {
    padding: 6px 16px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-column-thumb-block__pubtime {
    padding: 4px 8px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-column-thumb-block__heading {
  font-weight: 700;
  color: #003965;
}
@media screen and (min-width: 768px) {
  .p-column-thumb-block__heading {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .p-column-thumb-block__heading {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.p-column-thumb-block__excerpt {
  margin: 8px 0 0;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-column-thumb-block__excerpt {
    display: none;
  }
}
.p-faq-list {
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-faq-list > li:not(:last-child) {
    margin: 0 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-list > li:not(:last-child) {
    margin: 0 0 40px;
  }
}
.p-faq-block {
  --set-bg-color: #fff;
  background-color: var(--set-bg-color, transparent);
  border: 1px solid #fff;
  border-radius: 8px;
  overflow: hidden;
}
.p-faq-block__icon {
  position: absolute;
  left: 24px;
  border-radius: 4px;
  display: block;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-faq-block__icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-block__icon {
    width: 40px;
    height: 40px;
  }
}
.p-faq-block__icon::after {
  content: "";
  display: block;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Lexend", sans-serif;
  font-size: 24px;
  font-size: 2.4rem;
}
.p-faq-block__icon-toggle {
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--set-icon-toggle-bg-color, #003965);
  border-radius: 100%;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-faq-block__icon-toggle::before, .p-faq-block__icon-toggle::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--set-icon-toggle-color, #fff);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-faq-block__icon-toggle::before {
  transform: translate(-50%, -50%);
}
.p-faq-block__icon-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transform-origin: center;
}
.p-faq-block__icon--quest {
  background-color: var(--set-icon-quest-bg-color, #003965);
  color: var(--set-icon-quest-text-color, #fff);
}
.p-faq-block__icon--quest::after {
  content: "Q";
}
.p-faq-block__icon--answer {
  background-color: var(--set-icon-quest-bg-color, #0086C5);
  color: var(--set-icon-ans-text-color, #fff);
}
.p-faq-block__icon--answer::after {
  content: "A";
}
.p-faq-block__quest, .p-faq-block__answer {
  position: relative;
}
.p-faq-block__quest-inner, .p-faq-block__answer-inner {
  margin: 0 24px;
}
@media screen and (min-width: 768px) {
  .p-faq-block__quest-inner, .p-faq-block__answer-inner {
    padding: 5px 56px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-block__quest-inner, .p-faq-block__answer-inner {
    padding: 4px 48px;
  }
}
.p-faq-block__quest p:first-of-type, .p-faq-block__answer p:first-of-type {
  padding-top: 4px;
}
.p-faq-block__quest p + p, .p-faq-block__answer p + p {
  margin-top: 1em;
}
.p-faq-block__quest {
  cursor: pointer;
  background-color: var(--set-quest-bg-color);
  color: var(--set-quest-text-color, #333);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-faq-block__quest {
    padding: 10px 0;
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-block__quest {
    padding: 10px 0;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-faq-block__quest-inner > p {
  font-weight: 700;
}
.p-faq-block__quest.is-opened {
  --set-quest-bg-color: #003965;
  --set-quest-text-color: #fff;
  --set-icon-quest-bg-color: #fff;
  --set-icon-quest-text-color: #003965;
  --set-icon-toggle-bg-color: #fff;
  --set-icon-toggle-color: #003965;
}
.p-faq-block__quest.is-opened .p-faq-block__icon-toggle {
  transform: translateY(-50%) rotate(360deg);
}
.p-faq-block__quest.is-opened .p-faq-block__icon-toggle::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.p-faq-block__quest.is-opened + .p-faq-block__answer {
  grid-template-rows: 1fr;
}
.p-faq-block__answer {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-faq-block__answer-inner {
    padding-top: 16px;
    padding-bottom: 21px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-block__answer-inner {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-faq-block__answer-inner > p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.p-faq-block__answer a {
  font-weight: 700;
}
.p-faq-block__accordion {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-relation-card-container {
    position: relative;
    padding-bottom: 72px;
  }
}
@media screen and (min-width: 768px) {
  .p-card-relation-list:not(.swiper-wrapper), .p-card-event-list:not(.swiper-wrapper) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-card-relation-list.swiper-wrapper, .p-card-event-list.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--set-list-gap, 0 50px);
  }
}
.p-card-relation-list__nav, .p-card-event-list__nav {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-card-relation-list__nav, .p-card-event-list__nav {
    display: none;
  }
}
.p-card-relation-block:is(a), .p-card-event-block:is(a) {
  color: inherit;
  text-decoration: none;
}
.p-card-relation-block:is(a):hover, .p-card-event-block:is(a):hover {
  opacity: 0.7;
}
.p-card-relation-block__image, .p-card-event-block__image {
  border-radius: 4px;
  border: 1px solid var(--set-img-bdr-color, #003965);
  overflow: hidden;
  margin: 0 0 16px;
  /*
  @include g.mq(pc){
    height: 169px;
  }
  @include g.mq(sp){
    height: 156px;
  }
  */
}
.p-card-relation-block__image img, .p-card-event-block__image img {
  width: calc(100% + 2px);
  height: auto;
  margin: -1px;
  /*
  @include g.mq(pc){
    height: calc(100% + 2px);
    object-fit: cover;
  }
  @include g.mq(sp){
    height: auto;
  }
  */
}
.p-card-relation-block__content, .p-card-event-block__content {
  margin: var(--set-content-space, 0 10px);
}
.p-card-relation-block__heading, .p-card-event-block__heading {
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-card-relation-block__heading, .p-card-event-block__heading {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-card-relation-block__heading, .p-card-event-block__heading {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-card-relation-block__new, .p-card-event-block__new {
    margin: 0 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-relation-block__new, .p-card-event-block__new {
    margin: 0 0 14px;
  }
}
.p-card-relation-block__figure, .p-card-event-block__figure {
  font-weight: 700;
  line-height: 1.7;
  margin: 10px 0 0;
  padding: 10px 0;
  position: relative;
  color: var(--set-text-color, #003965);
}
@media screen and (min-width: 768px) {
  .p-card-relation-block__figure, .p-card-event-block__figure {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-card-relation-block__figure, .p-card-event-block__figure {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.p-card-relation-block__figure::before, .p-card-relation-block__figure::after, .p-card-event-block__figure::before, .p-card-event-block__figure::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: repeat-x 0 0;
  background-image: var(--set-bg-src, url(./assets/img/common/bg-line-dash-navy.svg));
  position: absolute;
  left: 0;
}
.p-card-relation-block__figure::before, .p-card-event-block__figure::before {
  top: 0;
}
.p-card-relation-block__figure::after, .p-card-event-block__figure::after {
  bottom: 0;
}
.p-card-relation-block__excerpt, .p-card-event-block__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0 0;
}
@media screen and (min-width: 768px) {
  .p-card-relation-block__excerpt, .p-card-event-block__excerpt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-card-relation-block__excerpt, .p-card-event-block__excerpt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.p-card-relation-block--reverse-color, .p-card-event-block--reverse-color {
  --set-bg-src: url(./assets/img/common/bg-line-dash-white.svg);
  --set-text-color: #fff;
  --set-img-bdr-color: #fff;
}
.p-card-relation-block--relation, .p-card-event-block--relation {
  --set-img-height: 110px;
  --set-content-space: 0;
}
.p-card-relation-block--pickup, .p-card-event-block--pickup {
  --set-img-bdr-color: #003965;
}
@media screen and (min-width: 768px) {
  .p-card-relation-block--pickup, .p-card-event-block--pickup {
    display: flex;
    align-items: center;
  }
}
.p-card-relation-block--pickup .p-card-relation-block__image, .p-card-relation-block--pickup .p-card-event-block__image, .p-card-event-block--pickup .p-card-relation-block__image, .p-card-event-block--pickup .p-card-event-block__image {
  border-color: #0086C5;
  border-radius: 16px;
}
@media screen and (min-width: 768px) {
  .p-card-relation-block--pickup .p-card-relation-block__image, .p-card-relation-block--pickup .p-card-event-block__image, .p-card-event-block--pickup .p-card-relation-block__image, .p-card-event-block--pickup .p-card-event-block__image {
    max-width: 676px;
    width: 100%;
    margin: 0 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-card-relation-block--pickup .p-card-relation-block__image, .p-card-relation-block--pickup .p-card-event-block__image, .p-card-event-block--pickup .p-card-relation-block__image, .p-card-event-block--pickup .p-card-event-block__image {
    margin: 0 -20px 24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}
@media screen and (min-width: 768px) {
  .p-card-relation-block--pickup .p-card-relation-block__content, .p-card-relation-block--pickup .p-card-event-block__content, .p-card-event-block--pickup .p-card-relation-block__content, .p-card-event-block--pickup .p-card-event-block__content {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-card-relation-block--pickup .p-card-relation-block__content, .p-card-relation-block--pickup .p-card-event-block__content, .p-card-event-block--pickup .p-card-relation-block__content, .p-card-event-block--pickup .p-card-event-block__content {
    margin: 0;
  }
}
.p-card-relation-block--pickup .p-card-relation-block__new, .p-card-relation-block--pickup .p-card-event-block__new, .p-card-event-block--pickup .p-card-relation-block__new, .p-card-event-block--pickup .p-card-event-block__new {
  margin: 0 0 24px;
}
.p-card-relation-list {
  --set-list-gap: 0 32px;
}
@media screen and (min-width: 768px) {
  .p-grid-card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-grid-card-list > * {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
  }
  .p-grid-card-list > *:nth-child(n+3) {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-grid-card-list > *:not(:last-child) {
    margin: 0 0 40px;
  }
}
.p-grid-card-block {
  padding: 0 0 16px;
}
.p-grid-card-block__image {
  overflow: hidden;
  border-radius: 8px;
  height: 259px;
  margin: 0 0 16px;
}
.p-grid-card-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-grid-card-block__heading, .p-grid-card-block__excerpt {
  margin: 0 16px;
}
.p-grid-card-block__heading {
  color: #003965;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-grid-card-block__heading {
    padding: 0 0 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-grid-card-block__heading {
    padding: 0 0 10px;
  }
}
.p-grid-card-block__heading::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 4px;
  background-color: #0086C5;
}
.p-grid-card-block__heading + .p-grid-card-block__excerpt {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-grid-card-block__heading + .p-grid-card-block__excerpt {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .p-grid-card-block__excerpt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .p-grid-card-compact-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-grid-card-compact-list > * {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
  }
}
.p-grid-card-compact-list > *:not(:last-child) {
  margin: 0 0 50px;
}
.p-grid-card-compact-block__image {
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .p-grid-card-compact-block__image {
    height: 300px;
    margin: 0 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-grid-card-compact-block__image {
    max-width: 200px;
    width: 100%;
    margin: 0 auto 24px;
  }
}
.p-grid-card-compact-block__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-grid-card-compact-block__image img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .p-grid-card-compact-block__image img {
    height: auto;
  }
}
.p-grid-card-compact-block__heading {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}
.p-grid-card-compact-block__heading + .p-grid-card-compact-block__excerpt {
  margin-top: 16px;
}
.p-flow-list {
  counter-reset: flow-num;
}
.p-flow-list__item {
  counter-increment: flow-num;
}
.p-flow-list__item:not(:last-child) {
  position: relative;
  padding: 0 0 58px;
  margin: 0 0 40px;
}
.p-flow-list__item:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 18px;
  border-color: #003965 transparent transparent transparent;
}
@media screen and (min-width: 768px) {
  .p-flow-list__item:not(:last-child)::after {
    left: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow-list__item:not(:last-child)::after {
    left: 50%;
  }
}
@media screen and (min-width: 768px) {
  .p-flow-block {
    display: flex;
    align-items: center;
  }
}
.p-flow-block__image {
  width: 100%;
  overflow: hidden;
  border-radius: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow-block__image {
    max-width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow-block__image {
    max-width: 160px;
    height: 160px;
    margin: 0 auto 24px;
  }
}
.p-flow-block__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-flow-block__content {
    flex: 1;
    margin: 0 0 0 40px;
  }
}
.p-flow-block__heading {
  font-weight: 700;
  line-height: 1.7;
  position: relative;
  color: #003965;
}
@media screen and (min-width: 768px) {
  .p-flow-block__heading {
    font-size: 22px;
    font-size: 2.2rem;
    padding: 0 0 0 2.5em;
  }
}
@media screen and (max-width: 767px) {
  .p-flow-block__heading {
    font-size: 20px;
    font-size: 2rem;
    text-align: center;
  }
}
.p-flow-block__heading::before {
  content: counter(flow-num, decimal-leading-zero) ".";
  font-family: "Lexend", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-flow-block__heading::before {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 30px;
    font-size: 3rem;
    padding: 5px 0 0;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-flow-block__heading::before {
    font-size: 24px;
    font-size: 2.4rem;
    margin-right: 0.25em;
  }
}
@media screen and (min-width: 768px) {
  .p-flow-block__text {
    margin: 24px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-flow-block__text {
    margin: 16px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .p-card-accordion-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-accordion-list > *:not(:last-child) {
    margin: 0 0 40px;
  }
}
.p-card-accordion-block {
  display: block;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 16px 0 rgba(0, 57, 101, 0.3);
}
@media screen and (min-width: 768px) {
  .p-card-accordion-block {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-accordion-block {
    padding: 16px;
  }
}
.p-card-accordion-block__image {
  width: 100%;
  overflow: hidden;
  border-radius: 100%;
}
@media screen and (min-width: 768px) {
  .p-card-accordion-block__image {
    margin: 0 auto 40px;
    max-width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-accordion-block__image {
    margin: 0 auto 24px;
    max-width: 160px;
    height: 160px;
  }
}
.p-card-accordion-block__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-card-accordion-block__name {
  font-weight: 700;
  color: #003965;
  line-height: 1.7;
  text-align: center;
  margin: 0 0 16px;
}
@media screen and (min-width: 768px) {
  .p-card-accordion-block__name {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-card-accordion-block__name {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-card-accordion-block__excerpt {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-card-accordion-block__excerpt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-card-accordion-block__arrow {
  width: 30px;
  height: 30px;
  position: relative;
  border-radius: 100%;
  background-color: var(--set-icon-bg-color, transparent);
  transform: var(--set-icon-transform);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-card-accordion-block__arrow {
    margin: 16px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-card-accordion-block__arrow {
    margin: 8px auto 0;
  }
}
.p-card-accordion-block__arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-right: 2px solid var(--set-icon-color, #003965);
  border-bottom: 2px solid var(--set-icon-color, #003965);
  transform: translate(-50%, -75%) rotate(45deg);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.p-card-accordion-block__detail {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-card-accordion-block__detail {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-card-accordion-block__detail-inner {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-card-accordion-block__detail p {
    padding-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-accordion-block__detail p {
    padding-top: 8px;
  }
}
.p-card-accordion-block__detail p + p {
  padding-top: 1em;
}
.p-card-accordion-block.js-accordion {
  cursor: pointer;
}
.p-card-accordion-block:hover {
  --set-icon-bg-color: #003965;
  --set-icon-color: #fff;
}
.p-card-accordion-block.is-opened {
  --set-icon-transform: scale(-1, -1);
}
.p-card-accordion-block.is-opened .p-card-accordion-block__detail {
  grid-template-rows: 1fr;
}
.p-bullet-points-list > li {
  position: relative;
  padding-left: 1em;
}
.p-bullet-points-list > li::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-size: inherit;
  font-weight: inherit;
}
.p-numbering-list {
  counter-reset: num-list;
}
.p-numbering-list > li {
  counter-increment: num-list;
  position: relative;
  padding-left: 1.5em;
}
.p-numbering-list > li::before {
  content: counter(num-list) ".";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  font-size: inherit;
  font-weight: inherit;
}

.p-figure-list__row {
  display: flex;
}
.p-figure-list__row > dt,
.p-figure-list__row > dd {
  font-weight: 700;
}
.p-figure-list__row > dt::after {
  content: "：";
  display: inline-block;
}
.p-figure-list__row > dd {
  flex: 1;
}
.p-figure-list__row time {
  font-family: "Lexend", sans-serif;
}
.p-flex-table {
  border-top: 1px solid #666;
}
@media screen and (min-width: 768px) {
  .p-flex-table__row {
    display: flex;
    border-bottom: 1px solid #666;
  }
}
@media screen and (max-width: 767px) {
  .p-flex-table__row:not(:last-child) {
    border-bottom: 1px solid #666;
  }
}
@media screen and (min-width: 768px) {
  .p-flex-table__cell {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-flex-table__cell {
    padding: 10px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-flex-table__cell:not(.p-flex-table__cell--head) {
    flex: 1;
  }
}
.p-flex-table__cell--head {
  background-color: #F3F3F3;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-flex-table__cell--head {
    max-width: 160px;
    width: 100%;
  }
}
.p-article-event-outline {
  color: var(--set-text-color, #003965);
  line-height: 1.6;
}
.p-article-event-outline__row {
  display: flex;
}
.p-article-event-outline__cell {
  font-weight: 700;
}
.p-article-event-outline__cell:not(.p-article-event-outline__cell--head) {
  flex: 1;
}
.p-article-event-outline__cell--head::after {
  content: "：";
  font: inherit;
  display: inline;
}

.p-form-description {
  margin: 0 0 40px;
}
.p-form-description__heading {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 16px;
}
@media screen and (min-width: 768px) {
  .p-form-format__row:not(:last-child) {
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-form-format__row:not(:last-child) {
    margin: 0 0 32px;
  }
}
.p-form-format__row--2cols {
  display: flex;
}
.p-form-format__cell--head {
  margin: 0 0 8px;
  font-weight: 700;
}
.p-form-format__cell--head > i {
  margin-left: 8px;
}
.p-form-format-footer {
  margin: 40px 0 0;
}
.p-form-format-footer__agreement {
  margin: 0 0 40px;
  text-align: center;
}
.p-form-format-footer__text + .p-form-format-footer__text {
  margin-top: 1em;
}
.p-form-format-footer__btn {
  display: flex;
  justify-content: center;
}
.p-form-format-footer__btn > *:not(:last-child) {
  margin: 0 24px 0 0;
}
@media screen and (max-width: 767px) {
  .p-form-format-footer__btn > *:not(:last-child) {
    margin: 0 16px 0 0;
  }
}
.p-form-complete__title {
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-form-complete__title {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-form-complete__title {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-form-complete__heading {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-form-complete__heading {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 0 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-form-complete__heading {
    margin: 0 0 28px;
  }
}
.p-form-complete__exp + .p-form-complete__exp {
  margin-top: 24px;
}
.p-form-complete__exp--caution {
  color: #F44336;
  font-size: 14px;
  font-size: 1.4rem;
}
.p-form-complete__button {
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .p-form-complete__button {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-form-complete__button {
    padding: 20px 0 0;
  }
}

/* formrunのパーツ
--------------------------*/
#g-recaptcha {
  display: flex;
  justify-content: center;
}

._formrun_gotcha {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .u-pc-b {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .u-pc-inb {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .u-pc-in {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  .u-pc-b, .u-pc-inb, .u-pc-in {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-sp-b, .u-sp-inb, .u-sp-in {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-b {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-inb {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-in {
    display: inline;
  }
}
.u-align-left {
  text-align: left;
}
.u-align-center {
  text-align: center;
}
.u-align-right {
  text-align: right;
}
.u-font-family-eng {
  font-family: "Lexend", sans-serif;
}
.u-font-wgt-bold {
  font-weight: 700;
}
.u-overflow-hidden {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .wp-custom-editor-post * + *:not([class^=p-], [class^=c-], [class^=wp-], li, h1, h2, h3, h4, h5, h6),
  .wp-custom-editor-tribe_events * + *:not([class^=p-], [class^=c-], [class^=wp-], li, h1, h2, h3, h4, h5, h6),
  .post-type-post * + *:not([class^=p-], [class^=c-], [class^=wp-], li, h1, h2, h3, h4, h5, h6),
  .post-type-tribe_events * + *:not([class^=p-], [class^=c-], [class^=wp-], li, h1, h2, h3, h4, h5, h6) {
    margin: 12px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post * + *:not([class^=p-], [class^=c-], [class^=wp-], li, h1, h2, h3, h4, h5, h6),
  .wp-custom-editor-tribe_events * + *:not([class^=p-], [class^=c-], [class^=wp-], li, h1, h2, h3, h4, h5, h6),
  .post-type-post * + *:not([class^=p-], [class^=c-], [class^=wp-], li, h1, h2, h3, h4, h5, h6),
  .post-type-tribe_events * + *:not([class^=p-], [class^=c-], [class^=wp-], li, h1, h2, h3, h4, h5, h6) {
    margin: 12px 0 0;
  }
}
.wp-custom-editor-post * + *[class^=custom-],
.wp-custom-editor-tribe_events * + *[class^=custom-],
.post-type-post * + *[class^=custom-],
.post-type-tribe_events * + *[class^=custom-] {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post * + *[class^=custom-]:not(.custom-toc),
  .wp-custom-editor-tribe_events * + *[class^=custom-]:not(.custom-toc),
  .post-type-post * + *[class^=custom-]:not(.custom-toc),
  .post-type-tribe_events * + *[class^=custom-]:not(.custom-toc) {
    margin-top: 32px;
  }
}
.wp-custom-editor-post *:first-child,
.wp-custom-editor-tribe_events *:first-child,
.post-type-post *:first-child,
.post-type-tribe_events *:first-child {
  margin-top: 0;
}
.wp-custom-editor-post img,
.wp-custom-editor-tribe_events img,
.post-type-post img,
.post-type-tribe_events img {
  height: auto;
}
@media screen and (min-width: 768px) {
  .wp-custom-editor-post img,
  .wp-custom-editor-tribe_events img,
  .post-type-post img,
  .post-type-tribe_events img {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post img,
  .wp-custom-editor-tribe_events img,
  .post-type-post img,
  .post-type-tribe_events img {
    width: 100%;
  }
}
.wp-custom-editor-post ul:not([class^=p-], [class^=c-], [class^=custom-]), .wp-custom-editor-post ol:not([class^=p-], [class^=c-], [class^=custom-]),
.wp-custom-editor-tribe_events ul:not([class^=p-], [class^=c-], [class^=custom-]),
.wp-custom-editor-tribe_events ol:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-post ul:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-post ol:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-tribe_events ul:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-tribe_events ol:not([class^=p-], [class^=c-], [class^=custom-]) {
  list-style: revert;
  padding: revert;
}
.wp-custom-editor-post ul:not([class^=p-], [class^=c-], [class^=custom-]) > li:not(:first-child), .wp-custom-editor-post ol:not([class^=p-], [class^=c-], [class^=custom-]) > li:not(:first-child),
.wp-custom-editor-tribe_events ul:not([class^=p-], [class^=c-], [class^=custom-]) > li:not(:first-child),
.wp-custom-editor-tribe_events ol:not([class^=p-], [class^=c-], [class^=custom-]) > li:not(:first-child),
.post-type-post ul:not([class^=p-], [class^=c-], [class^=custom-]) > li:not(:first-child),
.post-type-post ol:not([class^=p-], [class^=c-], [class^=custom-]) > li:not(:first-child),
.post-type-tribe_events ul:not([class^=p-], [class^=c-], [class^=custom-]) > li:not(:first-child),
.post-type-tribe_events ol:not([class^=p-], [class^=c-], [class^=custom-]) > li:not(:first-child) {
  margin: 2px 0 0;
}
.wp-custom-editor-post ul:not([class^=p-], [class^=c-], [class^=custom-]) > li > ul,
.wp-custom-editor-post ul:not([class^=p-], [class^=c-], [class^=custom-]) > li > ol, .wp-custom-editor-post ol:not([class^=p-], [class^=c-], [class^=custom-]) > li > ul,
.wp-custom-editor-post ol:not([class^=p-], [class^=c-], [class^=custom-]) > li > ol,
.wp-custom-editor-tribe_events ul:not([class^=p-], [class^=c-], [class^=custom-]) > li > ul,
.wp-custom-editor-tribe_events ul:not([class^=p-], [class^=c-], [class^=custom-]) > li > ol,
.wp-custom-editor-tribe_events ol:not([class^=p-], [class^=c-], [class^=custom-]) > li > ul,
.wp-custom-editor-tribe_events ol:not([class^=p-], [class^=c-], [class^=custom-]) > li > ol,
.post-type-post ul:not([class^=p-], [class^=c-], [class^=custom-]) > li > ul,
.post-type-post ul:not([class^=p-], [class^=c-], [class^=custom-]) > li > ol,
.post-type-post ol:not([class^=p-], [class^=c-], [class^=custom-]) > li > ul,
.post-type-post ol:not([class^=p-], [class^=c-], [class^=custom-]) > li > ol,
.post-type-tribe_events ul:not([class^=p-], [class^=c-], [class^=custom-]) > li > ul,
.post-type-tribe_events ul:not([class^=p-], [class^=c-], [class^=custom-]) > li > ol,
.post-type-tribe_events ol:not([class^=p-], [class^=c-], [class^=custom-]) > li > ul,
.post-type-tribe_events ol:not([class^=p-], [class^=c-], [class^=custom-]) > li > ol {
  margin: 2px 0 0;
}
.wp-custom-editor-post blockquote,
.wp-custom-editor-tribe_events blockquote,
.post-type-post blockquote,
.post-type-tribe_events blockquote {
  border-radius: 6px;
  background-color: #F3F3F3;
  padding: 16px;
}
.wp-custom-editor-post blockquote > cite,
.wp-custom-editor-tribe_events blockquote > cite,
.post-type-post blockquote > cite,
.post-type-tribe_events blockquote > cite {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}
.wp-custom-editor-post h2, .wp-custom-editor-post h3, .wp-custom-editor-post h4, .wp-custom-editor-post h5, .wp-custom-editor-post h6,
.wp-custom-editor-tribe_events h2,
.wp-custom-editor-tribe_events h3,
.wp-custom-editor-tribe_events h4,
.wp-custom-editor-tribe_events h5,
.wp-custom-editor-tribe_events h6,
.post-type-post h2,
.post-type-post h3,
.post-type-post h4,
.post-type-post h5,
.post-type-post h6,
.post-type-tribe_events h2,
.post-type-tribe_events h3,
.post-type-tribe_events h4,
.post-type-tribe_events h5,
.post-type-tribe_events h6 {
  clear: both;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .wp-custom-editor-post h2, .wp-custom-editor-post h3, .wp-custom-editor-post h4, .wp-custom-editor-post h5, .wp-custom-editor-post h6,
  .wp-custom-editor-tribe_events h2,
  .wp-custom-editor-tribe_events h3,
  .wp-custom-editor-tribe_events h4,
  .wp-custom-editor-tribe_events h5,
  .wp-custom-editor-tribe_events h6,
  .post-type-post h2,
  .post-type-post h3,
  .post-type-post h4,
  .post-type-post h5,
  .post-type-post h6,
  .post-type-tribe_events h2,
  .post-type-tribe_events h3,
  .post-type-tribe_events h4,
  .post-type-tribe_events h5,
  .post-type-tribe_events h6 {
    margin: 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post h2, .wp-custom-editor-post h3, .wp-custom-editor-post h4, .wp-custom-editor-post h5, .wp-custom-editor-post h6,
  .wp-custom-editor-tribe_events h2,
  .wp-custom-editor-tribe_events h3,
  .wp-custom-editor-tribe_events h4,
  .wp-custom-editor-tribe_events h5,
  .wp-custom-editor-tribe_events h6,
  .post-type-post h2,
  .post-type-post h3,
  .post-type-post h4,
  .post-type-post h5,
  .post-type-post h6,
  .post-type-tribe_events h2,
  .post-type-tribe_events h3,
  .post-type-tribe_events h4,
  .post-type-tribe_events h5,
  .post-type-tribe_events h6 {
    margin: 40px 0 0;
  }
}
.wp-custom-editor-post h2 + h2,
.wp-custom-editor-post h2 + h3,
.wp-custom-editor-post h2 + h4,
.wp-custom-editor-post h2 + h5,
.wp-custom-editor-post h2 + h6, .wp-custom-editor-post h3 + h2,
.wp-custom-editor-post h3 + h3,
.wp-custom-editor-post h3 + h4,
.wp-custom-editor-post h3 + h5,
.wp-custom-editor-post h3 + h6, .wp-custom-editor-post h4 + h2,
.wp-custom-editor-post h4 + h3,
.wp-custom-editor-post h4 + h4,
.wp-custom-editor-post h4 + h5,
.wp-custom-editor-post h4 + h6, .wp-custom-editor-post h5 + h2,
.wp-custom-editor-post h5 + h3,
.wp-custom-editor-post h5 + h4,
.wp-custom-editor-post h5 + h5,
.wp-custom-editor-post h5 + h6, .wp-custom-editor-post h6 + h2,
.wp-custom-editor-post h6 + h3,
.wp-custom-editor-post h6 + h4,
.wp-custom-editor-post h6 + h5,
.wp-custom-editor-post h6 + h6,
.wp-custom-editor-tribe_events h2 + h2,
.wp-custom-editor-tribe_events h2 + h3,
.wp-custom-editor-tribe_events h2 + h4,
.wp-custom-editor-tribe_events h2 + h5,
.wp-custom-editor-tribe_events h2 + h6,
.wp-custom-editor-tribe_events h3 + h2,
.wp-custom-editor-tribe_events h3 + h3,
.wp-custom-editor-tribe_events h3 + h4,
.wp-custom-editor-tribe_events h3 + h5,
.wp-custom-editor-tribe_events h3 + h6,
.wp-custom-editor-tribe_events h4 + h2,
.wp-custom-editor-tribe_events h4 + h3,
.wp-custom-editor-tribe_events h4 + h4,
.wp-custom-editor-tribe_events h4 + h5,
.wp-custom-editor-tribe_events h4 + h6,
.wp-custom-editor-tribe_events h5 + h2,
.wp-custom-editor-tribe_events h5 + h3,
.wp-custom-editor-tribe_events h5 + h4,
.wp-custom-editor-tribe_events h5 + h5,
.wp-custom-editor-tribe_events h5 + h6,
.wp-custom-editor-tribe_events h6 + h2,
.wp-custom-editor-tribe_events h6 + h3,
.wp-custom-editor-tribe_events h6 + h4,
.wp-custom-editor-tribe_events h6 + h5,
.wp-custom-editor-tribe_events h6 + h6,
.post-type-post h2 + h2,
.post-type-post h2 + h3,
.post-type-post h2 + h4,
.post-type-post h2 + h5,
.post-type-post h2 + h6,
.post-type-post h3 + h2,
.post-type-post h3 + h3,
.post-type-post h3 + h4,
.post-type-post h3 + h5,
.post-type-post h3 + h6,
.post-type-post h4 + h2,
.post-type-post h4 + h3,
.post-type-post h4 + h4,
.post-type-post h4 + h5,
.post-type-post h4 + h6,
.post-type-post h5 + h2,
.post-type-post h5 + h3,
.post-type-post h5 + h4,
.post-type-post h5 + h5,
.post-type-post h5 + h6,
.post-type-post h6 + h2,
.post-type-post h6 + h3,
.post-type-post h6 + h4,
.post-type-post h6 + h5,
.post-type-post h6 + h6,
.post-type-tribe_events h2 + h2,
.post-type-tribe_events h2 + h3,
.post-type-tribe_events h2 + h4,
.post-type-tribe_events h2 + h5,
.post-type-tribe_events h2 + h6,
.post-type-tribe_events h3 + h2,
.post-type-tribe_events h3 + h3,
.post-type-tribe_events h3 + h4,
.post-type-tribe_events h3 + h5,
.post-type-tribe_events h3 + h6,
.post-type-tribe_events h4 + h2,
.post-type-tribe_events h4 + h3,
.post-type-tribe_events h4 + h4,
.post-type-tribe_events h4 + h5,
.post-type-tribe_events h4 + h6,
.post-type-tribe_events h5 + h2,
.post-type-tribe_events h5 + h3,
.post-type-tribe_events h5 + h4,
.post-type-tribe_events h5 + h5,
.post-type-tribe_events h5 + h6,
.post-type-tribe_events h6 + h2,
.post-type-tribe_events h6 + h3,
.post-type-tribe_events h6 + h4,
.post-type-tribe_events h6 + h5,
.post-type-tribe_events h6 + h6 {
  margin-top: 20px;
}
.wp-custom-editor-post h2 + *:not([class^=p-], [class^=c-], [class^=custom-]), .wp-custom-editor-post h3 + *:not([class^=p-], [class^=c-], [class^=custom-]), .wp-custom-editor-post h4 + *:not([class^=p-], [class^=c-], [class^=custom-]), .wp-custom-editor-post h5 + *:not([class^=p-], [class^=c-], [class^=custom-]), .wp-custom-editor-post h6 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.wp-custom-editor-tribe_events h2 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.wp-custom-editor-tribe_events h3 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.wp-custom-editor-tribe_events h4 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.wp-custom-editor-tribe_events h5 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.wp-custom-editor-tribe_events h6 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-post h2 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-post h3 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-post h4 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-post h5 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-post h6 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-tribe_events h2 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-tribe_events h3 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-tribe_events h4 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-tribe_events h5 + *:not([class^=p-], [class^=c-], [class^=custom-]),
.post-type-tribe_events h6 + *:not([class^=p-], [class^=c-], [class^=custom-]) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .wp-custom-editor-post h2 + *:not([class^=p-], [class^=c-]),
  .wp-custom-editor-tribe_events h2 + *:not([class^=p-], [class^=c-]),
  .post-type-post h2 + *:not([class^=p-], [class^=c-]),
  .post-type-tribe_events h2 + *:not([class^=p-], [class^=c-]) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post h2 + *:not([class^=p-], [class^=c-]),
  .wp-custom-editor-tribe_events h2 + *:not([class^=p-], [class^=c-]),
  .post-type-post h2 + *:not([class^=p-], [class^=c-]),
  .post-type-tribe_events h2 + *:not([class^=p-], [class^=c-]) {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .wp-custom-editor-post h3 + *:not([class^=p-], [class^=c-]),
  .wp-custom-editor-tribe_events h3 + *:not([class^=p-], [class^=c-]),
  .post-type-post h3 + *:not([class^=p-], [class^=c-]),
  .post-type-tribe_events h3 + *:not([class^=p-], [class^=c-]) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post h3 + *:not([class^=p-], [class^=c-]),
  .wp-custom-editor-tribe_events h3 + *:not([class^=p-], [class^=c-]),
  .post-type-post h3 + *:not([class^=p-], [class^=c-]),
  .post-type-tribe_events h3 + *:not([class^=p-], [class^=c-]) {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .wp-custom-editor-post h4 + *:not([class^=p-], [class^=c-]),
  .wp-custom-editor-tribe_events h4 + *:not([class^=p-], [class^=c-]),
  .post-type-post h4 + *:not([class^=p-], [class^=c-]),
  .post-type-tribe_events h4 + *:not([class^=p-], [class^=c-]) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post h4 + *:not([class^=p-], [class^=c-]),
  .wp-custom-editor-tribe_events h4 + *:not([class^=p-], [class^=c-]),
  .post-type-post h4 + *:not([class^=p-], [class^=c-]),
  .post-type-tribe_events h4 + *:not([class^=p-], [class^=c-]) {
    margin-top: 10px;
  }
}
.wp-custom-editor-post a,
.wp-custom-editor-tribe_events a,
.post-type-post a,
.post-type-tribe_events a {
  font-weight: 700;
}
.wp-custom-editor-post strong, .wp-custom-editor-post em,
.wp-custom-editor-tribe_events strong,
.wp-custom-editor-tribe_events em,
.post-type-post strong,
.post-type-post em,
.post-type-tribe_events strong,
.post-type-tribe_events em {
  font-weight: revert;
}
.wp-custom-editor-post .wp-block-image .aligncenter .wp-element-caption,
.wp-custom-editor-tribe_events .wp-block-image .aligncenter .wp-element-caption,
.post-type-post .wp-block-image .aligncenter .wp-element-caption,
.post-type-tribe_events .wp-block-image .aligncenter .wp-element-caption {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post .wp-caption.aligncenter,
  .wp-custom-editor-tribe_events .wp-caption.aligncenter,
  .post-type-post .wp-caption.aligncenter,
  .post-type-tribe_events .wp-caption.aligncenter {
    width: auto !important;
  }
}
.wp-custom-editor-post .wp-caption img,
.wp-custom-editor-tribe_events .wp-caption img,
.post-type-post .wp-caption img,
.post-type-tribe_events .wp-caption img {
  width: 100%;
  height: auto;
}
.wp-custom-editor-post .wp-caption-text,
.wp-custom-editor-tribe_events .wp-caption-text,
.post-type-post .wp-caption-text,
.post-type-tribe_events .wp-caption-text {
  font-size: 12px;
  font-size: 1.2rem;
}

.wp-custom-editor-post .aligncenter,
.wp-custom-editor-tribe_events .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .wp-custom-editor-post .alignleft,
  .wp-custom-editor-tribe_events .alignleft {
    float: left;
    margin: 0 1em 1em 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post .alignleft,
  .wp-custom-editor-tribe_events .alignleft {
    margin: 0 0 12px;
  }
}
@media screen and (min-width: 768px) {
  .wp-custom-editor-post .alignright,
  .wp-custom-editor-tribe_events .alignright {
    float: right;
    margin: 0 0 1em 1em;
  }
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post .alignright,
  .wp-custom-editor-tribe_events .alignright {
    margin: 0 0 12px;
  }
}

@media screen and (max-width: 767px) {
  .wp-custom-editor-post,
  .post-type-post,
  .wp-custom-editor-tribe_events,
  .post-type-tribe_events {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.wp-custom-editor-post h2,
.post-type-post h2,
.wp-custom-editor-tribe_events h2,
.post-type-tribe_events h2 {
  display: block;
  background-color: #CCD7E0;
  position: relative;
  padding: 18px 8px 20px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7;
  border-top: 4px solid #003965;
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post h2,
  .post-type-post h2,
  .wp-custom-editor-tribe_events h2,
  .post-type-tribe_events h2 {
    font-size: 20px;
    font-size: 2rem;
    padding: 8px 8px 12px;
  }
}
.wp-custom-editor-post h3,
.post-type-post h3,
.wp-custom-editor-tribe_events h3,
.post-type-tribe_events h3 {
  display: block;
  background-color: #CCD7E0;
  position: relative;
  padding: 8px 16px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  border-left: 6px solid #003965;
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post h3,
  .post-type-post h3,
  .wp-custom-editor-tribe_events h3,
  .post-type-tribe_events h3 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.wp-custom-editor-post h4,
.post-type-post h4,
.wp-custom-editor-tribe_events h4,
.post-type-tribe_events h4 {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  padding: 0 0 0 32px;
}
.wp-custom-editor-post h4::before,
.post-type-post h4::before,
.wp-custom-editor-tribe_events h4::before,
.post-type-tribe_events h4::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0.3em;
  background-color: #003965;
}
@media screen and (max-width: 767px) {
  .wp-custom-editor-post h4,
  .post-type-post h4,
  .wp-custom-editor-tribe_events h4,
  .post-type-tribe_events h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.page-home-section {
  padding: var(--set-outer-padding, 0);
}
.page-home-section__inner {
  position: relative;
  z-index: 1;
  padding: var(--set-inner-padding);
}
@media screen and (min-width: 768px) {
  .page-home-section__inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section__inner {
    margin: 0 20px;
  }
}
.page-home-section__bg {
  background: var(--set-bg-params);
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .page-home-section__header + .page-home-section__description {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section__header + .page-home-section__description {
    margin-top: 20px;
  }
}
.page-home-section__description {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .page-home-section__description {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.page-home-section__description > p {
  font-weight: inherit;
}
@media screen and (min-width: 768px) {
  .page-home-section__description + .page-home-section__body {
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section__description + .page-home-section__body {
    margin-top: 40px;
  }
}
.page-home-section__description + .page-home-section__body--short {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .page-home-section__body {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section__body {
    margin-top: 20px;
  }
}
.page-home-section__button {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-home-section__button {
    margin: 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section__button {
    margin: 40px 0 0;
  }
}
.page-home-section__service {
  max-width: 760px;
  margin: 0 auto;
}
.page-home-section--texture01, .page-home-section--texture02, .page-home-section--texture01-end {
  position: relative;
  z-index: 1;
  color: #fff;
  overflow: hidden;
  --set-heading-color: #fff;
  --set-sub-heading-color: #fff;
}
.page-home-section--texture01::before, .page-home-section--texture01::after, .page-home-section--texture02::before, .page-home-section--texture02::after, .page-home-section--texture01-end::before, .page-home-section--texture01-end::after {
  content: "";
  display: block;
  background: var(--set-bg-params);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  width: 100%;
}
.page-home-section--texture01::before, .page-home-section--texture02::before, .page-home-section--texture01-end::before {
  top: 0;
  height: var(--set-bg-top-height);
}
.page-home-section--texture01::after, .page-home-section--texture02::after, .page-home-section--texture01-end::after {
  bottom: 0;
  height: var(--set-bg-btm-height);
}
@media screen and (min-width: 768px) {
  .page-home-section--texture01 {
    --set-bg-params: url(./assets/img/common/bg-texture01-mid.webp) no-repeat 0 0;
    --set-outer-padding: 240px 0 290px;
    --set-inner-padding: 0 0 0;
    --set-bg-top-height: 269px;
    --set-bg-btm-height: 306px;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section--texture01 {
    --set-bg-params: url(./assets/img/common/bg-texture01-sp-mid.webp) no-repeat 0 0;
    --set-outer-padding: 78px 0 83px;
    --set-inner-padding: 42px 0 37px;
    --set-bg-top-height: 78px;
    --set-bg-btm-height: 83px;
  }
}
@media screen and (min-width: 768px) {
  .page-home-section--texture01::before {
    --set-bg-params: #fff url(./assets/img/common/bg-texture01-top.webp) no-repeat 0 top;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section--texture01::before {
    background-position: center top;
    --set-bg-params: #fff url(./assets/img/common/bg-texture01-sp-top.webp) no-repeat 0 top;
  }
}
.page-home-section--texture01::after {
  --set-bg-params: #fff url(./assets/img/common/bg-texture01-btm.webp) no-repeat 0 bottom;
}
@media screen and (max-width: 767px) {
  .page-home-section--texture01::after {
    height: 83px;
    background-position: center bottom;
    --set-bg-params: #fff url(./assets/img/common/bg-texture01-sp-btm.webp) no-repeat 0 bottom;
  }
}
@media screen and (min-width: 768px) {
  .page-home-section--texture01-end {
    --set-bg-params: url(./assets/img/common/bg-texture01-mid.webp) no-repeat 0 0;
    --set-outer-padding: 240px 0 0;
    --set-inner-padding: 0 0 100px;
    --set-bg-top-height: 269px;
    --set-bg-btm-height: 306px;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section--texture01-end {
    --set-bg-params: url(./assets/img/common/bg-texture01-sp-mid.webp) no-repeat 0 0;
    --set-outer-padding: 78px 0 0;
    --set-inner-padding: 42px 0 100px;
    --set-bg-top-height: 78px;
    --set-bg-btm-height: 83px;
  }
}
@media screen and (min-width: 768px) {
  .page-home-section--texture01-end::before {
    --set-bg-params: #fff url(./assets/img/common/bg-texture01-top.webp) no-repeat 0 top;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section--texture01-end::before {
    background-position: center top;
    --set-bg-params: #fff url(./assets/img/common/bg-texture01-sp-top.webp) no-repeat 0 top;
  }
}
.page-home-section--texture01-end::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-home-section--texture02 {
    --set-bg-params: url(./assets/img/common/bg-texture02-mid.webp) no-repeat 0 0;
    --set-outer-padding: 80px 0 0;
    --set-inner-padding: 0 0 80px;
    --set-bg-top-height: 128px;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section--texture02 {
    --set-bg-params: url(./assets/img/common/bg-texture02-sp-mid.webp) no-repeat 0 0;
    --set-outer-padding: 36px 0 0;
    --set-inner-padding: 44px 0 80px;
    --set-bg-top-height: 36px;
  }
}
@media screen and (min-width: 768px) {
  .page-home-section--texture02::before {
    --set-bg-params: #fff url(./assets/img/common/bg-texture02-top.webp) no-repeat 0 top;
    --set-bg-top-height: 128px;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section--texture02::before {
    height: 1400px;
    background-position: center top;
    --set-bg-params: #fff url(./assets/img/common/bg-texture02-sp-top.webp) no-repeat 0 top;
  }
}
.page-home-section--texture02::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-home-section--service {
    --set-outer-padding: 80px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section--service {
    --set-outer-padding: 80px 0 80px;
  }
}
@media screen and (min-width: 768px) {
  .page-home-section--news {
    --set-outer-padding: 0 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .page-home-section--news {
    --set-outer-padding: 80px 0;
  }
}

@media screen and (min-width: 768px) {
  .page-about-aboutus__text {
    max-width: 380px;
    width: 100%;
  }
}
.page-about-aboutus__text p {
  font-weight: 700;
}
.page-about-aboutus__text p + p {
  margin-top: 1em;
}

#tribe-events-pg-template {
  all: unset;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  max-width: 100%;
  width: 100%;
}

.tribe-events-header__events-bar,
.tribe-events-c-subscribe-dropdown__container {
  display: none !important;
}

.tribe-events .tribe-events-c-top-bar__datepicker-container .dropdown-menu {
  min-width: auto;
  width: auto;
  max-width: 100%;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container,
.tribe-events .tribe-events-l-container {
  padding: 0;
}

/* カレンダーデザイン
-------------------------------*/
@media screen and (max-width: 767px) {
  .tribe-events-calendar-month {
    border: 1px solid #ccc !important;
    border-collapse: collapse;
  }
  .tribe-events-calendar-month tr td {
    border-radius: 0 !important;
  }
  .tribe-events-calendar-month tr td:not(:last-child) {
    border-right: 1px solid #ccc !important;
  }
  .tribe-events-calendar-month tr:not(:last-child) td {
    border-bottom: 1px solid #ccc !important;
  }
}
.tribe-events-calendar-month.is-ready .tribe-events-calendar-month__header span {
  opacity: 1;
}
.tribe-events-calendar-month__day {
  --tec-font-size-7: 1.6rem;
  /*
      tribe-events-calendar-month__day tribe-events-calendar-month__day--past tribe-events-calendar-month__day--other-month tribe-events-calendar-month__day--past-month
      */
}
@media screen and (max-width: 767px) {
  .tribe-events-calendar-month__day {
    --tec-font-size-3: 1.2rem;
    --tec-color-accent-primary: #CCE7F3;
  }
}
.tribe-events-calendar-month__day-date-daynum {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
}
.tribe-events-calendar-month__day--past-month {
  background-color: #F3F3F3;
  color: #666;
}
.tribe-events-calendar-month__header {
  background-color: #CCE7F3;
  border: 1px solid #ccc !important;
  border-bottom: none !important;
  border-radius: 4px 4px 0 0;
}
.tribe-events-calendar-month__header-column[aria-label=土曜日] {
  background-color: #CCD7E0;
}
.tribe-events-calendar-month__header-column[aria-label=日曜日] {
  background-color: #E0CCCC;
}
.tribe-events-calendar-month__header-column:not(:last-child) {
  border-right: 1px solid #ccc;
}
.tribe-events-calendar-month__body {
  --tec-color-border-secondary-month-grid: #ccc;
  --tec-color-background-month-grid: #fff;
}

.tribe-events .tribe-events-calendar-month__header-column {
  text-transform: unset;
  --tec-color-text-primary: #333;
  --tec-font-family-sans-serif: Lexend, sans-serif;
  --tec-font-weight-regular: 700;
  font-weight: 700 !important;
  padding: 10px 12px;
  --tec-font-size-1: 1.6rem;
}
@media screen and (max-width: 767px) {
  .tribe-events .tribe-events-calendar-month__header-column {
    --tec-font-size-0: 1.2rem;
  }
}
.tribe-events .tribe-events-calendar-month__header-column span {
  font-weight: inherit;
}

.swiper-pagination-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-container {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .swiper-pagination-container {
    width: calc(100% - 40px);
  }
}
.swiper-custom-button-container {
  display: flex;
}
.swiper-custom-button-container > *:not(:last-child) {
  margin: 0 20px 0 0;
}
.swiper-custom-pagination {
  width: auto !important;
}
.swiper-custom-pagination--dotted {
  height: 10px;
}
.swiper-custom-pagination--dotted .swiper-pagination-bullet {
  border-radius: 100%;
  opacity: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  vertical-align: top;
  background-color: #ccc;
}
@media screen and (min-width: 768px) {
  .swiper-custom-pagination--dotted .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-custom-pagination--dotted .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}
.swiper-custom-pagination--dotted .swiper-pagination-bullet:first-child {
  margin-left: 0;
}
.swiper-custom-pagination--dotted .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.swiper-custom-pagination--dotted .swiper-pagination-bullet-active {
  background-color: #003965;
}
/*# sourceMappingURL=style.css.map */