@charset "UTF-8";
/*import
------------------------------------------*/
/*reset*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
*, *:after, *:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, 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%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  height: auto;
  display: block;
}

html {
  font-size: 100%;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none !important;
  text-decoration: none;
  color: inherit;
}

/* 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: 700;
}

del {
  text-decoration: line-through;
}

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

dfn {
  font-weight: 400;
  font-style: normal;
}

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

input, select {
  vertical-align: middle;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

li {
  list-style: none;
}

/*html body setting*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  width: 100%;
}

body {
  position: relative;
  overflow: hidden;
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.6;
  background: #fff;
  color: #333;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  margin: auto;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures contextual;
  font-feature-settings: "kern", "liga", "clig", "calt";
}

/*px base setting*/
#pxBase sup {
  vertical-align: super;
  font-size: .5em;
}
#pxBase a:link,
#pxBase a:visited,
#pxBase a:active,
#pxBase a:hover {
  text-decoration: none;
}
#pxBase figure {
  position: relative;
}
#pxBase img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
#pxBase img.object-fit {
  object-fit: cover;
  height: 100%;
}

/* visible or hidden
--------------------------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .visible-pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .visible-pctb {
    display: none !important;
  }
}
@media only screen and (min-width: 992px) {
  .visible-tbsp {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .visible-sp {
    display: none !important;
  }
}
.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs {
    display: block !important;
  }
}
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/
/*
使用するフォントを読み込んでください
*/
/*animation
------------------------------------------*/
@keyframes transformLeftRight {
  0% {
    transform: translate(-100%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
@keyframes loading {
  0% {
    transform: scale(0);
  }
  /*50% {
    transform: scale(1.2);
  }*/
  100% {
    transform: scale(1);
  }
}
@keyframes loadingEnd {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(30);
  }
}
@keyframes loadingEnd02 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(30);
  }
}
@keyframes loading_smp {
  0% {
    transform: scale(0);
  }
  /*50% {
    transform: scale(0.5);
  }*/
  100% {
    transform: scale(0.3);
  }
}
@keyframes loadingEnd_smp {
  0% {
    transform: scale(0.3);
  }
  100% {
    transform: scale(10);
  }
}
@keyframes loadingEnd02_smp {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(10);
  }
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/*layout
------------------------------------------*/
.column1 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.column1 > * {
  margin: 0 15px;
  width: calc(100% - 30px);
}
.column1 > *:nth-child(n+2) {
  margin-top: 40px;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.column2 > * {
  margin: 0 15px;
  width: calc(50% - 30px);
}
.column2 > *:nth-child(n+3) {
  margin-top: 40px;
}

.column3 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.column3 > * {
  margin: 0 15px;
  width: calc(33.3333% - 30px);
}
.column3 > *:nth-child(n+4) {
  margin-top: 40px;
}

.column4 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.column4 > * {
  margin: 0 15px;
  width: calc(25% - 30px);
}
.column4 > *:nth-child(n+5) {
  margin-top: 40px;
}

.column5 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.column5 > * {
  margin: 0 15px;
  width: calc(20% - 30px);
}
.column5 > *:nth-child(n+6) {
  margin-top: 40px;
}

/*animation
------------------------------------------*/
/*common
------------------------------------------*/
/*全体のフォント指定*/
html {
  font-size: 62.5%;
}

body {
  font-family: YakuHanJP, "Inter", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  //background: #F2F2F0 !important;
  line-height: 1.8;
  overflow: initial !important;
  display: none;
}
body.loaded {
  display: block;
}

/*font*/
.sanserif {
  font-family: YakuHanJP, 'Roboto', "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", eiryo, sans-serif;
}

.serif {
  font-family: YakuHanJP, 'Cinzel',"Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
}

/*text*/
.kvTitle {
  font-size: 9.4rem;
  letter-spacing: .5rem;
}

.pageTitle {
  font-size: 4.8rem;
}
.pageTitle + * {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .pageTitle {
    font-size: 3.8rem;
  }
}

.sectionTitle {
  font-size: 4rem;
}
@media only screen and (max-width: 767px) {
  .sectionTitle {
    font-size: 3rem;
  }
}

.containerTitle {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .containerTitle {
    font-size: 1.8rem;
  }
}

/*icon*/
.dlLink::after {
  content: "\f090";
  font-family: 'Material Symbols Outlined';
  margin-left: 1rem;
  vertical-align: middle;
}

.outLink::after {
  font-family: 'Material Symbols Outlined';
  content: "\e89e";
  margin-left: 1rem;
  vertical-align: middle;
}

/*img*/
figure .imgcap {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0 5px;
  line-height: 1.2;
  font-size: 1.1rem;
  color: #222;
  color: #fff;
}

/*border-radius*/
.br-all {
  border-radius: 10px;
  overflow: hidden;
}

.br-top {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

/* arrowLink */
a.arrowLink .circle {
  transition: 0.6s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(60, 5, 15, 0.4);
  border-radius: 999px;
  padding: 20px;
  background: #F2F2F0;
  animation-fill-mode: both;
  animation-duration: 0.3s;
}
@media only screen and (max-width: 767px) {
  a.arrowLink .circle {
    width: 48px;
    height: 48px;
    padding: 15px;
  }
}
a.arrowLink .circle span.arrow {
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: 0.6s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
  position: relative;
}
a.arrowLink .circle span.arrow::before, a.arrowLink .circle span.arrow::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../../common/img/elements/arrow_main.svg");
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation-fill-mode: both;
  animation-duration: 0.3s;
}
a.arrowLink.is-hover span.arrow::before {
  animation-name: transformExpand;
}
a.arrowLink.is-hover span.arrow::after {
  animation-name: transformExpand;
}
a.arrowLink.is-hover:hover .imgWrap figure {
  background: #F2F2F0;
}
a.arrowLink.is-hover:hover .imgWrap figure img {
  transform: scale(1);
}
a.arrowLink.is-hover:hover .circle {
  animation-name: transformExpand;
}
a.arrowLink.is-hover:hover .circle span.arrow::before {
  /*animation-name: transformRightLeft;animation-delay: 0s;*/
  background: url("../../common/img/elements/arrow_main.svg");
}
a.arrowLink.is-hover:hover .circle span.arrow::after {
  /*animation-name: transformLeftRight;animation-delay: 0.2s;*/
  background: url("../../common/img/elements/arrow_main.svg");
}

a {
  position: relative;
  transition: 0.3s all ease;
}
a .inner {
  transition: 0.4s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
a .circleArrow {
  position: absolute;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  right: 1.0rem;
  top: 50%;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: circle(0 at 50% 50%);
  transition: 0.4s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
a .circleArrow span {
  width: 1.4rem;
  height: 1.4rem;
  background: url("../../common/img/elements/arrow_main.svg") center center/cover no-repeat;
  filter: invert(15%) sepia(94%) saturate(1362%) hue-rotate(194deg) brightness(91%) contrast(109%);
  display: inline-block;
  position: relative;
  padding: 0.7rem;
}
a:hover .inner {
  transform: translateX(-1.25rem);
}
a:hover .circleArrow {
  clip-path: circle(50% at 50% 50%);
}

/*layout
------------------------------------------*/
/*sectionWrap*/
.sectionWrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (max-width: 1440px) {
  .sectionWrap {
    max-width: 92%;
  }
}
@media only screen and (max-width: 767px) {
  .sectionWrap {
    max-width: 88%;
  }
}

.largeWrap {
  width: calc(100% - 240px);
  /*max-width:1680px;*/
  margin: 0 auto;
}
@media only screen and (max-width: 1440px) {
  .largeWrap {
    max-width: 92%;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .largeWrap {
    width: calc(100% - 40px);
  }
}

.swipeWrap {
  width: calc(100% - 120px);
  /*max-width:1800px;*/
  margin-left: auto;
}
@media only screen and (max-width: 1440px) {
  .swipeWrap {
    width: calc(100% - 4.5%);
    max-width: 95.5%;
  }
}
@media only screen and (max-width: 767px) {
  .swipeWrap {
    width: calc(100% - 20px);
  }
}

.sectionWrap-full {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.ttlWrap {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .ttlWrap {
    margin-bottom: 60px;
  }
}
.ttlWrap .jp {
  font-size: clamp(1.2rem, 0.93vw, 1.8rem);
  position: relative;
  margin-bottom: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 991px) {
  .ttlWrap .jp {
    margin-bottom: 10px;
  }
}
.ttlWrap .jp::before {
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 10px;
  background: #00306D;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  transition: all 0.3s ease;
}
.ttlWrap .jp.is-view {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .ttlWrap .jp.is-view {
    padding-left: 12px;
  }
}
.ttlWrap .jp.is-view::before {
  width: 10px;
  height: 10px;
}
@media only screen and (max-width: 767px) {
  .ttlWrap .jp.is-view::before {
    width: 6px;
    height: 6px;
  }
}
.ttlWrap .jp.white::before {
  background: #fff;
}
.ttlWrap h2.ttlCopy, .ttlWrap h3.ttlCopy {
  font-size: clamp(3.6rem, 4.17vw, 8rem);
  line-height: 1;
  font-weight: 300;
}
.ttlWrap h2.ttlCopy span, .ttlWrap h3.ttlCopy span {
  font-size: clamp(1.2rem, 0.93vw, 1.8rem);
  position: relative;
}
.ttlWrap h2.ttlCopy span::before, .ttlWrap h3.ttlCopy span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #00306D;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  transition: all 0.3s ease;
}
.ttlWrap h2.ttlCopy span.is-view, .ttlWrap h3.ttlCopy span.is-view {
  padding-left: 20px;
}
.ttlWrap h2.ttlCopy span.is-view::before, .ttlWrap h3.ttlCopy span.is-view::before {
  width: 10px;
  height: 10px;
}

.contentsTtlWrap {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .contentsTtlWrap {
    margin-bottom: 40px;
  }
}
.contentsTtlWrap p.jp {
  font-size: clamp(1.2rem, 0.93vw, 1.8rem);
  margin-bottom: 15px;
  color: #00306D;
}
@media only screen and (max-width: 991px) {
  .contentsTtlWrap p.jp {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
@media only screen and (max-width: 767px) {
  .contentsTtlWrap p.jp {
    font-size: 1.2rem;
  }
}
.contentsTtlWrap p.en {
  font-size: clamp(1.2rem, 0.93vw, 1.8rem);
  margin-bottom: 15px;
  color: #00306D;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .contentsTtlWrap p.en {
    font-size: 1.4rem;
    font-weight: 600;
  }
}
@media only screen and (max-width: 767px) {
  .contentsTtlWrap p.en {
    font-size: 1.2rem;
  }
}
.contentsTtlWrap h3.ttlCopy {
  font-size: clamp(2.1rem, 1.875vw, 3.6rem);
}
.contentsTtlWrap p.bodyCopy {
  font-size: clamp(1.3rem, 0.83vw, 1.6rem);
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .contentsTtlWrap p.bodyCopy {
    margin-top: 25px;
  }
}

h4.ttlCopy {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  font-weight: bold;
  margin-bottom: 25px;
}
@media only screen and (max-width: 991px) {
  h4.ttlCopy {
    margin-bottom: 15px;
  }
}

p.bodyCopy {
  font-size: clamp(1.3rem, 0.83vw, 1.6rem);
}

/*stickyWrap
------------------------------------------*/
.stickyWrap {
  display: flex;
}
@media only screen and (max-width: 991px) {
  .stickyWrap {
    flex-direction: column;
  }
}
.stickyWrap .subNav {
  margin-right: 6.25vw;
  min-width: 100px;
}
@media only screen and (max-width: 991px) {
  .stickyWrap .subNav {
    margin-right: 0;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .stickyWrap .subNav {
    margin-bottom: 30px;
  }
}
.stickyWrap .subNav ul.sticky {
  position: sticky;
  top: 130px;
  display: flex;
  gap: 25px;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  .stickyWrap .subNav ul.sticky {
    flex-direction: row;
    position: relative;
    top: 0;
    gap: 1px;
  }
}
.stickyWrap .subNav ul.sticky::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #262624;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .stickyWrap .subNav ul.sticky::before {
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    top: auto;
  }
}
.stickyWrap .subNav ul.sticky li {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .stickyWrap .subNav ul.sticky li {
    width: 50%;
    text-align: center;
    padding-bottom: 15px;
  }
}
.stickyWrap .subNav ul.sticky li a {
  padding-left: 15px;
  color: #262624;
  opacity: 0.4;
  font-weight: bold;
}
@media only screen and (max-width: 991px) {
  .stickyWrap .subNav ul.sticky li a {
    padding-left: 0;
  }
}
.stickyWrap .subNav ul.sticky li a:hover {
  color: #00306D;
  opacity: 1;
}
.stickyWrap .subNav ul.sticky li.current a {
  color: #00306D;
  opacity: 1;
}
.stickyWrap .subNav ul.sticky li.current::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #00306D;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .stickyWrap .subNav ul.sticky li.current::before {
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    top: auto;
  }
}

/*header
------------------------------------------*/
.up_navi header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.up_navi header.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media only screen and (max-width: 991px) {
  .down_navi header .hamburger {
    background: #00306D;
  }
}
.down_navi header .hamburger span {
  background: #fff;
}
.down_navi header .headerWrap {
  background: #fff;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.08));
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .down_navi header .headerWrap {
    background: none;
  }
}
.down_navi header .headerWrap nav .navWrap .innerWrap {
  color: #262624 !important;
}
@media only screen and (max-width: 991px) {
  .down_navi header .headerWrap nav .navWrap .innerWrap {
    color: #fff !important;
  }
}
.down_navi header .headerWrap nav .navWrap .innerWrap .inner a.is-current {
  color: #00306D;
}
.down_navi header .headerWrap nav .navWrap .innerWrap .inner a.is-current::before {
  background: #00306D;
}
.down_navi header .headerWrap nav .navWrap .innerWrap .inner a:hover::before {
  background: #00306D;
}
.down_navi header.active .headerWrap nav .navWrap .innerWrap {
  color: #fff !important;
}
.down_navi header.active .headerWrap nav .navWrap .innerWrap .inner a.is-current {
  color: #fff;
}
.down_navi header.active .headerWrap nav .navWrap .innerWrap .inner a.is-current::before {
  background: #fff;
}
.down_navi header.active .headerWrap nav .navWrap .innerWrap .inner a:hover::before {
  background: #fff;
}

header {
  position: absolute;
  z-index: 100;
  width: 100%;
  transition: all 0.4s ease;
}
header .hamburger {
  position: absolute;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  top: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  z-index: 100;
}
@media only screen and (max-width: 991px) {
  header .hamburger {
    top: 15px;
    width: 60px;
    height: 60px;
    right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  header .hamburger {
    top: 10px;
    right: 10px;
  }
}
header .hamburger span {
  display: inline-block;
  transition: all .3s ease;
  /*アニメーションの設定*/
  position: absolute;
  left: 10px;
  height: 1px;
  background: #00306D;
  width: 30px;
}
@media only screen and (max-width: 991px) {
  header .hamburger span {
    left: 15px;
  }
}
header .hamburger span:nth-of-type(1) {
  top: 19px;
}
@media only screen and (max-width: 991px) {
  header .hamburger span:nth-of-type(1) {
    top: 24px;
  }
}
header .hamburger span:nth-of-type(2) {
  top: 24px;
}
@media only screen and (max-width: 991px) {
  header .hamburger span:nth-of-type(2) {
    top: 29px;
  }
}
header .hamburger span:nth-of-type(3) {
  top: 29px;
}
@media only screen and (max-width: 991px) {
  header .hamburger span:nth-of-type(3) {
    top: 34px;
  }
}
@media only screen and (max-width: 991px) {
  header .hamburger.active span {
    left: 30px !important;
  }
}
header .hamburger.active span:nth-of-type(1) {
  top: 30px;
  left: 10px;
  transform: translateY(-6px) rotate(30deg);
  width: 30px;
}
header .hamburger.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
header .hamburger.active span:nth-of-type(3) {
  top: 18px;
  left: 10px;
  transform: translateY(6px) rotate(-30deg);
  width: 30px;
}
@media only screen and (max-width: 991px) {
  header .hamburger {
    display: block;
  }
}
header .headerWrap {
  margin: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1280px) {
  header .headerWrap {
    align-items: flex-start;
    margin: 0px;
  }
}
@media only screen and (max-width: 991px) {
  header .headerWrap {
    padding-top: 25px;
    padding-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  header .headerWrap {
    padding-left: 10px;
  }
}
header .headerWrap .logoSymbol {
  margin-right: 60px;
  z-index: 100;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1280px) {
  header .headerWrap .logoSymbol {
    position: absolute;
  }
}
header .headerWrap .logoSymbol {
  display: block;
}
header .headerWrap .logoSymbol figure img {
  width: auto;
  height: 50px;
}
@media only screen and (max-width: 1440px) {
  header .headerWrap .logoSymbol figure img {
    width: auto;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  header .headerWrap .logoSymbol figure img {
    width: auto;
    height: 32px;
  }
}
header .headerWrap nav {
  font-size: 1.4rem;
  transition: 0.4s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media only screen and (max-width: 1280px) {
  header .headerWrap nav {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  header .headerWrap nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    transform: translateX(100%);
    pointer-events: none;
  }
}
header .headerWrap nav .navWrap {
  display: flex;
}
@media only screen and (max-width: 1280px) {
  header .headerWrap nav .navWrap {
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  header .headerWrap nav .navWrap {
    background: #00306D;
    margin-left: 20px;
    border-radius: 10px 0 0 10px;
    height: 100vh;
    padding: 130px 20px 40px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  header .headerWrap nav .navWrap {
    padding-top: 125px;
    gap: 40px;
  }
}
@media only screen and (max-width: 991px) {
  header .headerWrap nav .navWrap::before {
    content: "";
    position: absolute;
    top: 90px;
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
  }
}
@media only screen and (max-width: 767px) {
  header .headerWrap nav .navWrap::before {
    top: 95px;
  }
}
header .headerWrap nav .navWrap .innerWrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: #262624;
}
@media only screen and (max-width: 991px) {
  header .headerWrap nav .navWrap .innerWrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #fff !important;
  }
}
@media only screen and (max-width: 767px) {
  header .headerWrap nav .navWrap .innerWrap {
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }
}
header .headerWrap nav .navWrap .innerWrap .inner {
  height: fit-content;
}
header .headerWrap nav .navWrap .innerWrap .inner a {
  position: relative;
  margin-right: 20px;
  transition: all 0.2s ease;
  font-weight: 600;
}
header .headerWrap nav .navWrap .innerWrap .inner a::before {
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 10px;
  background: #00306D;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 991px) {
  header .headerWrap nav .navWrap .innerWrap .inner a::before {
    background: #fff !important;
  }
}
header .headerWrap nav .navWrap .innerWrap .inner a.is-current {
  padding-left: 15px;
  margin-right: 15px;
}
header .headerWrap nav .navWrap .innerWrap .inner a.is-current::before {
  width: 6px;
  height: 6px;
}
header .headerWrap nav .navWrap .innerWrap .inner a:hover {
  padding-left: 10px;
  margin-right: 10px;
}
header .headerWrap nav .navWrap .innerWrap .inner a:hover::before {
  width: 6px;
  height: 6px;
}
header .headerWrap nav .btnWrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  header .headerWrap nav .btnWrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  header .headerWrap nav .btnWrap {
    width: 100%;
    gap: 15px;
  }
}
header .headerWrap nav .btnWrap .btn {
  border-radius: 60px;
  height: fit-content;
  background: #00306D;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  header .headerWrap nav .btnWrap .btn {
    border: 1px solid #fff;
    width: 100%;
  }
}
header .headerWrap nav .btnWrap .btn a {
  display: block;
  width: max-content;
  padding: 15px 40px;
  position: relative;
  text-align: center;
  transition: 0.4s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media only screen and (max-width: 991px) {
  header .headerWrap nav .btnWrap .btn a {
    width: 100%;
  }
}
header .headerWrap nav .btnWrap .btn a .inner {
  font-weight: bold;
  transition: 0.4s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
header .headerWrap nav .btnWrap .btn:last-of-type {
  background: #3F69A0;
}
@media only screen and (max-width: 991px) {
  header .headerWrap nav .btnWrap .btn:last-of-type {
    background: #00306D;
  }
}
header.active .logoSymbol {
  transform: translateX(20px);
  filter: brightness(0) invert(1);
}
header.active .headerWrap nav {
  pointer-events: auto;
  transform: translateX(0%);
}

/*pnkz
------------------------------------------*/
.pnkzWrap .pnkz {
  position: absolute;
  top: 130px;
  left: 40px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  z-index: 9;
}
@media only screen and (max-width: 991px) {
  .pnkzWrap .pnkz {
    top: 80px;
    left: 20px;
    flex-wrap: wrap;
  }
}
.pnkzWrap .pnkz li {
  position: relative;
}
.pnkzWrap .pnkz li + li {
  padding-left: 60px;
}
@media only screen and (max-width: 767px) {
  .pnkzWrap .pnkz li + li {
    padding-left: 25px;
  }
}
.pnkzWrap .pnkz li + li::before {
  content: '>';
  display: block;
  position: absolute;
  top: 40%;
  left: 30px;
  font-size: 1.5rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .pnkzWrap .pnkz li + li::before {
    left: 13px;
  }
}
.pnkzWrap .pnkz li:last-child {
  cursor: none;
  pointer-events: none;
}
.pnkzWrap .pnkz p {
  color: #262624;
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .pnkzWrap .pnkz p {
    font-size: 1.1rem;
  }
}

/*sec-pageTtl
------------------------------------------*/
.sec-pageTtl {
  padding-top: 230px;
}
@media only screen and (max-width: 991px) {
  .sec-pageTtl {
    padding-top: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-pageTtl {
    padding-top: 160px;
    margin-bottom: 60px;
  }
}

/*footer
------------------------------------------*/
footer .footerCopyright {
  width: 100%;
  padding: 15px 0 10px;
  background: #2B5A2F;
}
footer .footerCopyright p {
  font-size: 12px;
  color: #fff;
  text-align: center;
}

/*footer
------------------------------------------
footer * {
  color: #fff;
}
footer .footerWrap {
  background: #36663A;
  padding: 150px 0 30px;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap {
    padding: 80px 0;
  }
}
footer .footerWrap .contentsWrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
footer .footerWrap .contentsWrap .contactWrap {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .contactWrap {
    width: 100%;
  }
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-right: 60px;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .contactWrap .innerWrap {
    flex-direction: column;
    margin-right: 0;
  }
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .logoWrap {
  margin-right: 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .contactWrap .innerWrap .logoWrap {
    width: 100%;
    margin-bottom: 40px;
  }
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .logoWrap a figure img {
  width: 347.86px;
  height: 50px;
}
@media only screen and (max-width: 1440px) {
  footer .footerWrap .contentsWrap .contactWrap .innerWrap .logoWrap a figure img {
    width: 278.29px;
    height: 40px;
  }
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .contactWrap .innerWrap .logoWrap a figure img {
    width: 278.29px;
    height: 40px;
  }
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap {
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap {
    width: 100%;
    padding-top: 40px;
    margin-bottom: 40px;
  }
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap p {
  font-size: clamp(1.2rem, 0.68vw, 1.3rem);
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap p {
    margin-bottom: 30px;
  }
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap .tel-num-wrap {
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap .tel-num-wrap {
    margin-bottom: 30px;
  }
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap .tel-num-wrap a {
  padding: 15px;
  display: block;
  background: #fff;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap .tel-num-wrap a .tel-num {
  text-align: center;
  padding-left: 30px;
  display: inline-block;
  color: #00306D;
  font-size: 2.0rem;
  position: relative;
  margin-bottom: 0;
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .telWrap .tel-num-wrap a .tel-num span {
  width: 15px;
  height: 15px;
  background: url("../../common/img/elements/phone.svg") top center/cover no-repeat;
  display: inline-block;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .snsWrap ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .contactWrap .innerWrap .snsWrap ul {
    gap: 20px;
  }
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .snsWrap ul li {
  width: 30px;
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .snsWrap ul li a {
  display: block;
}
footer .footerWrap .contentsWrap .contactWrap .innerWrap .snsWrap ul li.x {
  width: 22px;
}
footer .footerWrap .contentsWrap .indexWrap {
  width: 50%;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .indexWrap {
    width: 100%;
  }
}
footer .footerWrap .contentsWrap .indexWrap nav {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 767px) {
  footer .footerWrap .contentsWrap .indexWrap nav {
    flex-direction: column;
    padding-top: 40px;
  }
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap {
  width: 100%;
  margin-right: 30px;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .indexWrap nav .navWrap {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnWrap {
  display: flex;
  flex-direction: column;
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnWrap .inner {
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnWrap .inner {
    margin-bottom: 20px;
  }
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnWrap .inner a {
  font-size: clamp(1.2rem, 0.73vw, 1.4rem);
  position: relative;
  transition: all 0.2s ease;
  margin-right: 30px;
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnWrap .inner a::before {
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 10px;
  background: #fff;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  transition: all 0.2s ease;
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnWrap .inner a.is-current {
  padding-left: 15px;
  margin-right: 15px;
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnWrap .inner a.is-current::before {
  width: 6px;
  height: 6px;
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnWrap .inner a:hover {
  padding-left: 15px;
  margin-right: 15px;
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnWrap .inner a:hover::before {
  width: 6px;
  height: 6px;
}
footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnInnerWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnInnerWrap {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnInnerWrap .columnWrap {
    width: 60%;
  }
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .contentsWrap .indexWrap nav .navWrap .innerWrap .columnInnerWrap .columnWrap:last-of-type {
    width: 40%;
  }
}
footer .footerWrap .contentsWrap .indexWrap nav .btnWrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .footerWrap .contentsWrap .indexWrap nav .btnWrap .btn {
  height: fit-content;
}
footer .footerWrap .contentsWrap .indexWrap nav .btnWrap .btn a {
  display: block;
  padding: 15px 40px;
  text-align: center;
  min-width: 230px;
  border-radius: 60px;
  border: 1px solid #fff;
  color: #fff;
  transition: 0.4s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
footer .footerWrap .contentsWrap .indexWrap nav .btnWrap .btn a .inner {
  transition: 0.4s all cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
footer .footerWrap .contentsWrap .indexWrap nav .btnWrap .btn a .circleArrow {
  background: #00306D;
}
footer .footerWrap .contentsWrap .indexWrap nav .btnWrap .btn a .circleArrow span {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(70deg) brightness(99%) contrast(107%);
}
footer .footerWrap .contentsWrap .indexWrap nav .btnWrap .btn a:hover {
  background: #fff;
}
footer .footerWrap .contentsWrap .indexWrap nav .btnWrap .btn a:hover .inner {
  transform: translateX(-1.25rem);
  color: #00306D;
}
footer .footerWrap .contentsWrap .indexWrap nav .btnWrap .btn a:hover .circleArrow {
  clip-path: circle(50% at 50% 50%);
}
footer .footerWrap .bottomWrap {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .bottomWrap {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
footer .footerWrap .bottomWrap .privacy a {
  display: block;
  font-size: clamp(1rem, 0.625vw, 1.2rem);
}
footer .footerWrap .bottomWrap #copyright {
  text-align: right;
  font-size: clamp(1rem, 0.625vw, 1.2rem);
}
footer .footerWrap .site-ttl {
  margin-top: 120px;
  font-size: clamp(1rem, 0.625vw, 1.2rem);
}
@media only screen and (max-width: 991px) {
  footer .footerWrap .site-ttl {
    margin-top: 40px;
  }
}
*/

/*transform
------------------------------------------*/
.txtUp {
  overflow: hidden;
}
.txtUp span {
  transition: all 0.3s ease;
  transform: translateY(100%);
  display: block;
}
.txtUp.active span {
  transform: translateY(0%);
}
.txtUp.active.is-hidden span {
  transform: translateY(-100%);
}

/*inview
------------------------------------------*/
.del01 {
  transition-delay: 0.1s !important;
}

.del02 {
  transition-delay: 0.2s !important;
}

.del03 {
  transition-delay: 0.3s !important;
}

.del04 {
  transition-delay: 0.4s !important;
}

.del05 {
  transition-delay: 0.5s !important;
}

.del06 {
  transition-delay: 0.6s !important;
}

.del07 {
  transition-delay: 0.7s !important;
}

.del08 {
  transition-delay: 0.8s !important;
}

.del09 {
  transition-delay: 0.9s !important;
}

.del10 {
  transition-delay: 1s !important;
}

.view {
  transition: all 0.4s ease;
}

/*img-caps
------------------------------------------*/
figure {
  position: relative;
}

.img-caps {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 10px;
  line-height: 1;
  padding: 5px 5px 6px 6px;
  color: #fff;
  letter-spacing: -.02em;
  z-index: 5;
  text-align: right;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

.img-caps.black {
  color: #333;
}

.img-caps.shadow {
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8), 0px 0px 4px rgba(0, 0, 0, 0.8), 0px 0px 7px rgba(0, 0, 0, 0.8);
}

.img-caps.under {
  bottom: -22px;
}

.img-caps.left {
  left: 0;
  text-align: left;
}

.img-caps.bg {
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px 4px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .img-caps {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/*# sourceMappingURL=px-common.css.map */
