﻿@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
@-webkit-keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 8px;
    height: 8px;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}
@keyframes breath {
  0% {
  }
  50% {
    width: 100px;
    height: 100px;
  }
  100% {
  }
}
@keyframes ring {
  0% {
  }
  50% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@-webkit-keyframes ring {
  0% {
  }
  50% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@keyframes back {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -ms-transform: scale(1.8);
    -o-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}
@-webkit-keyframes back {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -ms-transform: scale(1.8);
    -o-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}
.ani-ring .front {
  display: inline-block;
  animation: ring 1.5s infinite;
}
.ani-ring .back {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  animation: back 1.5s infinite;
}
.ani-ring.time01 .front,
.ani-ring.time01 .back {
  animation-delay: 0.3s;
}
.ani-ring.time02 .front,
.ani-ring.time02 .back {
  animation-delay: 0.6s;
}
.ani-ring.time03 .front,
.ani-ring.time03 .back {
  animation-delay: 0.9s;
}
.ani-ring.time04 .front,
.ani-ring.time04 .back {
  animation-delay: 1.2s;
}
.loading-wrap {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10009;
  background: #eef7ff;
  -webkit-transition: 0.5s ease all;
  -moz-transition: 0.5s ease all;
  -ms-transition: 0.5s ease all;
  -o-transition: 0.5s ease all;
  transition: 0.5s ease all;
}
.loading-wrap.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.loading-wrap .lds-ripple {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -40px;
}
.loading-wrap .lds-ripple div {
  position: absolute;
  border: 4px solid #2578b3;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading-wrap .lds-ripple div:nth-child(2) {
  animation-delay: -0.7s;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
p {
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
input,
textarea {
  margin: 0;
  font-size: 100%;
  resize: none;
}
input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="url"] {
  word-break: normal;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
dl,
dt,
dd,
th,
td {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
dialog {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}
table img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 0;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*:focus {
  outline: none !important;
}
label,
select,
button {
  cursor: pointer;
}
input,
textarea,
select,
button {
  font-family: inherit;
}
a {
  outline: none;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media only screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.5;
  }
}
a:link,
a:visited,
a:active {
  color: #000;
  text-decoration: none;
}
.ffN {
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "メイリオ", "Osaka",
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.ffM {
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E",
    "ＭＳ Ｐ明朝", serif;
}
.ffYG {
  font-family: "游ゴシック体", "游ゴシック", "YuGothic", "Yu Gothic",
    "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.ffYM {
  font-family: "游明朝体", "游明朝", "YuMincho", "Yu Mincho", "Noto Serif JP",
    "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html.is-ipad * {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6em;
  word-break: break-word;
  color: #000;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}
.s-ja body {
  font-family: "Noto Sans JP", sans-serif;
}
#wrap {
  display: block;
  padding-top: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  #wrap {
    padding-top: 0;
  }
}
.innerWrap {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
.inner1280 {
  max-width: 1328px;
  padding: 0 24px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .sp,
  .SP {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc,
  .PC {
    display: none !important;
  }
}
.alignnone {
  margin: 5px 0 20px;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px auto;
}
.alignleft {
  float: left;
  margin: 5px auto 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px auto;
}
a img.alignnone {
  margin: 5px 0 20px;
}
a img.alignleft {
  float: left;
  margin: 5px auto 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  max-width: 100%;
  padding: 0;
  margin: 0;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 0 20px;
}
.wp-caption.alignleft {
  margin: 5px auto 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px auto;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
  border-radius: 32px;
}
.wp-caption p.wp-caption-text {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin: 16px 0 0;
  padding: 0;
}
.wp-video {
  max-width: 100%;
  width: 100% !important;
  margin-bottom: 40px;
  position: relative;
}
.wp-video:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 56.17978%;
}
.wp-video > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.wp-video br {
  display: none;
}
.wp-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
}
.cms-content {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2.2em;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.cms-content::after {
  content: "";
  clear: both;
  display: table;
}
.cms-content > *:last-child {
  margin-bottom: 0;
}
.cms-content ul,
.cms-content ol {
  padding-left: 16px;
  margin-bottom: 24px;
}
.cms-content ul[style*="list-style-type: circle;"] li {
  list-style-type: circle;
}
.cms-content ul[style*="list-style-type: square;"] li {
  list-style-type: square;
}
.cms-content ul li {
  position: relative;
}
.cms-content ul li:not(:last-child) {
  margin-bottom: 8px;
}
.cms-content ul li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #3887c3;
}
.cms-content ol[style*="list-style-type: lower-roman;"] li {
  list-style-type: lower-roman;
}
.cms-content ol[style*="list-style-type: lower-alpha;"] li {
  list-style-type: lower-alpha;
}
.cms-content ol[style*="list-style-type: lower-greek;"] li {
  list-style-type: lower-greek;
}
.cms-content ol[style*="list-style-type: upper-alpha;"] li {
  list-style-type: upper-alpha;
}
.cms-content ol[style*="list-style-type: upper-roman;"] li {
  list-style-type: upper-roman;
}
.cms-content ol li {
  list-style-type: decimal;
}
.cms-content p {
  margin-bottom: 24px;
}
.cms-content p + blockquote {
  margin-top: -4px;
}
.cms-content iframe {
  max-width: 100% !important;
  border-radius: 40px;
}
.cms-content img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  width: auto;
}
.cms-content table {
  table-layout: fixed;
  border: 1px solid #000;
  margin-bottom: 40px;
}
.cms-content table td,
.cms-content table th {
  border: 1px solid #000;
}
.cms-content h2 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 0 15px;
  margin: 56px 0 24px;
  position: relative;
}
.cms-content h2::before,
.cms-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: #3887c3;
}
.cms-content h2::before {
  left: 0px;
  width: 150px;
}
.cms-content h2::after {
  left: 160px;
  right: 0;
}
.cms-content h3 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 40px 0 24px;
  padding-left: 14px;
  position: relative;
}
.cms-content h3::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 4px;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg width='4' height='31' viewBox='0 0 4 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.399902' width='4' height='14.3762' fill='%233887C3'/%3E%3Crect y='16.2743' width='4' height='14.3762' fill='black'/%3E%3C/svg%3E")
    no-repeat top left/contain;
}
.cms-content h4 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  margin: 32px 0 16px;
}
.cms-content h4::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #3887c3;
}
.cms-content blockquote {
  background-color: rgba(56, 135, 195, 0.15);
  padding: 18px 16px;
  border-radius: 16px;
  margin: 20px 0;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.86667em;
}
.cms-content blockquote > *:last-child {
  margin-bottom: 0;
}
.cms-content a {
  color: #3887c3;
  text-decoration: underline;
}
.cms-content .two-column {
  margin: 32px 0 56px;
}
@media (min-width: 768px) {
  .cms-content .two-column {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .cms-content .two-column > .wp-caption {
    width: 48.877% !important;
  }
}
.cms-content .two-column > .wp-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cms-content {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2em;
    letter-spacing: 0em;
    font-weight: 400;
  }
  .cms-content ul,
  .cms-content ol {
    margin-bottom: 16px;
  }
  .cms-content ul li::before {
    top: 14px;
  }
  .cms-content h2 {
    margin: 40px 0 16px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.61111em;
    letter-spacing: 0em;
  }
  .cms-content h2::before {
    width: 80px;
  }
  .cms-content h2::after {
    left: 90px;
  }
  .cms-content h3 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.625em;
    letter-spacing: 0em;
    margin: 30px 0 20px;
  }
  .cms-content h3::before {
    content: "";
    top: 0;
    max-height: 52px;
    height: 100%;
    background-image: url("/wp/wp-content/themes/wp-templ/assets/img/common/icon/ico_h3.png");
    background-size: 100% 100%;
  }
  .cms-content h4 {
    margin: 16px 0 8px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6em;
    letter-spacing: 0em;
  }
  .cms-content h4::before {
    top: 9px;
  }
  .cms-content p {
    margin-bottom: 16px;
  }
  .cms-content blockquote {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143em;
    letter-spacing: 0em;
    font-weight: 400;
    margin: 16px 0;
    padding: 16px;
  }
  .cms-content .wp-video {
    position: relative;
    margin-bottom: 30px;
  }
  .cms-content .wp-video:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 59.02141%;
  }
  .cms-content .wp-video > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .cms-content .wp-video video {
    border-radius: 20px;
  }
  .cms-content .wp-caption {
    text-align: left;
  }
  .cms-content .wp-caption img {
    border-radius: 20px;
  }
  .cms-content .wp-caption .wp-caption-text {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143em;
    margin: 13px 0 0;
  }
  .cms-content .two-column {
    margin: 20px 0 40px;
  }
  .cms-content .two-column > .wp-caption:not(:last-child) {
    margin-bottom: 20px;
  }
}
.c-img {
  display: block;
  position: relative;
}
.c-img img {
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-img--contain img {
  object-fit: contain;
}
.c-img--top img {
  object-position: top;
}
.c-fw {
  width: 100%;
}
.is-openpop [data-aos^="fade"][data-aos^="fade"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.c-lazybg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-lazybg--top {
  background-position: center top;
}
.c-lazybg--contain {
  background-size: contain;
}
.bg-site {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  pointer-events: auto;
}
.bg-site img {
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.bg-site.is-show {
  opacity: 1;
}
@media (max-width: 767px) {
  .bg-site {
    min-height: 100vh;
  }
}
.c-btn01 {
  position: relative;
  text-align: left;
  display: inline-block;
  width: 100%;
  max-width: 240px;
  background-size: 100% 300%;
  background-image: linear-gradient(
    to bottom,
    #275994,
    #3788c3,
    #3788c3,
    #275994
  );
  padding: 18px 36px 16px 21px;
  border-radius: 50px;
  cursor: pointer;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.c-btn01:after {
  position: absolute;
  content: "";
  right: 21px;
  top: 50%;
  background: url("/wp/wp-content/themes/wp-templ/assets/img/common/icon/icn_arr01.svg")
    no-repeat left top;
  background-size: 100% auto;
  width: 15px;
  height: 15px;
  margin: -8px 0 0;
}
.c-btn01 .txt {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.27778em;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.c-btn01.black {
  background-image: linear-gradient(to bottom, #000, #676767, #676767, #000);
}
.c-btn01.black-2 {
  background-image: linear-gradient(to bottom, #000, #414141, #414141, #000);
}
.c-btn01.white {
  background-image: linear-gradient(to bottom, #fff, #d3d3d3, #d3d3d3, #fff);
}
@media only screen and (min-width: 1025px) {
  .c-btn01:hover {
    opacity: 1;
    background-position: 0% 100%;
  }
}
@media (max-width: 767px) {
  .c-btn01 {
    max-width: 220px;
    padding: 11px 30px 12px 27px;
  }
  .c-btn01:after {
    right: 15px;
    width: 11px;
    height: 11px;
    margin: -6px 0 0;
  }
  .c-btn01 .txt {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.26667em;
  }
}
.c-btn02 {
  position: relative;
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 240px;
  background-size: 100% 300%;
  background-image: linear-gradient(
    to bottom,
    #919191,
    #d3d3d3,
    #d3d3d3,
    #919191
  );
  padding: 15px 37px 15px 26px;
  border-radius: 50px;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.c-btn02:after {
  position: absolute;
  content: "";
  left: 21px;
  top: 50%;
  background: url("/wp/wp-content/themes/wp-templ/assets/img/common/icon/icn_arr03.svg")
    no-repeat left top;
  background-size: 100% auto;
  width: 15px;
  height: 15px;
  margin: -7px 0 0;
}
.c-btn02 .txt {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.27778em;
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media only screen and (min-width: 1025px) {
  .c-btn02:hover {
    opacity: 1;
    background-position: 0% 100%;
  }
}
@media (max-width: 767px) {
  .c-btn02 {
    max-width: 220px;
    padding: 9px 10px 9px 20px;
  }
  .c-btn02:after {
    left: 15px;
    width: 11px;
    height: 11px;
    margin: -5px 0 0;
  }
  .c-btn02 .txt {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.26667em;
  }
}
.btn-as,
.btn-gp {
  padding: 7px 0 9px 67px;
  width: 100%;
  color: #fff !important;
}
.s-ja .btn-as,
.s-ja .btn-gp {
  padding-left: 56px;
}
@media (max-width: 767px) {
  .s-ja .btn-as,
  .s-ja .btn-gp {
    padding: 8px 0 8px 39px !important;
  }
}
.s-ja .btn-as strong,
.s-ja .btn-gp strong {
  position: relative;
  top: -1px;
}
@media (max-width: 767px) {
  .s-ja .btn-as strong,
  .s-ja .btn-gp strong {
    top: -3px;
  }
}
.btn-as:after,
.btn-gp:after {
  display: none;
}
@media (max-width: 767px) {
  .btn-as,
  .btn-gp {
    padding: 8px 0 8px 45px !important;
  }
}
.btn-as span,
.btn-gp span {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 17px;
}
@media (max-width: 767px) {
  .btn-as span,
  .btn-gp span {
    font-size: 10px;
    font-size: 1rem;
    line-height: 14px;
    margin-block: -2px;
  }
}
.btn-as strong,
.btn-gp strong {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
@media (max-width: 767px) {
  .btn-as strong,
  .btn-gp strong {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 18px;
    letter-spacing: 0;
  }
}
.s-ja .btn-as:before {
  left: 19px;
}
@media (max-width: 767px) {
  .s-ja .btn-as:before {
    left: 14px;
  }
}
.btn-as:before {
  position: absolute;
  content: "";
  background: url("/wp/wp-content/themes/wp-templ/assets/img/lp/ico_as.svg")
    no-repeat center center;
  background-size: 100% 100%;
  width: 23px;
  height: 28px;
  left: 26px;
  top: 50%;
  margin-top: -15px;
}
@media (max-width: 767px) {
  .btn-as:before {
    width: 16px;
    height: 20px;
    margin-top: -11px;
    left: 17px;
  }
}
.btn-gp {
  padding-left: 60px;
}
@media (max-width: 767px) {
  .btn-gp {
    padding-left: 43px !important;
  }
}
@media (max-width: 767px) {
  .s-ja .btn-gp {
    padding-left: 38px !important;
  }
}
.s-ja .btn-gp:before {
  left: 20px;
}
@media (max-width: 767px) {
  .s-ja .btn-gp:before {
    left: 14px;
  }
}
.btn-gp:before {
  position: absolute;
  content: "";
  background: url("/wp/wp-content/themes/wp-templ/assets/img/lp/ico_gp.svg")
    no-repeat center center;
  background-size: 100% 100%;
  width: 23px;
  height: 26px;
  left: 24px;
  top: 50%;
  margin-top: -13px;
}
@media (max-width: 767px) {
  .btn-gp:before {
    width: 16px;
    height: 18px;
    margin-top: -9px;
    left: 17px;
  }
}
.c-list01 li {
  position: relative;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.73333em;
  letter-spacing: 0.04em;
  font-weight: 500;
  list-style-type: none;
  padding-left: 14px;
}
.c-list01 li:after {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.73333em;
  letter-spacing: 0.04em;
  font-weight: 500;
  position: absolute;
  content: "";
  left: 0;
  top: 12px;
  background: #000;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.c-ttl01 {
  text-align: center;
  position: relative;
  padding: 40px 0 0;
}
.c-ttl01:before {
  position: absolute;
  content: "";
  background: url("/wp/wp-content/themes/wp-templ/assets/img/common/icon/icn_heart03_new.png")
    no-repeat center center;
  background-size: 100% auto;
  width: 74px;
  height: 61px;
  right: 0;
  top: -19px;
  left: 0;
  margin: 0 auto;
}
.c-ttl01 .ttl-small {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.73333em;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: capitalize;
}
.c-ttl01 .ttl-large {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.27083em;
  letter-spacing: 0.02em;
  font-weight: bold;
  text-transform: uppercase;
  margin: 12px 0 0;
}
.c-ttl01 .ttl-large .en {
  font-style: normal;
}
.s-ja .c-ttl01 .ttl-large {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 1.30435em;
  letter-spacing: 0.05em;
  text-transform: none;
}
.s-ja .c-ttl01 .ttl-large .en {
  font-family: "Space Grotesk", sans-serif;
  font-size: 49px;
  font-size: 4.9rem;
  line-height: 1.22449em;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 768px) and (max-width: 1180px) {
  .c-ttl01 .ttl-large {
    font-size: 45px;
    font-size: 4.5rem;
    line-height: 1.22222em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 980px) {
  .c-ttl01 .ttl-large {
    font-size: 42px;
    font-size: 4.2rem;
    line-height: 1.2381em;
  }
}
@media (max-width: 767px) {
  .c-ttl01 {
    padding: 24px 0 0;
  }
  .c-ttl01:before {
    top: -34px;
  }
  .c-ttl01 .ttl-small {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.28571em;
  }
  .c-ttl01 .ttl-large {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.25em;
    margin: 12px 0 0;
  }
  .s-ja .c-ttl01 .ttl-large {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 29px;
    font-size: 2.9rem;
    line-height: 1.37931em;
    letter-spacing: 0.05em;
    margin: 6px 0 0;
  }
  .s-ja .c-ttl01 .ttl-large .en {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.25em;
    letter-spacing: 0.02em;
    font-family: "Space Grotesk", sans-serif;
  }
}
.c-ttl02 {
  text-align: center;
  position: relative;
  padding: 30px 0 0;
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1.27083em;
  letter-spacing: 0.02em;
  font-weight: bold;
  font-family: "Space Grotesk", sans-serif;
}
.c-ttl02 .orange01 {
  color: #fe6624;
}
.s-ja .c-ttl02 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 1.30435em;
  letter-spacing: 0.05em;
}
.s-ja .c-ttl02 small {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.42857em;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .c-ttl02 {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.25em;
  }
  .s-ja .c-ttl02 {
    font-size: 29px;
    font-size: 2.9rem;
    line-height: 1.44828em;
    letter-spacing: 0.05em;
  }
  .s-ja .c-ttl02 small {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.44444em;
  }
}
.popup-youtube {
  position: relative;
  max-width: 760px;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  cursor: default !important;
  pointer-events: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .popup-youtube {
    margin-top: 36px;
  }
}
.popup-youtube .youtube_icon {
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  -ms-transition: 0.4s ease all;
  -o-transition: 0.4s ease all;
  transition: 0.4s ease all;
  position: absolute;
  z-index: 2;
  top: 44%;
  left: 48.5%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("/wp-content/themes/wp-templ/assets/img/common/icon/icn_play01.svg")
    no-repeat left top;
  background-size: 100% auto;
  background-size: cover;
}
@media (min-width: 768px) {
  .popup-youtube .youtube_icon {
    width: 98px;
    height: 98px;
  }
}
@media (max-width: 767px) {
  .popup-youtube .youtube_icon {
    width: 70px;
    height: 70px;
  }
}
.popup-youtube .ifr-img {
  position: relative;
}
@media only screen and (min-width: 1025px) {
  .popup-youtube:hover .youtube_icon {
    background-image: url("/wp/wp-content/themes/wp-templ/assets/img/common/icon/icn_play01_hv.svg");
  }
}
.popup-youtube-iframe {
  -webkit-transition: 0.4s ease all;
  -moz-transition: 0.4s ease all;
  -ms-transition: 0.4s ease all;
  -o-transition: 0.4s ease all;
  transition: 0.4s ease all;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: 9999999;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000b8;
}
.popup-youtube-iframe .ifr-ico {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  display: inline-block;
  width: 60px;
  height: 60px;
  z-index: 10049;
  background-image: url("data:image/svg+xml,%3Csvg id='Component_29_6' data-name='Component 29 – 6' xmlns='http://www.w3.org/2000/svg' width='33.941' height='33.941' viewBox='0 0 33.941 33.941'%3E%3Cg id='Group_3628' data-name='Group 3628' transform='translate(-32.313 21.706) rotate(-45)'%3E%3Cline id='Line_950' data-name='Line 950' x2='24' transform='translate(38.197 19.5) rotate(90)' fill='none' stroke='%23fff' stroke-width='2'/%3E%3Cline id='Line_952' data-name='Line 952' x2='24' transform='translate(26.197 31.5)' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .popup-youtube-iframe .ifr-ico {
    width: 34px;
    height: 34px;
  }
}
.popup-youtube-iframe .ifr-ico span {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
  text-indent: -99999px;
}
.popup-youtube-iframe.is-show {
  opacity: 1;
  pointer-events: auto;
}
.popup-youtube-iframe iframe,
.popup-youtube-iframe video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.popup-youtube-iframe .ifr-iframe__inner {
  position: relative;
  max-width: 85%;
  width: 100%;
  max-height: 85%;
  position: relative;
}
.popup-youtube-iframe .ifr-iframe__inner:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 202.22222%;
}
.popup-youtube-iframe .ifr-iframe__inner > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .popup-youtube-iframe .ifr-iframe__inner {
    max-width: 760px;
    position: relative;
  }
  .popup-youtube-iframe .ifr-iframe__inner:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 151.2%;
  }
  .popup-youtube-iframe .ifr-iframe__inner > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.sec01 {
  padding: 186px 0 0;
  position: relative;
  z-index: 225;
}
@media (min-width: 768px) {
  .sec01 {
    margin-bottom: -117px;
  }
}
.sec01 .block {
  margin: -16px 0 -25px;
}
.sec01 .block-info .desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0em;
  font-weight: 400;
  padding-right: 20px;
}
.sec01 .block-info .desc p {
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: -0.1px;
}
@media (max-width: 767px) {
  .sec01 .block-info .desc p {
    margin-bottom: 26px;
  }
}
.sec01 .block-info .desc p:last-child {
  margin-bottom: 0;
}
.sec01 .block-info .note01 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2em;
  margin: 20px 0 0;
}
.sec01 .block-info .block-btn {
  margin: 26px 0 0 0;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 22;
}
.sec01 .block-info .block-btn li {
  width: 176px;
}
.sec01 .block-info .block-btn li:first-child {
  margin-right: 8px;
}
@media (max-width: 767px) {
  .sec01 .block-info .block-btn li {
    width: 133px;
  }
  .sec01 .block-info .block-btn li:first-child {
    margin-right: 5px;
  }
}
.sec01 .block-info .group-pic {
  margin: -20px -28px 0 -75px;
  position: relative;
}
.sec01 .block-info .group-pic:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 37.26708%;
}
.sec01 .block-info .group-pic > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 1180px) {
  .sec01 .block-info .group-pic {
    margin-top: -2px;
  }
}
.sec01 .block-info .group-pic .heart {
  position: absolute;
}
.sec01 .block-info .group-pic .pic01 {
  position: absolute;
  bottom: 68%;
  width: 18%;
  left: -16.9%;
}
.sec01 .block-info .group-pic .pic01 .heart {
  right: -22%;
  top: 21%;
  width: 23%;
}
.sec01 .block-info .group-pic .pic02 {
  position: absolute;
  top: -78%;
  left: -1.5%;
  width: 11%;
}
.sec01 .block-info .group-pic .pic02 .heart {
  right: -59%;
  top: 61%;
  width: 39%;
}
.sec01 .block-info .group-pic .pic02 .heart.heart03 {
  right: -66%;
  top: 25%;
  width: 19%;
}
.sec01 .block-info .group-pic .pic03 {
  position: absolute;
  bottom: 68.8%;
  width: 19.5%;
  right: 6%;
}
.sec01 .block-info .group-pic .pic04 {
  position: absolute;
  top: -64.1%;
  width: 17%;
  right: -12.6%;
}
.sec01 .block-info .group-pic .pic04 .heart {
  left: 14%;
  bottom: -76%;
  width: 24%;
}
@media (min-width: 768px) {
  .sec01 .block {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sec01 .block-img {
    width: 57.8%;
    margin: 0 0 -24px -5.5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .sec01 .block-img {
    width: 53.8%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .sec01 .block-img {
    width: 50.8%;
  }
}
@media (min-width: 768px) {
  .sec01 .block-info {
    width: 47.5%;
    padding: 44px 31px 0 31px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .sec01 .block-info {
    padding-left: 0;
    width: 51.5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .sec01 .block-info {
    padding-left: 0;
    width: 54.5%;
  }
}
.sec01 .innerWrap {
  max-width: 1300px;
}
@media (max-width: 767px) {
  .sec01 {
    padding: 87px 0 0;
  }
  .sec01 .block {
    margin: -5px 0 0 0;
  }
  .sec01 .block-info .desc {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.73333em;
    padding-right: 6px;
  }
  .sec01 .block-info .note01 {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.84615em;
  }
  .sec01 .block-info .block-btn {
    margin: 30px auto 0;
    text-align: center;
    max-width: 300px;
    justify-content: center;
  }
  .sec01 .block-info .group-pic {
    display: none;
  }
  .sec01 .block-img {
    text-align: center;
    margin: 0 -8px 11px;
  }
  .sec01 .block-img .group-pic02 {
    margin: -81px auto 0;
    position: relative;
    width: 100%;
    max-width: 243px;
  }
  .sec01 .block-img .group-pic02:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 43.379%;
  }
  .sec01 .block-img .group-pic02 > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .sec01 .block-img .group-pic02 .heart {
    position: absolute;
  }
  .sec01 .block-img .group-pic02 .pic01 {
    position: absolute;
    top: 0%;
    width: 36%;
    left: -41px;
  }
  .sec01 .block-img .group-pic02 .pic01 .heart {
    right: -32%;
    top: 23%;
    width: 22%;
  }
  .sec01 .block-img .group-pic02 .pic02 {
    position: absolute;
    top: 33%;
    left: 52%;
    width: 25.7%;
  }
  .sec01 .block-img .group-pic02 .pic02 .heart {
    right: -43%;
    top: 66%;
    width: 26%;
  }
  .sec01 .block-img .group-pic02 .pic02 .heart.heart03 {
    right: -56%;
    top: 41%;
    width: 13%;
  }
}
.sidebar {
  position: sticky;
  top: 100px;
}
.sidebar__inner {
  counter-reset: er-number;
}
.sidebar__inner:not(:last-child) {
  margin-bottom: 50px;
}
.sidebar__title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45em;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
  padding: 10px 30px 11px;
  background-color: #0d446d;
  position: relative;
  border-radius: 30px;
}
.s-vn .sidebar__title {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.02em;
}
.sidebar__title span {
  position: relative;
  z-index: 1;
}
.sidebar__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 30px;
  bottom: 0;
  background: #3788c3;
  background: linear-gradient(270deg, #3788c3 0%, #0d446d 100%);
  border-radius: 30px;
}
.sidebar__list {
  margin: 25px auto 0;
}
.sidebar__list.cate-list {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.46667em;
  letter-spacing: 0.1em;
  font-weight: 500;
  max-width: 270px;
  width: 100%;
}
.s-vn .sidebar__list.cate-list {
  letter-spacing: 0.03em;
}
.sidebar__list.cate-list > li {
  padding: 20px 0 20px;
}
.sidebar__list.cate-list > li:not(:last-child) {
  border-bottom: 1px solid rgba(26, 24, 24, 0.1);
}
.sidebar__list.cate-list > li:first-child {
  padding-top: 0;
}
.sidebar__list.cate-list > li:last-child {
  padding-bottom: 0;
}
.sidebar__list.cate-list > li > a {
  position: relative;
  display: block;
  padding-right: 30px;
}
.sidebar__list.cate-list > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 0.5C7 0.5 2.8 4.7 1 6.5M7 0.5H1.64291M7 0.5V5.42857' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center/8px 7px;
  background-color: #3887c3;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
}
.sidebar__list.cate-list > li > ul {
  margin: 17px 0 0;
}
.sidebar__list.cate-list > li > ul li {
  position: relative;
  padding-left: 20px;
}
.sidebar__list.cate-list > li > ul li:not(:last-child) {
  margin-bottom: 12px;
}
.sidebar__list.cate-list > li > ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  width: 7px;
  height: 8px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg width='7' height='8' viewBox='0 0 7 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 3.13397C7.16667 3.51887 7.16667 4.48113 6.5 4.86603L2 7.4641C1.33333 7.849 0.5 7.36788 0.5 6.59808L0.5 1.40192C0.5 0.632124 1.33333 0.150998 2 0.535898L6.5 3.13397Z' fill='%233788C3'/%3E%3C/svg%3E")
    no-repeat center/contain;
}
.sidebar__item:not(:last-child) {
  margin-bottom: 20px;
}
.sidebar__item:nth-child(2) .er-post__number {
  background: url("/wp/wp-content/themes/wp-templ/assets/img/common/icon/icn_ernumber02.png")
    no-repeat center/contain;
}
.sidebar__item:nth-child(3) .er-post__number {
  background: url("/wp/wp-content/themes/wp-templ/assets/img/common/icon/icn_ernumber03.png")
    no-repeat center/contain;
}
.sidebar__item:nth-child(n + 4) .er-post__number {
  background: url("/wp/wp-content/themes/wp-templ/assets/img/common/icon/icn_ernumber04.png")
    no-repeat center/contain;
}
.sidebar .er-post {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  cursor: pointer;
}
.sidebar .er-post__img {
  width: 43.94%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  isolation: isolate;
}
.sidebar .er-post__img:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 56.55172%;
}
.sidebar .er-post__img > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sidebar .er-post__img img {
  transition: 0.3s;
}
.sidebar .er-post__number {
  position: absolute;
  top: -1px;
  left: 5px;
  width: 31px;
  height: 43px;
  background: url("/wp/wp-content/themes/wp-templ/assets/img/common/icon/icn_ernumber01.png")
    no-repeat center/contain;
}
.sidebar .er-post__number::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: #fff;
  content: counter(er-number);
  counter-increment: er-number;
  padding: 5px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.33333em;
  letter-spacing: 0em;
  font-weight: 800;
}
.sidebar .er-post__number svg {
  display: none;
}
.sidebar .er-post__content {
  width: 51.516%;
}
.sidebar .er-post__cate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.33333em;
  letter-spacing: 0em;
  font-weight: 700;
  color: #3f96d4;
}
.sidebar .er-post__ttl {
  margin: 10px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857em;
  letter-spacing: 0.1em;
  font-weight: 600;
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: normal;
}
.s-vn .sidebar .er-post__ttl {
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 1025px) {
  .sidebar .er-post:hover {
    opacity: 1;
  }
  .sidebar .er-post:hover .er-post__img img {
    transform: scale(1.1);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar__title {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .sidebar__inner:not(:last-child) {
    margin-bottom: 40px;
  }
  .sidebar__title {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 8px 24px 10px;
  }
  .sidebar__item:not(:last-child) {
    margin-bottom: 16px;
  }
  .sidebar .er-post__img {
    width: 36.7%;
  }
  .sidebar .er-post__content {
    width: 58.72%;
  }
  .sidebar .er-post__cate {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.36364em;
  }
  .sidebar .er-post__ttl {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.53846em;
    letter-spacing: 0.06em;
  }
}
.c-list02 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .c-list02__item {
    margin: 0 25px 0 0;
    width: calc(1 / 3 * 100% - (1 - 1 / 3) * 25px);
  }
  .c-list02__item:nth-child(3n) {
    margin-right: 0;
  }
  .c-list02__item:nth-child(n + 4) {
    margin-top: 40px;
  }
}
.c-list02__link {
  display: block;
  cursor: pointer;
}
@media only screen and (min-width: 1025px) {
  .c-list02__link:hover {
    opacity: 1;
  }
  .c-list02__link:hover .c-list02__img img {
    transform: scale(1.1);
  }
  .c-list02__link:hover .c-list02__tags::before {
    width: 100%;
  }
  .c-list02__link:hover .c-list02__ttl {
    color: #3887c3;
  }
}
.c-list02__content {
  margin: 16px 0 0;
  padding: 0 10px;
}
.c-list02__tags {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.33333em;
  letter-spacing: 0em;
  font-weight: 700;
  padding: 0 0 15px;
  position: relative;
}
@media (min-width: 768px) {
  .c-list02__tags {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
}
.s-vn .c-list02__tags {
  letter-spacing: 0.03em;
}
.c-list02__tags::before,
.c-list02__tags::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
}
.c-list02__tags::before {
  width: 60px;
  background-color: #3f96d4;
  transition: width 0.3s;
}
.c-list02__tags::after {
  left: 64px;
  right: 0;
  background-color: rgba(26, 24, 24, 0.1);
}
.c-list02__img {
  overflow: hidden;
  border-radius: 15px;
  isolation: isolate;
  position: relative;
}
.c-list02__img:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 56.42857%;
}
.c-list02__img > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-list02__img img {
  transition: transform 0.3s;
}
.c-list02__cate {
  color: #3887c3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .c-list02__cate {
    padding-right: 10px;
  }
}
.c-list02__date {
  white-space: nowrap;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
}
.c-list02__ttl {
  margin: 15px 0 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  font-weight: 600;
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: normal;
  transition: color 0.3s;
}
.s-vn .c-list02__ttl {
  letter-spacing: 0.03em;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .c-list02__item {
    width: calc(1 / 2 * 100% - (1 - 1 / 2) * 25px);
  }
  .c-list02__item:nth-child(3n) {
    margin-right: 25px;
  }
  .c-list02__item:nth-child(2n) {
    margin-right: 0;
  }
  .c-list02__item:nth-child(n + 3) {
    margin-top: 25px;
  }
  .c-list02__img img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .c-list02 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }
  .c-list02__item {
    width: 48.013%;
  }
  .c-list02__item:nth-child(n + 3) {
    margin: 31px 0 0;
  }
  .c-list02__img img {
    width: 100%;
  }
  .c-list02__content {
    padding: 0 6px;
    margin: 15px 0 0;
  }
  .c-list02__tags {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.36364em;
    letter-spacing: 0em;
    font-weight: 700;
    padding: 0 0 13px;
  }
  .c-list02__date {
    font-weight: 500;
    margin: 2px 0 0;
  }
  .c-list02__ttl {
    margin: 12px 0 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857em;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
.txt-jp {
  display: none !important;
}
.txt-en {
  display: none !important;
}
.s-ja .txt-jp {
  display: block !important;
}
.s-en .txt-en {
  display: block !important;
}
.s-ja .txt-vn {
  display: none;
}
.s-en .txt-vn {
  display: none;
}

#footer {
  background: #000;
  position: relative;
  z-index: 26;
  padding: 27px 0 40px;
}
#footer:before {
  position: absolute;
  content: "";
  background: #000;
  z-index: 2;
  left: 0;
  top: -30px;
  right: 0;
  height: 100px;
  pointer-events: none;
}
#footer .innerWrap {
  position: relative;
  z-index: 222;
  max-width: 1345px;
}
#footer .list-btn-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-block: 21px;
}
@media (max-width: 767px) {
  #footer .list-btn-footer {
    justify-content: center;
  }
}
#footer .list-btn-footer li {
  width: 176px;
}
@media (max-width: 767px) {
  #footer .list-btn-footer li {
    width: 133px;
  }
}
#footer .list-btn-footer li:first-child {
  margin-right: 8px;
}
#footer .list-btn-footer li a {
  color: #000 !important;
}
#footer .list-btn-footer li a.btn-as:before {
  background-image: url("/wp/wp-content/themes/wp-templ/assets/img/lp/ico_as_black.svg");
}
@media (min-width: 768px) {
  #footer .fblock01 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
  #footer .fblock01-left {
    max-width: 52%;
  }
  #footer .fblock01-right {
    max-width: 45%;
    padding-bottom: 2px;
  }
}
#footer .f-link01 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 0 5px;
}
#footer .f-link01 li {
  margin-right: 22px;
}
@media (min-width: 768px) {
  #footer .f-link01 li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  #footer .f-link01 li {
    width: 42%;
  }
  #footer .f-link01 li:last-child {
    width: 100%;
  }
}
#footer .f-link01 li a {
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857em;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-decoration: underline;
}
#footer .f-sns ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#footer .f-sns ul li {
  margin-left: 31px;
}
#footer .f-sns ul li:first-child {
  margin-left: 0;
}
#footer .cp-right {
  color: #fff;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857em;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin: 24px 0 0;
}
@media (max-width: 767px) {
  #footer {
    padding: 11px 0 40px;
  }
  #footer:before {
    left: 0;
    top: -30px;
    right: 0;
  }
  #footer .fblock01-right {
    padding: 0;
    margin: 32px 0 0;
  }
  #footer .f-link01 {
    justify-content: center;
    margin: 0 -13px 5px;
  }
  #footer .f-link01 li {
    margin: 0 13px 10px;
    text-align: center;
  }
  #footer .f-link01 li a {
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857em;
    letter-spacing: 0em;
    font-weight: 500;
    text-decoration: underline;
  }
  #footer .f-sns ul {
    justify-content: center;
  }
  #footer .f-sns ul li {
    margin-left: 31px;
  }
  #footer .f-sns ul li:first-child {
    margin-left: 0;
  }
  #footer .cp-right {
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667em;
    margin: 24px 0 0;
  }
}
.fixed-btn {
  height: 62px;
  background: #fff;
  position: fixed;
  z-index: 999;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px 10px 8px 10px;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
@media (min-width: 768px) {
  .fixed-btn {
    display: none !important;
  }
}
.fixed-btn.go-down {
  opacity: 0;
  pointer-events: none;
}
.fixed-btn ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 267px;
  margin: 0 auto;
}
.fixed-btn ul li .c-btn01 {
  padding: 9px 22px 10px 5px;
}
@media (max-width: 767px) {
  .fixed-btn ul li .c-btn01 {
    text-align: center;
  }
}
.fixed-btn ul li .c-btn01 .txt {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.41667em;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 360px) {
  .fixed-btn ul li .c-btn01 .txt {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.54545em;
  }
}
.fixed-btn ul li.btn01 {
  width: 56%;
  margin-right: 2%;
}
.s-ja .fixed-btn ul li.btn01 {
  width: 42%;
}
.fixed-btn ul li.btn02 {
  width: 42%;
}
.s-ja .fixed-btn ul li.btn02 {
  width: 56%;
}
@media (max-width: 767px) {
  .s-ja .fixed-btn ul .btn01 {
    width: 100% !important;
    text-align: center;
    margin: 0 auto;
  }
  .s-ja .fixed-btn ul .btn01 .c-btn01 {
    width: 150px;
  }
  .s-ja #footer .f-link01 li {
    width: 28%;
  }
  .s-ja #footer .f-link01 li:last-child {
    width: 100%;
  }
}
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
}
.header .inHeader {
  position: relative;
  z-index: 2000;
  padding: 22px 29px 10px 35px;
}
.header .hlogo {
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
  padding: 14px 0 0 10px;
}
.header .hlogo a {
  display: block;
}
.header .inHeader {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.header .inHeader-fixed {
  position: fixed;
  left: 20px;
  right: 20px;
  top: 20px;
  z-index: 1000;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .header .inHeader-fixed {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
    background: #fff;
    border-radius: 53px;
    padding: 5px 5px 5px 25px;
    max-width: 870px;
    margin: 0 auto;
  }
}
.header .hlang {
  position: absolute;
  top: 22px;
  right: 25px;
  width: 180px;
  padding: 8px 0 0;
}
.header .hlang ul {
  width: 100%;
  height: 40px;
  background: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-radius: 26px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);
  padding: 4px;
}
.header .hlang ul li {
  width: 50%;
}
.header .hlang ul li a {
  border-radius: 26px;
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.header .hlang ul li a span {
  font-family: "Space Grotesk", sans-serif;
  color: #000;
  width: 100%;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3125em;
  letter-spacing: 0em;
  font-weight: bold;
}
.header .hlang ul li a.is-act {
  background: #000000;
}
.header .hlang ul li a.is-act span {
  color: #fff;
}
.header .hlogo02 {
  position: absolute;
  left: 16px;
  top: 21px;
  z-index: 22;
}
@media (min-width: 768px) {
  .header .hlogo02 {
    display: none;
  }
}
.header.is-scrolling .hlang {
  position: fixed;
}
.header.is-scrolling .inHeader-fixed {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .header .inHeader {
    position: relative;
    z-index: 2000;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    padding: 18px 22px 10px 17px;
  }
  .header .hlogo {
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    padding: 0;
    width: 116px;
    margin: 3px 0 0 -1px;
  }
  .header .inHeader-fixed {
    left: auto;
    right: 18px;
    top: 10px;
    z-index: 1011;
  }
  .header .hlang {
    width: 120px;
    padding: 4px 0 0;
  }
  .header .hlang ul {
    height: 32px;
    padding: 2px;
  }
  .header .hlang ul li a span {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.33333em;
  }
  .header.is-scrolling .hlang {
    top: 19px;
    right: 85px;
  }
}
.layerMenu {
  text-align: right;
  position: relative;
}
.layerMenu .hnavi {
  width: 200px;
}
.layerMenu .hnavi .hbtn01 {
  width: 100%;
}
.layerMenu .hnavi .hbtn01 .c-btn01 {
  display: inline-block;
  max-width: 100%;
  padding: 11px 35px 11px 15px;
  text-align: center;
}
.layerMenu .hnavi .hbtn01 .c-btn01 .txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3125em;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.layerMenu .gNavi > li {
  width: auto;
  font-weight: bold;
  position: relative;
}
.layerMenu .gNavi > li > a {
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
}
.s-ja .layerMenu .gNavi > li > a {
  font-family: "Noto Sans JP", sans-serif;
}

.s-en .layerMenu .gNavi > li > a {
  font-family: "Space Grotesk", sans-serif;
}

@media (min-width: 768px) {
  .layerMenu .gNavi > li > a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    height: 49px;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    padding: 10px 19px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.3125em;
    letter-spacing: 0em;
    font-weight: 500;
  }
  .s-ja .layerMenu .gNavi > li > a {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4em;
    letter-spacing: 0em;
    font-weight: 600;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1080px) {
  .layerMenu .gNavi > li > a {
    padding: 10px 13px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 980px) {
  .layerMenu .gNavi > li > a {
    padding: 10px 10px;
  }
}
@media (min-width: 768px) {
  .layerMenu .gNavi > li > a span {
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) {
  .layerMenu .gNavi > li > a:hover {
    opacity: 1;
    background: rgba(55, 136, 195, 0.25);
    border-radius: 26px;
  }
}
@media (min-width: 768px) {
  .layerMenu .gNavi {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    width: calc(100% - 220px);
  }
}
@media (min-width: 768px) {
  .layerMenu .inLayer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .layerMenu {
    position: fixed;
    right: 0%;
    top: 0;
    z-index: 1005;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -ms-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    transition: 0.5s ease all;
    background: #fff
      url("/wp/wp-content/themes/wp-templ/assets/img/common/hmenu_bg_blue.png")
      repeat-y center top;
    background-size: 100% auto;
    opacity: 0;
    pointer-events: none;
  }
  .layerMenu.menu_opened {
    opacity: 1;
    pointer-events: auto;
  }
  .layerMenu .inLayer {
    position: relative;
    height: 100%;
    padding: 135px 30px 30px;
    overflow: auto;
  }
}
@media only screen and (max-width: 767px) and (max-width: 360px) {
  .layerMenu .inLayer {
    padding: 115px 30px 30px;
  }
}
@media (max-width: 767px) {
  .layerMenu .hnavi {
    width: 220px;
    margin: 56px 0 0;
  }
  .layerMenu .hnavi .hbtn01 {
    width: 100%;
  }
  .layerMenu .hnavi .hbtn01 .c-btn01 {
    padding: 10px 18px 10px 15px;
  }
  .layerMenu .hnavi .hbtn01 .c-btn01 .txt {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.26667em;
  }
  .layerMenu .gNavi > li {
    margin-bottom: 28px;
  }
  .layerMenu .gNavi > li > a {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.30769em;
    letter-spacing: 0em;
    font-weight: 500;
    position: relative;
    text-align: left;
  }
  .s-ja .layerMenu .gNavi > li > a {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.45455em;
    letter-spacing: 0em;
    font-weight: 600;
  }
  .layerMenu .gNavi > li > a span {
    position: relative;
    display: inline-block;
    padding: 0 35px 0 0;
  }
  .layerMenu .gNavi > li > a span:after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    background: url("/wp/wp-content/themes/wp-templ/assets/img/common/icon/ico_arr_blue.png")
      no-repeat left top;
    background-size: 100% auto;
    width: 14px;
    height: 14px;
    margin: -6px 0 0;
  }
}
.hamberger {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1010;
  width: 56px;
  height: 56px;
  padding: 20px 16px 0 16px;
  line-height: 1;
  font-size: 0;
  text-align: center;
  cursor: pointer;
  display: none;
  border-radius: 56px;
  box-shadow: 0 0 12px rgba(50, 90, 222, 0.2);
  background: #fff;
}
.hamberger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 0 5px;
  background: #000;
  -webkit-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -o-transition: 0.3s ease all;
  transition: 0.3s ease all;
  border-radius: 2px;
}
.hamberger .ber {
  width: 16px;
}
.hamberger .ger {
  width: 9px;
}
.hamberger.is-act {
  box-shadow: none;
  background: none;
}
.hamberger.is-act span {
  width: 25px;
}
.hamberger.is-act .ham {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}
.hamberger.is-act .ber {
  transform: rotate(-45deg);
}
.hamberger.is-act .ger {
  display: none;
}
@media only screen and (max-width: 767px) {
  .hamberger {
    display: block;
  }
}
@media (min-width: 768px) {
  body .header .hlogo {
    padding: 6px 0 0 12px;
  }
  body .header .inHeader {
    padding: 22px 25px 10px 35px;
  }
  body .header .inHeader-fixed {
    padding-left: 10px;
    max-width: 970px;
    z-index: 2001;
  }
  body .layerMenu .gNavi {
    width: calc(100% - 215px);
  }
  body .layerMenu .gNavi > li > a {
    padding: 10px 16px;
  }
}
@media (min-width: 768px) {
  body:not(.top) .header .hlogo {
    padding: 6px 0 0 12px;
  }
  body:not(.top) .header .inHeader {
    padding: 22px 25px 10px 35px;
  }
  body:not(.top) .header .inHeader-fixed {
    padding-left: 10px;
    max-width: 970px;
    z-index: 2001;
    opacity: 1;
    pointer-events: auto;
  }
  body:not(.top) .header .hlang {
    position: fixed;
    top: 22px;
    right: 25px;
  }
  body:not(.top) .layerMenu .gNavi {
    width: calc(100% - 215px);
  }
  body:not(.top) .layerMenu .gNavi > li > a {
    padding: 10px 16px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body:not(.top).menu-ab .header .inHeader-fixed {
    position: absolute;
    top: 90px;
  }
  body:not(.top) .header .inHeader-fixed {
    transition: none;
  }
  body:not(.top) .layerMenu .gNavi {
    width: calc(100% - 195px);
  }
  body:not(.top) .layerMenu .gNavi > li > a {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 5px 7px;
  }
  body:not(.top) .layerMenu .hnavi {
    width: 190px;
  }
}
@media (max-width: 767px) {
  body:not(.top) .header .inHeader {
    padding: 29px 91px 10px 24px;
  }
  body:not(.top) .header .inHeader-fixed {
    right: 24px;
    top: 20px;
    z-index: 2001;
    opacity: 1;
    pointer-events: auto;
  }
  body:not(.top) .header .hlogo {
    width: 112px;
    padding: 0;
    margin: 5px 0 0;
  }
  body:not(.top) .header .hlang {
    position: fixed;
    top: 29px;
    right: 91px;
  }
}
.wp-pagenavi {
  text-align: center;
  margin: 61px 0 0;
}
.wp-pagenavi::after {
  content: "";
  clear: both;
  display: table;
}
.wp-pagenavi.first-page::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-right: 47px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .wp-pagenavi.first-page::before {
    margin-right: auto;
  }
}
.wp-pagenavi.last-page::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-left: 47px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .wp-pagenavi.last-page::after {
    margin-left: auto;
  }
}
.wp-pagenavi span,
.wp-pagenavi a {
  line-height: 30px;
  display: inline-block;
  margin: 0 10px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.33333em;
  letter-spacing: 0em;
  font-weight: 700;
  vertical-align: middle;
}
.wp-pagenavi span.current {
  color: #3887c3;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 48px;
  height: 48px;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(50, 90, 222, 0.2);
  border-radius: 50%;
  margin: 0;
  position: relative;
  cursor: pointer;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  background-color: #3887c3;
  border-radius: 50%;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1C1.5 1 9.9 9.4 13.5 13M1.5 1H12.2142M1.5 1V10.8571' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center/16px 14px;
}
@media only screen and (min-width: 1025px) {
  .wp-pagenavi .previouspostslink:hover,
  .wp-pagenavi .nextpostslink:hover {
    opacity: 1;
  }
  .wp-pagenavi .previouspostslink:hover::before,
  .wp-pagenavi .nextpostslink:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .wp-pagenavi .previouspostslink:hover::after,
  .wp-pagenavi .nextpostslink:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1C1.5 1 9.9 9.4 13.5 13M1.5 1H12.2142M1.5 1V10.8571' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
.wp-pagenavi .previouspostslink {
  margin-right: 47px;
}
.wp-pagenavi .nextpostslink {
  cursor: pointer;
  margin-right: 0;
  margin-left: 47px;
}
.wp-pagenavi .nextpostslink::after {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 1C13.5 1 5.1 9.4 1.5 13M13.5 1H2.78582M13.5 1V10.8571' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media only screen and (min-width: 1025px) {
  .wp-pagenavi .nextpostslink:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.5 1C13.5 1 5.1 9.4 1.5 13M13.5 1H2.78582M13.5 1V10.8571' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
@media (max-width: 767px) {
  .wp-pagenavi {
    margin: 38px 0 56px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
  }
  .wp-pagenavi span,
  .wp-pagenavi a {
    margin: 0 8px;
  }
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 32px;
    height: 32px;
    margin: 0 6px;
    background-size: 10px;
  }
  .wp-pagenavi .previouspostslink {
    margin-right: auto;
    margin-left: 0;
  }
  .wp-pagenavi .nextpostslink {
    margin-left: auto;
    margin-right: 0;
  }
}

/*# sourceMappingURL=maps/styles.min.css.map */
