@charset "UTF-8";

/* reset.css */
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,
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,
input,
textarea,
select {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  line-height: 1;
  overflow: auto;
}

body {
  font-size: 100%;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  overflow: hidden;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

img {
  vertical-align: bottom;
}

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

a {
  text-decoration: none;
}

html {
  font-family: "Noto Sans Japanese", sans-serif;
  color: #000;
  font-size: 0.66667vw;
  line-height: 1;
  font-weight: 400;
}

html * {
  font-weight: inherit;
  box-sizing: border-box;
}

a,
input[type=submit] {
  outline: none;
  color: inherit;
  transition: all ease-out 0.3s;
}

a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a:hover {
  cursor: pointer;
}

a:focus,
*:focus {
  outline: none;
}

@media screen and (min-width: 821px) {

  a:hover,
  input[type=submit]:hover {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*-----------------------------------------------------------------------------*/
/*Color
-----------------------------------------------------------------------------*/
.cl-blue {
  color: #509dce !important;
}

.cl-white {
  color: #fff !important;
}

/*-----------------------------------------------------------------------------*/
/*font
-----------------------------------------------------------------------------*/
.italic {
  font-style: italic !important;
}

.f-montserrat {
  font-family: "Montserrat", serif !important;
}

.f-zenkaku {
  font-family: "Zen Kaku Gothic New", serif !important;
}

.f-orbitron {
  font-family: "Orbitron", serif !important;
}

/*-----------------------------------------------------------------------------*/
/*sec
-----------------------------------------------------------------------------*/
.sec {
  position: relative;
  width: 100%;
}

.sec h2 {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 4.8rem;
}

.sec h2 span {
  display: block;
}

.sec h2 span.en {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 4.8rem;
  color: #509dce;
}

.sec h2 span.ja {
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 1rem;
}

.sec-lead {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  .sec h2 {
    font-family: "Orbitron", sans-serif;
    font-weight: bold;
    font-size: 3.8rem;
  }

  .sec h2 span {
    display: block;
  }

  .sec h2 span.en {
    font-family: "Orbitron", sans-serif;
    font-weight: bold;
    font-size: 3.8rem;
    color: #509dce;
  }

  .sec h2 span.ja {
    font-family: "Noto Sans Japanese", sans-serif;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 1rem;
  }

  .sec-lead {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
}

/*-----------------------------------------------------------------------------*/
/*btn
-----------------------------------------------------------------------------*/
.sec-btn {
  width: 100%;
  margin-top: 3rem;
  text-align: center;
}

.sec-btn a {
  display: inline-block;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.3);
}

.sec-btn a.btn span {
  position: relative;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.6rem;
  padding: 1.6rem;
  transition: all ease 0.5s;
}

.sec-btn a.btn span:after {
  position: relative;
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../img/common/ico-link-blue.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-left: 1rem;
  transition: all ease 0.5s;
}

.sec-btn a.btn:hover {
  opacity: 1;
}

.sec-btn a.btn.btn-blue span {
  background: #509dce;
  color: #fff;
  border: 1px solid #0b4d8e;
  box-shadow: 0px 3px 0px #0b4d8e;
}

.sec-btn a.btn.btn-blue span:after {
  background-image: url(../img/common/ico-link-white.svg);
}

.sec-btn a.btn.btn-blue:hover span {
  box-shadow: unset;
  transform: translateY(1px);
}

.sec-btn a.btn.btn-white span {
  background: #fff;
  border: 1px solid #9fc9e4;
  box-shadow: 0px 3px 0px #9fc9e4;
  color: #0b4d8e;
}

.sec-btn a.btn.btn-white:hover span {
  box-shadow: unset;
  transform: translateY(1px);
}

/*-----------------------------------------------------------------------------*/
/*wrap
-----------------------------------------------------------------------------*/
.wrap {
  width: 100%;
  max-width: 136rem;
  padding: 0 4rem;
  margin: 0 auto;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .wrap {
    max-width: 100%;
    padding: 0 2rem;
  }
}

/*-----------------------------------------------------------------------------*/
/*text
-----------------------------------------------------------------------------*/
.bold {
  font-weight: bold;
}

/*font
-----------------------------------------------------------------------------*/
/*PC共通
-----------------------------------------------------------------------------*/
.wrapper {
  width: 100%;
  margin: 0 auto;
  font-size: 1.8rem;
}

@media screen and (min-width: 1500px) {
  html {
    font-size: 62.5%;
  }

  .sp {
    display: none !important;
  }
}

@media (min-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
    opacity: 1;
  }
}

/*--------------------------endPC--------------------------------*/
/*SP共通
-----------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  html {
    font-size: 2vw;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/*--------------------------endSP--------------------------------*/
/*==================================================
header
==================================================*/
@keyframes shadow_animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15);
  }

  100% {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background: transparent;
  z-index: 1000000;
}

.header.page {
  background: #fff;
}

.header:after {
  content: "";
  display: block;
  width: 100%;
  height: 10rem;
  background: rgb(255, 255, 255);
  top: -10rem;
  left: 0px;
  position: absolute;
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0s;
}

.header.is-active {
  animation: shadow_animation 0.7s ease forwards 0.2s;
}

.header.is-active:after {
  top: 0 !important;
}

.header-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 10rem;
  padding: 0 0 0 3.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 30rem;
}

.header-menu {
  width: calc(100% - 30rem);
  padding-right: 18rem;
}

.header-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.header-menu ul li {
  font-size: 1.6rem;
  margin-right: 3.2rem;
  font-weight: 700;
  transition: all ease 0.5s;
}

.header-menu ul li:hover {
  color: #509dce;
}

.header-menu ul li:last-of-type {
  margin-right: 0;
}

.header-menu ul li.header-menu-parent {
  position: relative;
  display: flex;
  align-items: center;
  height: 10rem;
}

.header-menu ul li.header-menu-parent:hover span:after {
  transform: rotate(-180deg);
}

.header-menu ul li.header-menu-parent span {
  display: inline-block;
}

.header-menu ul li.header-menu-parent span:after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.7rem;
  background: url(../img/common/ico-menu-angle.png) no-repeat;
  background-size: 100%;
  margin-bottom: 0.3rem;
  margin-left: 1rem;
  transition: all ease 0.5s;
}

.header-menu ul li.header-menu-parent:hover {
  cursor: pointer;
}

.header-menu ul li.header-menu-parent:hover ul {
  display: block;
  top: 10rem;
}

.header-menu ul li.header-menu-contact {
  position: absolute;
  top: 0;
  right: 0;
  width: 14rem;
  height: 12rem;
  background: #509dce;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu ul li.header-menu-contact img {
  width: 5.4rem;
  margin: 0 auto;
  display: block;
}

.header-menu ul li.header-menu-contact span {
  font-family: "Orbitron", serif;
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  color: #fff;
  margin-top: 2.2rem;
}

.header-menu ul li a {
  color: #291f1e;
  font-weight: 700;
}

.header-menu ul li a:hover {
  opacity: 1;
  color: #509dce;
}

.header-menu ul li ul.header-menu-child {
  width: calc(100% + 10rem);
  background: #509dce;
  display: none;
  position: absolute;
  top: 0;
  padding: 2rem;
}

.header-menu ul li ul.header-menu-child li {
  padding: 1.5rem;
}

.header-menu ul li ul.header-menu-child li a {
  height: auto;
  font-size: 1.6rem;
  color: #fff;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #509dce;
}

.header-menu ul li ul.header-menu-child li a:after {
  display: none;
}

.header-menu ul li ul.header-menu-child li a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .header {
    height: 5.6rem;
  }

  .header:after {
    height: 5.6rem;
    top: -5.6rem;
  }

  .header-wrap {
    height: 5.6rem;
    padding: 0 0 0 1rem;
  }

  .header-logo {
    width: 20rem;
  }

  .header-menu {
    display: none;
    width: 100%;
    position: absolute;
    top: 5.4rem;
    left: 0;
    padding-right: 0;
    padding-bottom: 4.8rem;
    z-index: 10;
    background: #509dce;
  }

  .header-menu ul {
    display: flex;
    justify-content: center;
  }

  .header-menu ul li {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-top: 3.2rem;
    color: #fff;
  }

  .header-menu ul li:first-of-type {
    height: auto;
  }

  .header-menu ul li a {
    color: #fff;
  }

  .header-menu ul li a:hover {
    color: #fff;
  }

  .header-menu ul li.header-menu-parent {
    display: block;
  }

  .header-menu ul li.header-menu-parent:hover {
    color: #fff;
  }

  .header-menu ul li.header-menu-parent:hover ul {
    display: none;
  }

  .header-menu ul li.header-menu-parent.is-active span {
    margin-right: -1.2rem;
  }

  .header-menu ul li.header-menu-parent.is-active span:after {
    transform: rotate(90deg);
  }

  .header-menu ul li.header-menu-parent span {
    margin-right: -1.2rem;
  }

  .header-menu ul li.header-menu-parent span:after {
    width: 0.7rem;
    height: 1.2rem;
    background: url(../img/common/ico-menu-angle-sp.png) no-repeat;
    background-size: 100%;
    margin-left: 1rem;
    margin-bottom: 0;
    transition: all ease 0.3s;
  }

  .header-menu ul li ul.header-menu-child {
    width: 100%;
    background: transparent;
    position: static;
    padding: 1.4rem 0 0 0;
  }

  .header-menu ul li ul.header-menu-child li {
    padding: 0;
    margin-top: 2rem;
  }

  .header-menu ul li ul.header-menu-child li a {
    font-size: 1.2rem;
    padding: 0;
  }

  .header-menu-contact {
    display: none !important;
  }

  .header-hamburger {
    position: absolute;
    top: 50%;
    right: 1.6rem;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0.9rem 0.4rem;
    cursor: pointer;
    transform: translate(0, -50%);
  }

  .header-hamburger span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #509dce;
    transition: all 0.5s;
  }

  .header-hamburger span:nth-of-type(1) {
    top: 0.7rem;
  }

  .header-hamburger span:nth-of-type(2) {
    top: 1.5rem;
  }

  .header-hamburger span:nth-of-type(3) {
    bottom: 0.7rem;
  }

  .header-hamburger.is-active span:nth-of-type(1) {
    top: 0.7rem;
    transform: translateY(0.75rem) rotate(-45deg);
  }

  .header-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }

  .header-hamburger.is-active span:nth-of-type(3) {
    bottom: 0.7rem;
    transform: translateY(-0.75rem) rotate(45deg);
  }
}

/*-----------------------------------------------------------------------------*/
/*footer
-----------------------------------------------------------------------------*/
.footer {
  position: relative;
  width: 100%;
}

.footer-top {
  padding: 6.8rem 0 6.5rem;
  background: url(../img/common/footer-top-bg.jpg) no-repeat;
  background-size: cover;
  text-align: center;
}

.footer-top-msg {
  font-size: 3.2rem;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
}

.footer-top-lead {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 2rem;
  color: #fff;
}

.footer-top-button {
  width: 100%;
  margin-top: 2.5rem;
}

.footer-top-button a {
  display: inline-block;
  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 30.4rem;
  margin: 0 auto;
}

.footer-top-button a span {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.6rem;
  padding: 2rem 1.8rem;
  background: #509dce;
  border: 1px solid #0b4d8e;
  box-shadow: 0px 4px 0px #0b4d8e;
  color: #fff;
  transition: all ease 0.5s;
}

.footer-top-button a:hover {
  opacity: 1;
}

.footer-top-button a:hover span {
  box-shadow: unset;
  transform: translateY(1px);
}

.footer-top-button a.btn-contact span:before {
  position: relative;
  content: "";
  display: inline-block;
  width: 3.2rem;
  height: 2.4rem;
  background-image: url(../img/common/ico-mail2.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-right: 1.5rem;
  transition: all ease 0.5s;
}

.footer-top-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 3rem;
}

.footer-top-contact-tel {
  font-family: "Montserrat", serif;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}

.footer-top-contact-tel a {
  font-size: 3.2rem;
  line-height: 1;
  color: #fff;
}

.footer-top-contact-txt {
  font-size: 1.6rem;
  font-weight: 400;
  padding-left: 2.5rem;
  color: #fff;
}

.footer-wrap {
  width: 100%;
  max-width: 136rem;
  padding: 3rem 4rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-company-logo {
  width: 100%;
  max-width: 24.2rem;
}

.footer-company-address {
  font-size: 1.6rem;
  margin-top: 1.8rem;
}

.footer-sns ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.footer-sns ul li {
  width: 4rem;
  height: 4rem;
  margin-right: 1.5rem;
}

.footer-sns ul li a img.logo-x {
  width: 3.6rem;
  height: 3.3rem;
  margin-top: 0.25rem;
}

.footer-sns ul li:last-of-type {
  margin-right: 0;
}

.footer-copy {
  font-family: "Montserrat", serif;
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
  text-align: right;
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .footer-top-msg {
    font-size: 2.6rem;
  }

  .footer-top-lead {
    font-size: 1.6rem;
  }

  .footer-top-button a span {
    font-size: 1.6rem;
  }

  .footer-top-button a:hover {
    opacity: 1;
  }

  .footer-top-button a:hover span {
    box-shadow: unset;
    transform: translateY(1px);
  }

  .footer-top-contact-tel {
    width: 100%;
    text-align: center;
  }

  .footer-top-contact-txt {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .footer-wrap {
    width: 100%;
    max-width: 100%;
    padding: 3rem 2rem;
  }

  .footer-company {
    width: 100%;
  }

  .footer-company-logo {
    margin: 0 auto;
  }

  .footer-company-address {
    display: block;
    text-align: center;
    line-height: 1.55;
    margin-top: 1.2rem;
  }

  .footer-sns {
    width: 100%;
    margin-top: 3rem;
  }

  .footer-sns ul {
    justify-content: center;
  }

  .footer-sns ul li {
    width: 4rem;
    height: 4rem;
    margin-right: 1.5rem;
  }

  .footer-copy {
    text-align: center;
  }
}

/*==================================================
main
==================================================*/
.main {
  width: 100%;
  padding: 7rem 0;
  margin-top: 10rem;
  background: url(../img/common/page-main-bg.jpg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .main {
    margin-top: 5.6rem;
  }
}

.main-wrap {
  width: 100%;
}

.main-pagetitle {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 4.8rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .main-pagetitle {
    font-size: 3.8rem;
  }
}

.main-pagetitle span {
  display: block;
}

.main-pagetitle span.en {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 4.8rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .main-pagetitle span.en {
    font-size: 3.8rem;
  }
}

.main-pagetitle span.ja {
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 1rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .main-pagetitle span.ja {
    font-size: 2rem;
  }
}

/*==================================================
main
==================================================*/
.header+.breadcrumb {
  margin-top: 10rem;
}

.breadcrumb {
  width: 100%;
}

.breadcrumb-wrap {
  width: 100%;
  max-width: 136rem;
  padding: 1.5rem 4rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .breadcrumb-wrap {
    padding: 1.5rem 2rem 0;
  }
}

.breadcrumb-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 0;
  width: auto;
}

@media screen and (max-width: 767px) {
  .breadcrumb-wrap ul {
    padding-bottom: 1.5rem;
  }
}

.breadcrumb-wrap ul li {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.2rem;
  padding-left: 4px;
  white-space: nowrap;
}

.breadcrumb-wrap ul li a {
  text-decoration: underline;
  font-size: 1.2rem;
}

.breadcrumb-wrap ul li a:after {
  content: ">";
  display: inline-block;
  margin-left: 4px;
}

/*==================================================
article
==================================================*/
.article {
  width: 100%;
  background: url(../img/common/article-bg.png) no-repeat;
  background-size: 50%;
  background-position: top left;
}

.article-wrap {
  width: 100%;
}

.article-pagetitle {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 4.8rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .article-pagetitle {
    font-size: 3.8rem;
  }
}

.article-pagetitle span {
  display: block;
}

.article-pagetitle span.en {
  font-family: "Orbitron", sans-serif;
  font-weight: bold;
  font-size: 4.8rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .article-pagetitle span.en {
    font-size: 3.8rem;
  }
}

.article-pagetitle span.ja {
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 1rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .article-pagetitle span.ja {
    font-size: 2rem;
  }
}

.article-main {
  width: 100%;
  padding: 8.5rem 0 0;
}

@media screen and (max-width: 767px) {
  .article-main {
    padding: 5rem 2rem 0;
  }
}

.article-main-title {
  font-size: 4rem;
  display: block;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .article-main-title {
    font-size: 2.6rem;
  }
}

.article-main-data {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .article-main-data {
    margin-bottom: 2rem;
  }
}

.article-main-data-vol {
  width: 12.6rem;
  height: 4rem;
  border-radius: 0.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: #509dce;
}

@media screen and (max-width: 767px) {
  .article-main-data-vol {
    width: 10rem;
    height: 3.6rem;
    font-size: 1.8rem;
  }
}

.article-main-data-time {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  padding-left: 3.2rem;
}

@media screen and (max-width: 767px) {
  .article-main-data-time {
    font-size: 2rem;
    padding-left: 2rem;
  }
}

.article-main-cat {
  display: block;
  text-align: center;
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  .article-main-cat {
    margin-top: 1.5rem;
  }
}

.article-main-cat a {
  display: inline-block;
  background: #ce9950;
  color: #fff;
  border-radius: 0.4rem;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: bold;
  padding: 1rem 2.5rem;
}

@media screen and (max-width: 767px) {
  .article-main-cat a {
    font-size: 1.8rem;
    padding: 1rem 2rem;
  }
}

.article-main-img {
  position: relative;
  width: 100%;
  margin-top: 7.2rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background-size: 120%;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .article-main-img {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-top: 3.5rem;
  }
}

.article-main-img:before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.article-main-img-bg {
  filter: blur(8px);
  width: 100%;
  height: 30rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-position: center;
  background-size: 100%;
}

.article-main-img-list {
  position: relative;
  width: 33.3333333333%;
  z-index: 3;
}

.article-main-imgs {
  width: 100%;
  margin-top: 4rem;
  padding-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .article-main-imgs {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-top: 3.5rem;
    padding-bottom: 3rem;
  }
}

.article-main-imgs-list {
  position: relative;
  margin: 0 1.25rem;
}

@media screen and (max-width: 767px) {
  .article-main-imgs-list {
    margin: 0 0.75rem;
  }
}

.article-main-imgs-list:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: all ease 0.5s;
  z-index: 1;
}

.article-main-imgs-list.slick-current:after {
  background: transparent;
}

.article-main-imgs .slick-dots {
  bottom: 0;
}

.article-main-imgs .slick-dots li {
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 0.75rem;
}

.article-main-imgs .slick-dots li.slick-active button {
  background: #509dce;
}

.article-main-imgs .slick-dots li button {
  width: 1.4rem;
  height: 1.4rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #509dce;
  background: transparent;
}

.article-content {
  width: 100%;
  max-width: 113rem;
  margin: 10rem auto 0;
}

@media screen and (max-width: 767px) {
  .article-content {
    margin: 6rem auto 0;
    padding: 0 2rem;
  }
}

.article-content h2 {
  position: relative;
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  padding-bottom: 1.2rem;
  margin-top: 6.8rem;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  .article-content h2 {
    font-size: 2rem;
    padding-bottom: 1rem;
    margin-top: 3.5rem;
  }
}

.article-content h2:before {
  content: "";
  display: inline-block;
  width: 16rem;
  height: 2px;
  background: #509dce;
  position: absolute;
  bottom: -1px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .article-content h2:before {
    width: 35%;
  }
}

.article-content h2:first-of-type {
  margin-top: 0;
}

.article-content h2+h3 {
  margin-top: 5.4rem;
}

@media screen and (max-width: 767px) {
  .article-content h2+h3 {
    margin-top: 2.5rem;
  }
}

.article-content h3 {
  display: block;
  text-align: left;
  padding: 0.6rem 0 0.6rem 1.8rem;
  border-left: 4px solid #509dce;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 7.6rem;
}

@media screen and (max-width: 767px) {
  .article-content h3 {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-top: 3.5rem;
  }
}

.article-content h4 {
  display: block;
  margin-top: 5.4rem;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .article-content h4 {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 2.5rem;
  }
}

.article-content h5 {
  display: block;
  margin-top: 3.2rem;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .article-content h5 {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: 1.5rem;
  }
}

.article-content p,
.article-content .edit_zone {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 3.2rem;
}

.article-content p:first-child,
.article-content .edit_zone:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 767px) {

  .article-content p,
  .article-content .edit_zone {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}

.article-content p+h2,
.article-content p+h3,
.article-content p+h4,
.article-content p+h5,
.article-content .edit_zone+h2,
.article-content .edit_zone+h3,
.article-content .edit_zone+h4,
.article-content .edit_zone+h5 {
  margin-top: 5.4rem !important;
}

@media screen and (max-width: 767px) {

  .article-content p+h2,
  .article-content p+h3,
  .article-content p+h4,
  .article-content p+h5,
  .article-content .edit_zone+h2,
  .article-content .edit_zone+h3,
  .article-content .edit_zone+h4,
  .article-content .edit_zone+h5 {
    margin-top: 3.5rem !important;
  }
}

.article-content figure {
  margin-top: 3.2rem;
}

@media screen and (max-width: 767px) {
  .article-content figure {
    margin-top: 1.5rem;
  }
}

.article-content figure+h2,
.article-content figure+h3,
.article-content figure+h4,
.article-content figure+h5 {
  margin-top: 5.4rem !important;
}

@media screen and (max-width: 767px) {

  .article-content figure+h2,
  .article-content figure+h3,
  .article-content figure+h4,
  .article-content figure+h5 {
    margin-top: 3.5rem !important;
  }
}

.article-content ul {
  margin-top: 3.2rem;
}

@media screen and (max-width: 767px) {
  .article-content ul {
    margin-top: 1.5rem;
  }
}

.article-content ul li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
  list-style: none;
  padding-left: 3.2rem;
  margin-top: 1.6rem;
}

@media screen and (max-width: 767px) {
  .article-content ul li {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.article-content ul li:first-of-type {
  margin-top: 0;
}

.article-content ul li:before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: rgba(80, 157, 206, 0.4);
  position: absolute;
  top: 0.8rem;
  left: 1.1rem;
  border-radius: 50%;
}

.article-content ul+ol {
  margin-top: 4.8rem;
}

.article-content ol {
  margin-top: 3.2rem;
  list-style: none;
  counter-reset: number;
}

.article-content ol li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 1.6rem;
  padding-left: 3.2rem;
}

@media screen and (max-width: 767px) {
  .article-content ol li {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

.article-content ol li:first-of-type {
  margin-top: 0;
}

.article-content ol li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 0.4rem;
  left: 0.6rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #509dce;
  color: #fff;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
}

.article-content ol+ul {
  margin-top: 4.8rem;
}

@media screen and (max-width: 767px) {
  .article-content ol+ul {
    margin-top: 2.5rem;
  }
}

.article-content table {
  width: 100%;
  margin-top: 4.8rem;
}

@media screen and (max-width: 767px) {
  .article-content table {
    margin-top: 2.5rem;
  }
}

.article-content table thead th {
  background: #509dce;
  color: #fff;
  padding: 1.6rem 2.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .article-content table thead th {
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
  }
}

.article-content table thead th:last-of-type {
  border-right: 0;
}

.article-content table tbody tr:first-of-type td {
  border-top: 1px solid #ccc;
}

.article-content table tbody th {
  background: #509dce;
  color: #fff;
  padding: 1.6rem 2.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .article-content table tbody th {
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
  }
}

.article-content table tbody td {
  padding: 1.6rem 2.4rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  .article-content table tbody td {
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
  }
}

.article-content table tbody td:last-of-type {
  border-right: 0;
}

.article-content blockquote {
  margin-top: 4.8rem;
  padding: 0 0 0 3.2rem;
  border-left: 2px solid #ccc;
}

@media screen and (max-width: 767px) {
  .article-content blockquote {
    padding: 0 0 0 2rem;
  }
}

.article-content blockquote p {
  margin-top: 0;
}

.article-content b {
  font-weight: bold !important;
}

.article-content-col {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 5.6rem;
}

@media screen and (max-width: 767px) {
  .article-content-col {
    margin-top: 5rem;
  }
}

.article-content-col-thumb {
  width: 54rem;
}

@media screen and (max-width: 767px) {
  .article-content-col-thumb {
    width: 100%;
  }
}

.article-content-col-text {
  width: calc(100% - 54rem);
  padding-left: 5rem;
}

@media screen and (max-width: 767px) {
  .article-content-col-text {
    width: 100%;
    padding: 3rem 0 0 0;
  }
}

.article-content-col-text p:first-of-type {
  margin-top: 0;
}

.article-related {
  width: 100%;
  max-width: 113rem;
  margin: 11.2rem auto 12rem;
}

@media screen and (max-width: 767px) {
  .article-related {
    margin: 6rem auto;
    padding: 0 2rem;
  }
}

.article-related h2 {
  display: block;
  background: #509dce;
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
  border-radius: 0.4rem;
  padding: 1.5rem 2rem;
}

@media screen and (max-width: 767px) {
  .article-related h2 {
    font-size: 2rem;
  }
}

.article-related-wrap {
  width: 100%;
  margin-top: 3.5rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .article-related-wrap {
    display: block;
    margin-top: 2rem;
  }
}

.article-related-list {
  width: calc(33.3333333333% - 2.133333rem);
  margin-right: 3.2rem;
}

@media screen and (max-width: 767px) {
  .article-related-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-right: 0;
    margin-top: 2rem;
  }

  .article-related-list:first-of-type {
    margin-top: 0;
  }
}

.article-related-list:hover {
  opacity: 1;
}

.article-related-list:hover figure img {
  transform: scale(1.2);
}

.article-related-list:nth-child(3n) {
  margin-right: 0;
}

.article-related-list figure {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .article-related-list figure {
    width: 35%;
  }
}

.article-related-list figure img {
  transform: scale(1);
  transition: all ease 0.5s;
}

@media screen and (max-width: 767px) {
  .article-related-list-text {
    width: 65%;
    padding-left: 2rem;
  }
}

.article-related-list-text h3 {
  font-size: 2rem;
  color: #000;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 1.8rem;
}

@media screen and (max-width: 767px) {
  .article-related-list-text h3 {
    font-size: 1.8rem;
    margin-top: 0;
  }
}

.article-related-list-date {
  font-size: 1.6rem;
  font-weight: bold;
  color: #666;
  line-height: 1;
  margin-top: 1.8rem;
}

@media screen and (max-width: 767px) {
  .article-related-list-date {
    font-size: 1.4rem;
  }
}

.article-related-list-data {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.8rem;
}

@media screen and (max-width: 767px) {
  .article-related-list-data {
    margin: 0 0 1rem 0;
  }
}

.article-related-list-data-vol {
  width: 6.5rem;
  height: 2.6rem;
  border-radius: 0.4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: #509dce;
}

@media screen and (max-width: 767px) {
  .article-related-list-data-vol {
    font-size: 1.4rem;
  }
}

.article-related-list-data-time {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  padding-left: 1.6rem;
  color: #666;
}

@media screen and (max-width: 767px) {
  .article-related-list-data-time {
    font-size: 1.4rem;
  }
}

.article-related .sec-btn {
  margin-top: 6.8rem;
}

@media screen and (max-width: 767px) {
  .article-related .sec-btn {
    margin-top: 3.5rem;
  }
}

/*==================================================
intro
==================================================*/
.intro {
  width: 100%;
}

.intro-wrap {
  width: 100%;
  max-width: 113rem;
  margin: 10rem auto 0;
}

@media screen and (max-width: 767px) {
  .intro-wrap {
    margin: 6rem auto 0;
    padding: 0 2rem;
  }
}

#project_archive.inview.animate {
  z-index: 100 !important;
}

/*----- ページネーション ------*/
.c-pagination {
  margin-top: 8rem;
}

.c-pagination_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.c-pagination_list--item .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  color: #509DCE;
  width: 4rem;
  height: 4rem;
  background: #fff;
  border: 0.1rem solid #509DCE;
  border-radius: 0.4rem;
}

.c-pagination_list--item .page-numbers.current {
  color: #fff !important;
  background: #509DCE !important;
}

.c-pagination_list--item .page-numbers.prev,
.c-pagination_list--item .page-numbers.next {
  width: 2.4rem;
  border: none;
}

.c-pagination_list--item .page-numbers.prev:not([href]),
.c-pagination_list--item .page-numbers.next:not([href]) {
  opacity: 0.25;
  pointer-events: none;
}

/*==================================================
  固定ページ
==================================================*/
.l-contentsPage_article--content {
  max-width: 100%;
  margin: 0;
  padding: 8.4rem 24rem 18rem;
}

@media screen and (max-width: 767px) {
  .l-contentsPage_article--content {
    padding: 6.4rem 1.6rem 10rem;
  }
}