@charset "UTF-8";
/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
html {
  -ms-scroll-snap-type: y proximity;
      scroll-snap-type: y proximity;
  scroll-padding-top: 165px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 991.98px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  position: relative;
  color: #222;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  background: url(../images/common/background_S.svg) -320px 0 no-repeat;
  background-size: contain;
  background-attachment: fixed;
  background-size: 869px 1086px;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.4rem;
    background-size: 95vw;
    background-position: top 16rem left -43vw;
  }
}

.wrap {
  position: relative;
  overflow: hidden;
}

/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a:link {
  color: #245fbb;
  text-decoration: none;
}

a:visited {
  color: #245fbb;
  text-decoration: none;
}

a:hover {
  color: #245fbb;
  text-decoration: underline;
}

a:active {
  color: #245fbb;
  text-decoration: underline;
}

/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
.header {
  width: 100%;
  height: 90px;
  margin: 0 auto;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 0;
  z-index: 9999;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (max-width: 991.98px) {
  .header {
    height: 55px;
  }
}

.header-left {
  height: 90px;
  width: 194px;
}
@media screen and (max-width: 991.98px) {
  .header-left {
    width: 100px;
    height: 55px;
  }
}
.header-left a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-left .logo-area img {
  width: 146px;
  margin: 20px 0 0 35px;
}
@media screen and (max-width: 991.98px) {
  .header-left .logo-area img {
    width: 100px;
    margin: 8px 0 0 8px;
  }
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991.98px) {
  .header-right {
    height: 55px;
  }
}

/*----------------------------------------------------
  ナビゲーション
----------------------------------------------------*/
/*PC*/
.header-right nav,
ul.global-menu,
.global-menu > li,
.global-menu > li > span,
.global-menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

ul.global-menu {
  padding: 0 40px 0 0;
  font-size: 1.8rem;
  font-weight: 500;
}
ul.global-menu > li {
  position: relative;
}

.global-menu > li > span,
.global-menu > li > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  color: #192C5A;
}

.language-select {
  height: 100%;
  vertical-align: middle;
  position: relative;
  font-size: 1.6rem;
  color: #222;
  top: 20px;
}
@media screen and (max-width: 991.98px) {
  .language-select {
    font-size: 1.6rem;
    margin-right: 0;
  }
}
.language-select:hover {
  cursor: pointer;
  color: #1D2B5A;
}
@media screen and (max-width: 991.98px) {
  .language-select > div {
    padding: 0 1.5rem 2rem;
  }
}

.gt_float_switcher {
  font-family: inherit !important;
  font-size: inherit !important;
  border-radius: inherit !important;
  color: inherit !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: inherit !important;
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 1, 1);
  width: 100%;
}
.gt_float_switcher .gt_options.gt-open {
  background: #fff !important;
  max-width: none !important;
}
@media screen and (max-width: 991.98px) {
  .gt_float_switcher .gt_options.gt-open {
    max-width: none !important;
  }
}
.gt_float_switcher .gt_options a {
  text-align: center !important;
}
.gt_float_switcher img {
  width: 24px !important;
}
.gt_float_switcher .gt-selected .gt-current-lang {
  text-align: center !important;
}
.gt_float_switcher .gt-selected .gt-current-lang img {
  width: 24px !important;
}

.global-menu span:hover,
.global-menu a:hover,
.global-menu a.link-blank:hover::after {
  cursor: pointer;
}

.global-menu-child {
  position: absolute;
  width: 200px;
  top: 90px;
  left: 0;
  background-color: #192c5a;
  padding: 1rem 0;
  display: none;
  color: #fff;
}
.global-menu-child ul {
  padding-left: 0;
}
.global-menu-child ul li {
  list-style: none;
}
.global-menu-child ul li a {
  display: block;
  padding: 1.2rem 2.5rem;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
}
.global-menu-child ul li a small {
  margin-left: 2px;
  padding: 2px 5px;
  border: 1px solid #fff;
  line-height: 1;
}

/*スマートフォン*/
.menu-button {
  cursor: pointer;
  width: 60px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu-button .menu-trigger,
.menu-button .menu-trigger span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.menu-button .menu-trigger {
  position: relative;
  width: 36px;
  height: 36px;
}
.menu-button .menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  text-align: center;
}
.menu-button .menu-trigger span.border {
  background-color: #192c5a;
}
.menu-button .menu-trigger span:nth-of-type(1) {
  top: 10px;
}
.menu-button .menu-trigger span:nth-of-type(2) {
  top: 24px;
}

.open .header {
  height: 55px;
}
.open .header.fixed {
  z-index: 10;
}
.open .header.fixed .header-left,
.open .header.fixed .header-right a {
  visibility: visible;
}
.open .header-left,
.open .header-right a {
  visibility: hidden;
}
.open .menu-button {
  background-color: transparent;
}
.open .menu-button span:nth-of-type(1) {
  top: 20px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.open .menu-button span:nth-of-type(2) {
  top: 20px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.smp-menu {
  position: fixed;
  top: 55px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 20000;
  width: 100%;
  height: calc(100vh - 55px);
  background-color: #192c5a;
  display: none;
  overflow-y: scroll;
}
.smp-menu::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 992px) {
  .smp-menu {
    /*　画面サイズ 1000px以上から適用　*/
    display: none !important;
  }
}
.smp-menu .menu-area > ul {
  padding-left: 0;
  list-style: none;
}
.smp-menu .menu-area > ul li {
  font-size: 1.5rem;
  text-align: left;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.smp-menu .menu-area > ul li a, .smp-menu .menu-area > ul li span {
  padding: 2rem;
  color: #fff;
  display: block;
  position: relative;
}
.smp-menu .menu-area > ul li span::before, .smp-menu .menu-area > ul li span::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  top: 50%;
}
.smp-menu .menu-area > ul li span::before {
  width: 1em;
  height: 2px;
  right: 1.55em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: -1px;
}
.smp-menu .menu-area > ul li span::after {
  width: 2px;
  height: 1em;
  right: 2.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.smp-menu .menu-area > ul li span:hover {
  cursor: pointer;
}
.smp-menu .menu-area > ul li span.open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.smp-menu ul.smp-menu-child {
  display: none;
  margin-bottom: 1.5rem;
}
.smp-menu ul.smp-menu-child li {
  border: none;
}
.smp-menu ul.smp-menu-child li a {
  color: #fff;
  display: block;
  position: relative;
}
.smp-menu ul.smp-menu-child li a:hover {
  text-transform: none;
}
.smp-menu ul.smp-menu-child li a small {
  margin-left: 8px;
  padding: 2px 5px;
  border: 1px solid #fff;
  line-height: 1;
}

@media screen and (max-width: 991.98px) {
  ul.global-menu {
    display: none;
  }
  .menu-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .smp-menu ul li ul a {
    padding: 0;
  }
  .open .header-left,
  .open .header-right a {
    visibility: visible;
  }
  .open .menu-trigger span:nth-of-type(4) {
    color: #222;
  }
}
/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.footer {
  margin: 8rem auto 0;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .footer {
    padding-top: 30px;
    margin-top: 5rem;
  }
}
.footer .container {
  background: #192c5a;
  width: 90vw;
  margin: 0 auto 0 0;
  padding: 6rem 5vw 3rem;
  border-radius: 0 30px 0 0;
}
.footer .container .footer-area .contact-en-title {
  font-family: "EB Garamond", serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 2rem;
}
@media screen and (max-width: 575.98px) {
  .footer .container .footer-area .contact-en-title {
    font-size: 4rem;
  }
}
.footer .container .footer-area .contact-en-title a {
  position: relative;
}
.footer .container .footer-area .contact-en-title a::after {
  content: "";
  position: absolute;
  top: 55%;
  right: -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
  width: 20px;
  height: 20px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.footer .container .footer-area .contact-en-title a:hover:after {
  right: -40px;
}
.footer .container .footer-area .contact-jp-title {
  font-size: 2.6rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media screen and (max-width: 575.98px) {
  .footer .container .footer-area .contact-jp-title {
    font-size: 2.3rem;
  }
}
.footer .container .address-area {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80vw;
  font-size: 1.4rem;
  padding: 2rem 0;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 575.98px) {
  .footer .container .address-area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer .container .address-area .company-name {
  margin: 0 1rem 0 0;
  font-size: 2.4rem;
  font-weight: 500;
}
.footer .container .address-area br.sp {
  display: none;
}
@media screen and (max-width: 991.98px) {
  .footer .container .address-area br.sp {
    display: block;
  }
}
.footer .container p.copyright {
  width: 80vw;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 0 2rem;
}
.footer .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6rem 0;
}
@media screen and (max-width: 1379.98px) {
  .footer .footer-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer .footer-menu .col-6 {
  width: calc(13.3333333333vw - 4rem);
  margin: 0 2rem;
}
@media screen and (max-width: 1379.98px) {
  .footer .footer-menu .col-6 {
    width: calc(26.6666666667vw - 6rem);
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .footer .footer-menu .col-6 {
    width: calc(50vw - 4rem);
    margin: 0 0rem;
  }
}
.footer .footer-link {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 500;
}
.footer .footer-link a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-nav {
  padding-left: 0;
}
.footer li {
  font-size: 1.6rem;
  margin-bottom: 15px;
  list-style: none;
}
.footer a {
  text-decoration: none;
  color: #fff;
}

.page-top {
  position: fixed;
  right: 5vw;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767.98px) {
  .page-top {
    right: 8.5vw;
  }
}
.page-top a {
  color: #192c5a;
  position: fixed;
  bottom: 10px;
  right: 1vw;
  text-decoration: none;
  display: block;
  width: 150px;
  padding: 10px 0px 10px 0px;
  text-align: right;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  overflow: hidden;
}
.page-top .arrow {
  height: 1px;
  background: #192c5a;
  position: absolute;
  top: 50%;
  margin-right: 100px;
  -webkit-animation: scrollbar 2s ease-in-out infinite;
          animation: scrollbar 2s ease-in-out infinite;
}

.page-top.LeftMove {
  -webkit-animation: LeftAnime 0.5s forwards;
          animation: LeftAnime 0.5s forwards;
}

@-webkit-keyframes LeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.page-top.RightMove {
  -webkit-animation: RightAnime 0.5s forwards;
          animation: RightAnime 0.5s forwards;
}

@-webkit-keyframes RightAnime {
  from {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}

@keyframes RightAnime {
  from {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
@-webkit-keyframes scrollbar {
  0% {
    width: 0;
    right: 0;
  }
  30% {
    width: 100%;
  }
  100% {
    right: 100%;
  }
}
@keyframes scrollbar {
  0% {
    width: 0;
    right: 0;
  }
  30% {
    width: 100%;
  }
  100% {
    right: 100%;
  }
}
/*----------------------------------------------------
  アニメーション
----------------------------------------------------*/
.fadein {
  opacity: 0;
}

.fadeinAnime {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: fadeinAnime;
          animation-name: fadeinAnime;
  visibility: visible !important;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes fadeinAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeinAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/* fadeIn */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeInTrigger {
  opacity: 0;
}

/*----------------------------------------------------
  ページタイトル
----------------------------------------------------*/
.pagetitle-wrap {
  padding: 90px 0 8rem;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap {
    padding: 3rem 0;
  }
}
.pagetitle-wrap .inner {
  position: relative;
  height: 560px;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap .inner {
    height: auto;
  }
}
.pagetitle-wrap .inner:not(:has(.image)) {
  height: 240px;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap .inner:not(:has(.image)) {
    height: auto;
  }
}
.pagetitle-wrap .inner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
  width: 90vw;
  margin: auto;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap .inner .container {
    display: block;
    width: auto;
  }
}
.pagetitle-wrap .pagetitle-block {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 4rem 6rem;
  position: relative;
  z-index: 1;
  margin: 1.5rem 0;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap .pagetitle-block {
    display: block;
    width: auto;
    padding: 3rem 5rem;
    margin: 0 2rem 0 0;
  }
}
@media screen and (max-width: 575.98px) {
  .pagetitle-wrap .pagetitle-block {
    padding: 3rem;
  }
}
.pagetitle-wrap .pagetitle-block span.en, .pagetitle-wrap .pagetitle-block span.jp {
  display: block;
  color: #192C5A;
}
.pagetitle-wrap .pagetitle-block span.en {
  font-family: "EB Garamond", serif;
  font-size: 5.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap .pagetitle-block span.en {
    font-size: 4.2rem;
  }
}
.pagetitle-wrap .pagetitle-block span.jp {
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap .pagetitle-block span.jp {
    font-size: 2rem;
  }
}
.pagetitle-wrap .image {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap .image {
    position: relative;
    height: 300px;
    margin-left: 2rem;
    margin-top: -3rem;
  }
}
.pagetitle-wrap .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 72vw;
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap .image img {
    width: 100%;
  }
}
.pagetitle-wrap .movie {
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap .movie {
    position: relative;
    height: 300px;
    margin-left: 2rem;
    margin-top: -3rem;
  }
}
.pagetitle-wrap .movie video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 72vw;
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap .movie video {
    width: 100%;
    height: 300px;
  }
}
.pagetitle-wrap:not(.image):has(.movie) .inner {
  height: 560px;
}
@media screen and (max-width: 767.98px) {
  .pagetitle-wrap:not(.image):has(.movie) .inner {
    height: auto;
  }
}

/*----------------------------------------------------
  パンくず
----------------------------------------------------*/
.breadcrumb {
  width: 90vw;
  margin: 1rem 5vw 0;
}
@media screen and (max-width: 767.98px) {
  .breadcrumb {
    width: auto;
    margin: 1rem 2rem 0;
  }
}
.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0;
  list-style-type: none;
}
.breadcrumb ul li {
  position: relative;
  padding: 0 0 0 2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767.98px) {
  .breadcrumb ul li {
    font-size: 1.2rem;
  }
}
.breadcrumb ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: -1rem;
  font-size: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/*----------------------------------------------------
  汎用
----------------------------------------------------*/
.d-none {
  display: none !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
/*----------------------------------------------------
  ブロックエディタ
----------------------------------------------------*/
.contents-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 8rem;
  background: rgba(255, 255, 255, 0.95);
}
@media screen and (max-width: 1300px) {
  .contents-wrap {
    margin: 0 1.5rem;
  }
}
@media screen and (max-width: 991.98px) {
  .contents-wrap {
    padding: 4rem;
  }
}
@media screen and (max-width: 767.98px) {
  .contents-wrap {
    padding: 3rem 2rem;
    margin: 0 1rem;
  }
}
.contents-wrap h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #192c5a;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  .contents-wrap h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
  }
}
.contents-wrap h3 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #192c5a;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767.98px) {
  .contents-wrap h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.contents-wrap h4 {
  font-size: 2rem;
  padding: 0.8rem 1em;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background: #192c5a;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767.98px) {
  .contents-wrap h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}
.contents-wrap h4.has-text-align-left {
  text-align: left;
}
.contents-wrap .wp-block-group {
  margin-bottom: 8rem;
}
.contents-wrap .wp-block-group:last-child {
  margin-bottom: 3rem;
}
.contents-wrap .has-vary-light-blue-background-color .wp-block-group__inner-container {
  padding: 2rem 3rem;
}
@media screen and (max-width: 767.98px) {
  .contents-wrap .has-vary-light-blue-background-color .wp-block-group__inner-container {
    padding: 1.5rem 2rem;
  }
}
.contents-wrap .wp-block-list {
  margin-bottom: 2rem;
}
.contents-wrap p {
  margin-bottom: 1em;
  line-height: 2;
}
.contents-wrap a {
  word-break: break-all;
}
.contents-wrap iframe {
  width: 100%;
}
.contents-wrap table.has-fixed-layout th {
  white-space: break-spaces;
}
.contents-wrap .tbl-border table.has-fixed-layout tr {
  border-bottom: 1px solid #ccc;
}
.contents-wrap .tbl-border table.has-fixed-layout tr:first-child {
  border-top: 1px solid #ccc;
}
.contents-wrap .tbl-border table.has-fixed-layout thead th + th {
  border-left: 1px solid #ddd;
}
.contents-wrap .tbl-border table.has-fixed-layout tbody th, .contents-wrap .tbl-border table.has-fixed-layout tbody td {
  background-color: transparent;
}
.contents-wrap .tbl-border table.has-fixed-layout tbody td + td {
  border-left: 1px solid #ebebeb;
}
.contents-wrap .tbl-border table.has-fixed-layout th, .contents-wrap .tbl-border table.has-fixed-layout td {
  border: none;
  padding: 2rem 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .contents-wrap .tbl-border table.has-fixed-layout th, .contents-wrap .tbl-border table.has-fixed-layout td {
    padding: 1.2rem 1rem;
  }
}
@media screen and (max-width: 767.98px) {
  .contents-wrap .tbl-border table.has-fixed-layout.is-stacked-on-mobile th {
    padding-bottom: 0;
  }
}
.contents-wrap .font-eb-Garamond {
  font-family: "EB Garamond", serif;
  font-weight: 700;
}
.contents-wrap .wp-block-image img {
  margin-bottom: 0.5em !important;
}
.contents-wrap .wp-has-aspect-ratio iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.has-black-color {
  color: #222222;
}

.has-black-background-color {
  background: #222222;
}

.has-gray-color {
  color: #D5D5D5;
}

.has-gray-background-color {
  background: #D5D5D5;
}

.has-white-color {
  color: #FFFFFF;
}

.has-white-background-color {
  background: #FFFFFF;
}

.has-dark-blue-color {
  color: #192c5a;
}

.has-dark-blue-background-color {
  background: #192c5a;
}

.has-light-blue-color {
  color: #009fe8;
}

.has-light-blue-background-color {
  background: #32383a;
}

.has-vary-light-blue-color {
  color: #DFF5FF;
}

.has-vary-light-blue-background-color {
  background: #DFF5FF;
}

.has-vary-light-yellow-color {
  color: #FFFEE8;
}

.has-vary-light-yellow-background-color {
  background: #FFFEE8;
}

.has-pink-color {
  color: #f691a8;
}

.has-pink-background-color {
  background: #f691a8;
}

.has-red-color {
  color: #cd3b35;
}

.has-red-background-color {
  background: #cd3b35;
}

.has-orange-color {
  color: #fd7027;
}

.has-orange-background-color {
  background: #fd7027;
}

.has-yellow-color {
  color: #fabc34;
}

.has-yellow-background-color {
  background: #fabc34;
}

.has-green-color {
  color: #1ece87;
}

.has-green-background-color {
  background: #1ece87;
}

.wp-block-button .wp-block-button__link {
  border-radius: 0;
  border-color: #192C5A;
  text-decoration: none;
  color: #192C5A;
  position: relative;
  min-width: 200px;
}
.wp-block-button .wp-block-button__link::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 0;
  border-top: solid 2px #192C5A;
  border-right: solid 2px #192C5A;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 1px;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  margin-top: -0.2em;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

@media screen and (max-width: 600px) {
  .photo-inner {
    max-width: 240px;
    display: block;
    margin: auto;
  }
}