@charset "UTF-8";
/* --------------------------------------------------
	section size
-------------------------------------------------- */
/* reset
---------------------------------------------------------------------------- */
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, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

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

img {
  border: 0;
  vertical-align: bottom;
}

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

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

pre {
  white-space: pre-wrap;
}

/* common
---------------------------------------------------------------------------- */
/* common
---------------------------------------------------------------------------- */
/* color */
.color01 {
  color: #1202BD;
}

.color02 {
  color: #D73030;
}

.bgcol01 {
  background: #224589;
}

.strong {
  font-weight: bold;
}

.semibold {
  font-weight: 600;
}

.letter-spacing0 {
  letter-spacing: 0 !important;
}

/* title */
.c-title {
  margin-bottom: 4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-title {
    margin-bottom: 4rem;
  }
}
.c-title .jp-ttl {
  display: inline-block;
  color: #fff;
  background: #D73030;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
  padding: 0.4rem 1.6rem;
  border-radius: 0.4rem;
  margin-bottom: 1.6rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-title .jp-ttl {
    padding: 0.2rem 1.2rem 0.3rem;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0.8rem;
  }
}
.c-title .en-ttl {
  color: #224589;
  font-size: 8rem;
  line-height: 1.1;
  font-weight: 700;
  font-family: "Public Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title .en-ttl {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
  }
}
.c-title.-white .en-ttl {
  color: #fff;
}

.ttl-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
  align-content: stretch;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .ttl-wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 4rem;
  }
}
.ttl-wrap .c-title {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .ttl-wrap .c-title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .ttl-wrap .btn_wrap {
    margin-top: 2.4rem;
    width: 100%;
  }
  .ttl-wrap .btn_wrap .c-button {
    width: 100%;
  }
}

/* hover */
@media screen and (min-width: 768px) {
  .c-hover {
    display: block;
    transition: opacity 0.4s;
  }
  .c-hover:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}

/* button */
.c-button {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  padding: 0.8rem 6.4rem 0.8rem 1.6rem;
  border-radius: 0.4rem;
  background: #1202BD;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .c-button {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 500;
    padding: 1rem 5.8rem 1rem 1.6rem;
  }
}
.c-button .arrow {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 4.8rem;
  height: 100%;
  border-left: 1px solid #fff;
  background: #1202BD;
  border-radius: 0 0.4rem 0.4rem 0;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .c-button .arrow {
    right: 0;
    width: 4.2rem;
  }
}
.c-button .arrow:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 4px 0 4px 8px;
}
.c-button.-red {
  background: #D73030;
}
.c-button.-red .arrow {
  background: #D73030;
}
.c-button.-external .arrow:after {
  border: none;
  background: url("../images/common/btn_arrow.svg") no-repeat center center;
  background-size: 1.6rem 1.6rem;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-button:hover {
    text-decoration: none;
    background: #D73030;
  }
  .c-button:hover .arrow {
    background: #D73030;
    right: -1.6rem;
  }
  .c-button:hover.-red {
    background: #1202BD;
  }
  .c-button:hover.-red .arrow {
    background: #1202BD;
  }
  .c-button:hover.-right {
    padding-right: 8rem;
  }
  .c-button:hover.-right .arrow {
    right: 0;
  }
}

/* c-contact
---------------------------------------------------------------------------- */
.c-contact {
  padding: 8rem 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-contact {
    padding: 6.4rem 0;
  }
}
.c-contact .flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 4.8rem;
}
@media screen and (max-width: 767px) {
  .c-contact .flex {
    flex-direction: column;
    gap: 2.4rem 0;
  }
}
.c-contact .flex .flex-box {
  width: calc((100% - 4.8rem) / 2);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box {
    width: 100%;
  }
}
.c-contact .flex .flex-box .box-ttl {
  position: relative;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 0.00048em;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #D73030;
  padding: 1.6rem 2.4rem 1.6rem 6rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box .box-ttl {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.00032em;
    font-weight: 700;
    padding: 1.2rem 1.6rem 1.2rem 5.2rem;
  }
}
.c-contact .flex .flex-box .box-ttl:before {
  position: absolute;
  left: 2.4rem;
  top: 2.4rem;
  display: block;
  content: "";
  background-size: 100% auto !important;
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box .box-ttl:before {
    left: 1.6rem;
    top: 1.6rem;
    width: 2.2rem;
    height: 2.2rem;
  }
}
.c-contact .flex .flex-box .btn_wrap {
  padding: 2.7rem 2.4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box .btn_wrap {
    padding: 2.4rem 1.6rem;
  }
}
.c-contact .flex .flex-box .num-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 2rem;
  padding: 2.4rem 2.4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box .num-wrap {
    flex-direction: column;
    gap: 0.8rem 0;
    padding: 2.8rem 1.6rem;
  }
}
.c-contact .flex .flex-box .num-wrap .num-box {
  width: calc((100% - 2rem) / 2);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box .num-wrap .num-box {
    width: 100%;
    align-items: center;
  }
}
.c-contact .flex .flex-box .num-wrap .num-box .ttl {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  background: #D73030;
  padding: 0.4rem 1.6rem;
  border-radius: 0.4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box .num-wrap .num-box .ttl {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 400;
    padding: 0.2rem 1.6rem 0.3rem 1.6rem;
  }
}
.c-contact .flex .flex-box .num-wrap .num-box .txt {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box .num-wrap .num-box .txt {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.00032em;
    font-weight: 400;
  }
  .c-contact .flex .flex-box .num-wrap .num-box .txt a {
    color: #fff;
  }
}
.c-contact .flex .flex-box .num-wrap .num-box .txt .tel-txt {
  display: block;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box .num-wrap .num-box .txt .tel-txt {
    display: inline-block;
    margin-left: 1.2rem;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
  }
}
.c-contact .flex .flex-box .num-wrap .num-box.-tel .ttl {
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box .num-wrap .num-box.-tel .ttl {
    margin-right: 1.2rem;
  }
}
.c-contact .flex .flex-box .num-wrap .num-box.-fax .ttl {
  margin-right: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-contact .flex .flex-box .num-wrap .num-box.-fax .ttl {
    margin-right: 1.2rem;
  }
}
.c-contact .flex .flex-box.-form .box-ttl:before {
  background: url("../images/common/ico01_formttl.svg") no-repeat center center;
}
.c-contact .flex .flex-box.-tel .box-ttl:before {
  background: url("../images/common/ico02_formttl.svg") no-repeat center center;
}

/* c-page-title
---------------------------------------------------------------------------- */
.c-page-title {
  padding: 12rem 0 6.4rem 0;
  background: #224589;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-page-title {
    padding: 4.8rem 0 4rem 0;
  }
}
.c-page-title .flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 0 2.4rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-page-title .flex {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem 0;
    margin-bottom: 0.8rem;
  }
}
.c-page-title .flex .jp-ttl {
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  padding: 0.2rem 1.6rem 0.5rem 1.6rem;
  background: #D73030;
  border-radius: 0.4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-page-title .flex .jp-ttl {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
    padding: 0.2rem 1.2rem;
  }
}
.c-page-title .flex .breadcrumb_wrap .breadcrumb__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-page-title .flex .breadcrumb_wrap .breadcrumb__list {
    gap: 0 2.4rem;
  }
}
.c-page-title .flex .breadcrumb_wrap .breadcrumb__list .breadcrumb__item {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-page-title .flex .breadcrumb_wrap .breadcrumb__list .breadcrumb__item {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 500;
  }
}
.c-page-title .flex .breadcrumb_wrap .breadcrumb__list .breadcrumb__item a {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-page-title .flex .breadcrumb_wrap .breadcrumb__list .breadcrumb__item a {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 500;
  }
}
.c-page-title .flex .breadcrumb_wrap .breadcrumb__list .breadcrumb__item a, .c-page-title .flex .breadcrumb_wrap .breadcrumb__list .breadcrumb__item span {
  word-break: initial;
}
.c-page-title .flex .breadcrumb_wrap .breadcrumb__list .breadcrumb__item:not(:last-of-type):after {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #D73030;
  border-width: 4px 0 4px 8px;
}
@media screen and (max-width: 767px) {
  .c-page-title .flex .breadcrumb_wrap .breadcrumb__list .breadcrumb__item:not(:last-of-type):after {
    right: -1.6rem;
  }
}
.c-page-title .en-ttl {
  font-size: 12rem;
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-page-title .en-ttl {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
  }
}

/* c-pager
---------------------------------------------------------------------------- */
.c-pager {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 1.6rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-pager {
    margin-top: 6.4rem;
    /*		gap: 0 1.2rem;*/
    gap: 0 0.8rem;
  }
}
.c-pager a, .c-pager span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  flex-direction: column;
  width: 4.6rem;
  height: 4.6rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Public Sans", sans-serif;
  border: 2px solid #224589;
  border-radius: 0.4rem;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .c-pager a, .c-pager span {
    /*			width: 4.2rem;
    			height: 4.2rem;*/
    width: 3.7rem;
    height: 3.7rem;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  .c-pager a:hover {
    text-decoration: none;
    color: #fff;
    background: #D73030;
    border: 2px solid #D73030;
  }
}
.c-pager .current {
  color: #fff;
  background: #D73030;
  border: 2px solid #D73030;
}
.c-pager .dotted {
  position: relative;
  top: -1rem;
  border: none;
  font-size: 3rem;
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-pager .dotted {
    top: -0.5rem;
    font-size: 1.6rem;
  }
}
.c-pager .prev, .c-pager .next {
  position: relative;
  color: #fff;
  background: #224589;
}
.c-pager .prev:after, .c-pager .next:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
}
.c-pager .prev {
  margin-right: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-pager .prev {
    margin-right: 0;
  }
}
.c-pager .prev:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  border-width: 4px 8px 4px 0;
}
.c-pager .next {
  margin-left: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-pager .next {
    margin-left: 0;
  }
}
.c-pager .next:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 4px 0 4px 8px;
}

/* c-post-nav
---------------------------------------------------------------------------- */
.c-post-nav {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 12rem;
  border-radius: 0 0 0.4rem 0.4rem;
  border: 2px solid #224589;
  border-top: none;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-post-nav {
    width: calc(100% - 3.2rem);
    padding: 6.4rem 1.6rem;
  }
}
.c-post-nav .l-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 0 14rem;
}
@media screen and (max-width: 767px) {
  .c-post-nav .l-inner {
    padding: 0;
    gap: 1.6rem 1.6rem;
  }
}
.c-post-nav .prev, .c-post-nav .next, .c-post-nav .to_list {
  position: absolute;
  display: inline-block;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  padding: 0.8rem 6.4rem 0.8rem 1.6rem;
  border-radius: 0.4rem;
  transition: 0.4s;
  backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  .c-post-nav .prev, .c-post-nav .next, .c-post-nav .to_list {
    position: relative;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 500;
    padding: 0.8rem 5.8rem 0.8rem 1.6rem;
  }
}
.c-post-nav .prev .arrow, .c-post-nav .next .arrow, .c-post-nav .to_list .arrow {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background: inherit;
  border-radius: 0 0.4rem 0.4rem 0;
  border-left: 1px solid #fff;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .c-post-nav .prev .arrow, .c-post-nav .next .arrow, .c-post-nav .to_list .arrow {
    width: 4rem;
    height: 100%;
  }
}
.c-post-nav .prev .arrow:after, .c-post-nav .next .arrow:after, .c-post-nav .to_list .arrow:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
}
.c-post-nav .prev.-left .arrow, .c-post-nav .next.-left .arrow, .c-post-nav .to_list.-left .arrow {
  border-radius: 0.4rem 0 0 0.4rem;
}
@media screen and (min-width: 768px) {
  .c-post-nav .prev:hover, .c-post-nav .next:hover, .c-post-nav .to_list:hover {
    text-decoration: none;
  }
  .c-post-nav .prev:hover .arrow, .c-post-nav .next:hover .arrow, .c-post-nav .to_list:hover .arrow {
    right: -1.6rem;
  }
  .c-post-nav .prev:hover.-left, .c-post-nav .next:hover.-left, .c-post-nav .to_list:hover.-left {
    padding-left: 8rem;
  }
  .c-post-nav .prev:hover.-left .arrow, .c-post-nav .next:hover.-left .arrow, .c-post-nav .to_list:hover.-left .arrow {
    left: 0;
  }
  .c-post-nav .prev:hover.-right, .c-post-nav .next:hover.-right, .c-post-nav .to_list:hover.-right {
    padding-right: 8rem;
  }
  .c-post-nav .prev:hover.-right .arrow, .c-post-nav .next:hover.-right .arrow, .c-post-nav .to_list:hover.-right .arrow {
    right: 0;
  }
}
.c-post-nav .prev, .c-post-nav .next {
  background: #1202BD;
}
@media screen and (min-width: 768px) {
  .c-post-nav .prev:hover, .c-post-nav .next:hover {
    background: #D73030;
  }
}
@media screen and (max-width: 767px) {
  .c-post-nav .prev, .c-post-nav .next {
    width: calc((100% - 1.6rem) / 2);
  }
}
.c-post-nav .prev {
  left: 0;
  padding: 0.8rem 1.6rem 0.8rem 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-post-nav .prev {
    order: 2;
    padding: 0.8rem 1.6rem 0.8rem 5.8rem;
  }
}
.c-post-nav .prev .arrow {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid #fff;
}
.c-post-nav .prev .arrow:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  border-width: 4px 8px 4px 0;
}
.c-post-nav .next {
  right: 0;
}
@media screen and (max-width: 767px) {
  .c-post-nav .next {
    order: 3;
  }
}
.c-post-nav .next .arrow:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 4px 0 4px 8px;
}
.c-post-nav .to_list {
  background: #D73030;
}
@media screen and (max-width: 767px) {
  .c-post-nav .to_list {
    order: 1;
    width: 100%;
  }
}
.c-post-nav .to_list .arrow:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 4px 0 4px 8px;
}

/* post-cnts　詳細ページ共通
---------------------------------------------------------------------------- */
.post-cnts {
  padding: 8rem 12rem;
  border-radius: 0.4rem 0.4rem 0 0;
  border: 2px solid #224589;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .post-cnts {
    width: calc(100% - 3.2rem) !important;
    padding: 2.4rem 1.6rem 6.4rem 1.6rem !important;
  }
}
.post-cnts .post-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 0 1.6rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-info {
    gap: 0 0.8rem;
    margin-bottom: 1.6rem;
  }
}
.post-cnts .post-info .date {
  position: relative;
  top: -0.4rem;
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 500;
  color: #224589;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-info .date {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 500;
  }
}
.post-cnts .post-info .cat {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  color: #224589;
  border: 1px solid #224589;
  padding: 0.2rem 1.6rem;
  border-radius: 0.4rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-info .cat {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
  }
}
.post-cnts .post-info02 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 1.6rem 3rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-info02 {
    gap: 1.6rem 1.6rem;
    margin-bottom: 2.4rem;
  }
}
.post-cnts .post-info02 .info-txt {
  gap: 0 0.8rem;
  border-bottom: none;
  padding: 0;
}
.post-cnts .post-info02 .info-txt dt {
  white-space: nowrap;
  width: auto;
}
.post-cnts .post-info02 .info-txt dd {
  width: auto;
  padding-top: 0.1rem;
  color: #224589;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-info02 .info-txt dd {
    padding-top: 0;
  }
}
.post-cnts .info-txt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 2.4rem;
  border-bottom: 1px solid #CCC;
  padding: 1.6rem 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .post-cnts .info-txt {
    gap: 0 1.6rem;
  }
}
.post-cnts .info-txt dt {
  width: 12rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  word-break: initial;
  color: #fff;
  background: #224589;
  padding: 0.2rem 1.6rem 0.3rem 1.6rem;
  border-radius: 0.4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .post-cnts .info-txt dt {
    width: 9.2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
  }
}
.post-cnts .info-txt dd {
  width: calc(100% - 14.4rem);
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  word-break: initial;
  padding-top: 0.7rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .post-cnts .info-txt dd {
    width: calc(100% - 11.8rem);
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
    padding-top: 0;
  }
}
.post-cnts .info-txt:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.post-cnts .post-title {
  font-size: 2.2rem;
  line-height: 1.6;
  letter-spacing: 0.00044em;
  font-weight: 700;
  color: #224589;
  margin-bottom: 4rem;
  word-break: initial;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-title {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.00032em;
    font-weight: 700;
    margin-bottom: 2.4rem;
  }
}
.post-cnts .eye_catch {
  border-radius: 0.4rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
}
.post-cnts .eye_catch img {
  width: 100%;
  max-width: inherit;
}
.post-cnts .post-style h2 {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.00036em;
  font-weight: 700;
  word-break: initial;
  padding-left: 3.2rem;
  margin-bottom: 4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style h2 {
    padding-left: 2.4rem;
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.00032em;
    font-weight: 700;
    margin-bottom: 2.4rem;
  }
}
.post-cnts .post-style h2:before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 0.8rem;
  height: 100%;
  background: #224589;
}
.post-cnts .post-style * + h2 {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style * + h2 {
    margin-top: 6.4rem;
  }
}
.post-cnts .post-style h3 {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.00032em;
  font-weight: 700;
  word-break: initial;
  color: #224589;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style h3 {
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.00028em;
    font-weight: 700;
    margin-bottom: 2.4rem;
  }
}
.post-cnts .post-style p {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  word-break: initial;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style p {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2.4rem;
  }
}
.post-cnts .post-style ol, .post-cnts .post-style ul {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style ol, .post-cnts .post-style ul {
    margin-bottom: 2.4rem;
  }
}
.post-cnts .post-style ol li, .post-cnts .post-style ul li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  word-break: initial;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style ol li, .post-cnts .post-style ul li {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
  }
}
.post-cnts .post-style ul li {
  list-style: disc;
  list-style-position: inside;
  text-indent: -2.3rem;
  margin-left: 2.3rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style ul li {
    text-indent: -2.1rem;
    margin-left: 2.1rem;
  }
}
.post-cnts .post-style ol li {
  list-style: decimal;
  list-style-position: inside;
  text-indent: -1.7rem;
  margin-left: 1.7rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style ol li {
    text-indent: -1.5rem;
    margin-left: 1.5rem;
  }
}
.post-cnts .post-style a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .post-cnts .post-style a:hover {
    text-decoration: none;
  }
}
.post-cnts .post-style strong, .post-cnts .post-style b {
  font-weight: 700 !important;
}
.post-cnts .post-style em, .post-cnts .post-style i {
  font-style: italic;
}
.post-cnts .post-style s, .post-cnts .post-style del {
  text-decoration: line-through; /* 打ち消し線を引く */
  text-decoration-color: #101010 !important;
}
.post-cnts .post-style .wp-block-image {
  /*			border-radius: .4rem;
  			overflow: hidden;*/
  margin-bottom: 2.4rem;
}
.post-cnts .post-style .wp-block-image img {
  /*				width: 100%;
  				max-width: inherit;*/
  border-radius: 0.4rem;
}
@media screen and (min-width: 768px) {
  .post-cnts .post-style .wp-block-image a {
    transition: 0.4s;
  }
  .post-cnts .post-style .wp-block-image a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.post-cnts .post-style .wp-block-gallery,
.post-cnts .post-style .wp-block-columns {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  margin-bottom: 2.4rem;
}
.post-cnts .post-style .wp-block-gallery .wp-block-image,
.post-cnts .post-style .wp-block-columns .wp-block-image {
  margin-bottom: 0;
  box-sizing: border-box;
}
.post-cnts .post-style .wp-block-gallery .wp-block-image img,
.post-cnts .post-style .wp-block-columns .wp-block-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: inherit;
}
.post-cnts .post-style .wp-block-gallery.columns-3, .post-cnts .post-style .wp-block-gallery.col3.columns-default,
.post-cnts .post-style .wp-block-columns.columns-3,
.post-cnts .post-style .wp-block-columns.col3.columns-default {
  gap: 2.4rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style .wp-block-gallery.columns-3, .post-cnts .post-style .wp-block-gallery.col3.columns-default,
  .post-cnts .post-style .wp-block-columns.columns-3,
  .post-cnts .post-style .wp-block-columns.col3.columns-default {
    gap: 1.6rem 1.6rem;
  }
}
.post-cnts .post-style .wp-block-gallery.columns-3 .wp-block-image, .post-cnts .post-style .wp-block-gallery.col3.columns-default .wp-block-image,
.post-cnts .post-style .wp-block-columns.columns-3 .wp-block-image,
.post-cnts .post-style .wp-block-columns.col3.columns-default .wp-block-image {
  width: calc((100% - 4.8rem) / 3) !important;
  flex-grow: inherit;
}
.post-cnts .post-style .wp-block-gallery.columns-3 .wp-block-image img, .post-cnts .post-style .wp-block-gallery.col3.columns-default .wp-block-image img,
.post-cnts .post-style .wp-block-columns.columns-3 .wp-block-image img,
.post-cnts .post-style .wp-block-columns.col3.columns-default .wp-block-image img {
  max-width: inherit !important;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style .wp-block-gallery.columns-3 .wp-block-image, .post-cnts .post-style .wp-block-gallery.col3.columns-default .wp-block-image,
  .post-cnts .post-style .wp-block-columns.columns-3 .wp-block-image,
  .post-cnts .post-style .wp-block-columns.col3.columns-default .wp-block-image {
    width: calc((100% - 1.6rem) / 2) !important;
  }
}
.post-cnts .post-style .wp-block-gallery.columns-2, .post-cnts .post-style .wp-block-gallery.col2.columns-default,
.post-cnts .post-style .wp-block-columns.columns-2,
.post-cnts .post-style .wp-block-columns.col2.columns-default {
  gap: 4rem 4rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style .wp-block-gallery.columns-2, .post-cnts .post-style .wp-block-gallery.col2.columns-default,
  .post-cnts .post-style .wp-block-columns.columns-2,
  .post-cnts .post-style .wp-block-columns.col2.columns-default {
    gap: 1.6rem 1.6rem;
  }
}
.post-cnts .post-style .wp-block-gallery.columns-2 .wp-block-image, .post-cnts .post-style .wp-block-gallery.col2.columns-default .wp-block-image,
.post-cnts .post-style .wp-block-columns.columns-2 .wp-block-image,
.post-cnts .post-style .wp-block-columns.col2.columns-default .wp-block-image {
  width: calc((100% - 4rem) / 2) !important;
  flex-grow: inherit;
}
.post-cnts .post-style .wp-block-gallery.columns-2 .wp-block-image img, .post-cnts .post-style .wp-block-gallery.col2.columns-default .wp-block-image img,
.post-cnts .post-style .wp-block-columns.columns-2 .wp-block-image img,
.post-cnts .post-style .wp-block-columns.col2.columns-default .wp-block-image img {
  max-width: inherit !important;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style .wp-block-gallery.columns-2 .wp-block-image, .post-cnts .post-style .wp-block-gallery.col2.columns-default .wp-block-image,
  .post-cnts .post-style .wp-block-columns.columns-2 .wp-block-image,
  .post-cnts .post-style .wp-block-columns.col2.columns-default .wp-block-image {
    width: calc((100% - 1.6rem) / 2) !important;
  }
}
.post-cnts .post-style .wp-block-gallery.columns-4, .post-cnts .post-style .wp-block-gallery.col4.columns-default,
.post-cnts .post-style .wp-block-columns.columns-4,
.post-cnts .post-style .wp-block-columns.col4.columns-default {
  gap: 2.4rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style .wp-block-gallery.columns-4, .post-cnts .post-style .wp-block-gallery.col4.columns-default,
  .post-cnts .post-style .wp-block-columns.columns-4,
  .post-cnts .post-style .wp-block-columns.col4.columns-default {
    gap: 1.6rem 1.6rem;
  }
}
.post-cnts .post-style .wp-block-gallery.columns-4 .wp-block-image, .post-cnts .post-style .wp-block-gallery.col4.columns-default .wp-block-image,
.post-cnts .post-style .wp-block-columns.columns-4 .wp-block-image,
.post-cnts .post-style .wp-block-columns.col4.columns-default .wp-block-image {
  width: calc((100% - 7.2rem) / 4) !important;
  flex-grow: inherit;
}
.post-cnts .post-style .wp-block-gallery.columns-4 .wp-block-image img, .post-cnts .post-style .wp-block-gallery.col4.columns-default .wp-block-image img,
.post-cnts .post-style .wp-block-columns.columns-4 .wp-block-image img,
.post-cnts .post-style .wp-block-columns.col4.columns-default .wp-block-image img {
  max-width: inherit !important;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style .wp-block-gallery.columns-4 .wp-block-image, .post-cnts .post-style .wp-block-gallery.col4.columns-default .wp-block-image,
  .post-cnts .post-style .wp-block-columns.columns-4 .wp-block-image,
  .post-cnts .post-style .wp-block-columns.col4.columns-default .wp-block-image {
    width: calc((100% - 1.6rem) / 2) !important;
  }
}
.post-cnts .post-style figcaption,
.post-cnts .post-style .wp-caption-text,
.post-cnts .post-style .wp-element-caption {
  margin-top: 0.8rem !important;
  font-size: 1.3rem;
  line-height: 1.5384615385;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style figcaption,
  .post-cnts .post-style .wp-caption-text,
  .post-cnts .post-style .wp-element-caption {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    font-weight: 400;
  }
}
.post-cnts .post-style .youtube,
.post-cnts .post-style .is-type-video {
  width: 36rem;
  aspect-ratio: 16/9;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style .youtube,
  .post-cnts .post-style .is-type-video {
    width: 100%;
  }
}
.post-cnts .post-style .youtube div,
.post-cnts .post-style .is-type-video div {
  width: 100%;
  height: 100%;
}
.post-cnts .post-style iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.post-cnts .post-style .aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style .aligncenter {
    width: 100%;
  }
}
.post-cnts .post-style .alignright {
  float: right;
  margin: 0.5em 0 2.4rem 1em;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style .alignright {
    width: 100%;
    float: none;
    margin: 0 0 2.4rem 0;
  }
}
.post-cnts .post-style .alignleft {
  float: left;
  margin: 0.5em 1em 2.4rem 0;
}
@media screen and (max-width: 767px) {
  .post-cnts .post-style .alignleft {
    width: 100%;
    float: none;
    margin: 0 0 2.4rem 0;
  }
}

/* estate-info
---------------------------------------------------------------------------- */
.estate-info {
  padding: 12rem 0;
  background-color: transparent;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .estate-info {
    padding: 8rem 0 12rem 0;
  }
}
.estate-info .bnr .bnr-button {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 4.8rem;
  padding: 3.9rem 20.8rem 3.9rem 4.8rem;
  border-radius: 0.4rem;
  background: #224589;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .estate-info .bnr .bnr-button {
    flex-direction: column;
    gap: 0.8rem 0;
    padding: 1.6rem 0 0 0;
  }
}
.estate-info .bnr .bnr-button .cat-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column;
  gap: 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .estate-info .bnr .bnr-button .cat-txt {
    flex-direction: row;
    gap: 0 0.8rem;
    padding: 0 1.6rem;
    box-sizing: border-box;
  }
}
.estate-info .bnr .bnr-button .cat-txt .txt {
  display: inline-block;
  text-align: center;
  width: 18rem;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
  padding: 0.4rem 1.6rem;
  border-radius: 0.4rem;
  background: #D73030;
}
@media screen and (max-width: 767px) {
  .estate-info .bnr .bnr-button .cat-txt .txt {
    width: 10.4rem;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
  }
}
.estate-info .bnr .bnr-button .bnr-txt {
  position: relative;
  font-size: 3.2rem;
  line-height: 1.6;
  letter-spacing: 0.00096em;
  font-weight: 700;
  color: #fff;
  padding-left: 5.4rem;
}
@media screen and (max-width: 767px) {
  .estate-info .bnr .bnr-button .bnr-txt {
    font-size: 2rem;
    line-height: 1.6;
    letter-spacing: 0.0006em;
    font-weight: 700;
    padding-left: 0;
    text-align: center;
    padding: 0 1.6rem 0.8rem 1.6rem;
    box-sizing: border-box;
  }
}
.estate-info .bnr .bnr-button .bnr-txt:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  background: url("../images/common/ico_home.svg") no-repeat center center;
  background-size: 100% auto;
  width: 3.2rem;
  height: 3.3rem;
}
@media screen and (max-width: 767px) {
  .estate-info .bnr .bnr-button .bnr-txt:before {
    position: relative;
    top: 0.8rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.8rem;
    width: 2.4rem;
    height: 2.5rem;
  }
}
.estate-info .bnr .bnr-button .arrow {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column;
  width: 16rem;
  height: 16rem;
  background: rgba(0, 0, 0, 0.3);
  border-left: 2px solid #D73030;
}
@media screen and (max-width: 767px) {
  .estate-info .bnr .bnr-button .arrow {
    position: relative;
    align-items: flex-start;
    width: 100%;
    height: 4.2rem;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 500;
    color: #fff;
    padding: 1rem 1.6rem;
    border-left: none;
    border-top: 2px solid #D73030;
  }
}
.estate-info .bnr .bnr-button .arrow:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 1rem 0 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .estate-info .bnr .bnr-button .arrow:after {
    left: auto;
    right: 1.7rem;
    transform: translate(0, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    border-width: 0.4rem 0 0.4rem 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .estate-info .bnr .bnr-button .arrow:before {
    position: absolute;
    right: 4.2rem;
    top: 0;
    display: block;
    content: "";
    width: 1px;
    height: 100%;
    background: #fff;
  }
}

/* layout
-----------------------------------------------------------------------------*/
.en {
  font-family: "Public Sans", sans-serif;
}

/* base
---------------------------------------------------------------------------- */
html {
  font-size: 0.6944444444vw;
}
@media screen and (min-width: 1441px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5445292621vw;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #101010;
  font-size: 1.5rem;
  background: url("../images/common/bg_pattern.jpg") repeat left top;
  background-size: 3.9rem 2rem;
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}

a {
  text-decoration: none;
  color: #101010;
}
@media screen and (min-width: 768px) {
  a:hover {
    text-decoration: underline;
  }
}

img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
    max-width: inherit;
  }
}

* {
  word-break: break-all;
}

input,
textarea {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
}

/*------------- .l-pagebody -------------*/
.main_cnts {
  width: 100%;
  overflow: hidden;
}

.l-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (min-width: 1441px) {
  .l-wrapper {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    width: 100%;
    max-width: inherit;
    padding: 0 3rem;
    box-sizing: border-box;
  }
}

.l-inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: inherit;
    padding: 0 1.6rem;
    box-sizing: border-box;
  }
}

/*------------- .l-footer -------------*/
.l-footer {
  padding: 4rem 0 0 0;
  background: #fff;
  box-sizing: border-box;
}
.l-footer .l-inner {
  position: relative;
}
.l-footer .f-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
}
@media screen and (max-width: 767px) {
  .l-footer .f-logo {
    flex-direction: column;
  }
}
.l-footer .f-logo .logo {
  width: 23.6rem;
}
.l-footer .f-logo .ico-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer .f-logo .ico-list {
    position: absolute;
    top: 35.4rem;
    justify-content: center;
    gap: 0 2rem;
  }
}
.l-footer .f-logo .ico-list li {
  width: 6.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer .f-logo .ico-list li {
    width: 6.8rem;
  }
}
.l-footer .f-info {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  align-content: stretch;
}
@media screen and (max-width: 767px) {
  .l-footer .f-info {
    align-items: center;
    justify-content: flex-start;
    margin-top: 3.2rem;
    flex-direction: column;
    gap: 3.2rem 0;
    padding-bottom: 14.4rem;
  }
}
.l-footer .f-info .txt {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: #224589;
}
@media screen and (max-width: 767px) {
  .l-footer .f-info .txt {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
  }
  .l-footer .f-info .txt a {
    color: #224589;
  }
}
.l-footer .f-info .btn_wrap {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer .f-info .btn_wrap {
    margin-top: 3.2rem;
  }
  .l-footer .f-info .btn_wrap .c-button {
    font-size: 2rem;
    line-height: 1;
    font-weight: 400;
  }
}
.l-footer .f-info .f-nav .f-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer .f-info .f-nav .f-nav-list {
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem 1.4rem;
  }
}
.l-footer .f-info .f-nav .f-nav-list li {
  position: relative;
}
.l-footer .f-info .f-nav .f-nav-list li:not(:last-of-type):after {
  position: absolute;
  right: -0.8rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 1px;
  height: 1rem;
  background: #224589;
}
@media screen and (max-width: 767px) {
  .l-footer .f-info .f-nav .f-nav-list li:not(:last-of-type):after {
    height: 1.6rem;
  }
}
.l-footer .f-info .f-nav .f-nav-list li a {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  color: #224589;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .l-footer .f-info .f-nav .f-nav-list li a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .f-info .f-nav .f-nav-list li.sp-blank {
    width: 100%;
    height: 1px;
  }
  .l-footer .f-info .f-nav .f-nav-list li.sp-blank:after {
    display: none;
  }
  .l-footer .f-info .f-nav .f-nav-list li:nth-of-type(3):after {
    display: none;
  }
  .l-footer .f-info .f-nav .f-nav-list li:nth-of-type(5) {
    padding-left: 0.8rem;
  }
  .l-footer .f-info .f-nav .f-nav-list li:nth-of-type(5):before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    content: "";
    width: 1px;
    height: 1.6rem;
    background: #224589;
  }
}
.l-footer .f-bnr-wrap {
  margin-top: 6.4rem;
}
.l-footer .f-bnr-wrap .f-bnr-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 2.4rem 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer .f-bnr-wrap .f-bnr-list {
    gap: 1.6rem 0;
  }
}
.l-footer .f-bnr-wrap .f-bnr-list li {
  width: calc((100% - 7.2rem) / 4);
}
@media screen and (max-width: 767px) {
  .l-footer .f-bnr-wrap .f-bnr-list li {
    width: 100%;
  }
}
.l-footer .copy-wrap {
  position: relative;
  margin-top: 4rem;
  padding: 2.4rem 0;
  background: url("../images/common/bg_footer.png") no-repeat center center;
  background-size: cover;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-footer .copy-wrap {
    padding: 1.6rem 0;
  }
}
.l-footer .copy-wrap .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
}
@media screen and (max-width: 767px) {
  .l-footer .copy-wrap .l-inner {
    flex-direction: column;
    justify-content: center;
  }
}
.l-footer .copy-wrap .txt-link {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .l-footer .copy-wrap .txt-link:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .copy-wrap .txt-link {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
  }
}
.l-footer .copy-wrap .copy {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-footer .copy-wrap .copy {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
  }
}

/* pagetop
---------------------------------------------------------------------------- */
/*------------- .l-header -------------*/
.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 1.6rem;
  box-sizing: border-box;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding-top: 0;
  }
}
.l-header .header__inner {
  width: 100%;
  max-width: 136rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  margin: 0 auto;
  padding: 0.4rem 1.6rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: 0.8s;
}
@media screen and (max-width: 767px) {
  .l-header .header__inner {
    max-width: inherit;
    padding: 1.5rem 1.6rem;
    background: none;
    border-radius: 0;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
}
.l-header .header__inner .logo-wrap .logo {
  width: 19.1rem;
}
@media screen and (max-width: 767px) {
  .l-header .header__inner .logo-wrap .logo {
    display: none;
    width: 12rem;
  }
}
.l-header .header__inner .logo-wrap .logo img {
  display: block;
}
.l-header .header__inner .nav-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header .header__inner .nav-btn {
    display: block;
    z-index: 999;
    mix-blend-mode: normal;
  }
}
.l-header .header__inner .nav-btn__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 0.4rem;
  padding: 0.8rem 1.6rem;
  background: #D73030;
  border-radius: 0.4rem;
  box-sizing: border-box;
  cursor: pointer;
}
.l-header .header__inner .nav-btn__inner .border {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  flex-direction: column;
  gap: 0.4rem 0;
  width: 1.3rem;
}
.l-header .header__inner .nav-btn__inner .border .btn-border {
  width: 100%;
  height: 1px;
  background: #fff;
  transition: 0.8s;
}
.l-header .header__inner .nav-btn__inner .btn-txt .txt {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
.l-header .header__inner .nav-btn.active .border .btn-border {
  position: absolute;
  left: 0;
  top: -0.2rem;
  width: 1.3rem;
}
.l-header .header__inner .nav-btn.active .border .btn-border:nth-of-type(1) {
  transform: rotate(45deg);
}
.l-header .header__inner .nav-btn.active .border .btn-border:nth-of-type(2) {
  display: none;
}
.l-header .header__inner .nav-btn.active .border .btn-border:nth-of-type(3) {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .l-header .header__inner .nav__wrapper {
    position: fixed;
    right: 0;
    top: 0;
    width: calc(100% - 4.8rem);
    height: 100dvh;
    transform: translateX(100%);
    padding: 1.6rem 3.7rem 3.2rem 3.7rem;
    background: url("../images/common/bg_pattern.jpg") repeat left top;
    background-size: 3.9rem 2rem;
    z-index: 998;
    transition: 0.8s;
  }
}
@media screen and (max-width: 767px) {
  .l-header .header__inner .nav__wrapper .nav-logo {
    width: 12rem;
    margin-bottom: 8rem;
  }
}
.l-header .header__inner .nav__wrapper .nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-header .header__inner .nav__wrapper .nav {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.6rem 0;
    padding: 0 0.7rem;
  }
}
.l-header .header__inner .nav__wrapper .nav__items {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-header .header__inner .nav__wrapper .nav__items {
    position: relative;
    width: 100%;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #CCC;
  }
  .l-header .header__inner .nav__wrapper .nav__items a {
    position: relative;
    display: block;
  }
  .l-header .header__inner .nav__wrapper .nav__items a:after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, 0);
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #D73030;
    border-width: 4px 0 4px 8px;
  }
}
@media screen and (max-width: 767px) {
  .l-header .header__inner .nav__wrapper .nav__items.h-btn {
    padding-bottom: 0;
    margin-top: 8rem;
    border-bottom: none;
  }
}
.l-header .header__inner .nav__wrapper .nav__items.h-btn .c-button {
  padding: 0.8rem 6.4rem 0.8rem 1.6rem;
}
.l-header .header__inner .nav__wrapper .nav__items.h-btn .c-button .arrow {
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .l-header .header__inner .nav__wrapper .nav__items.h-btn .c-button .arrow {
    width: 4.2rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header .header__inner .nav__wrapper .nav__items.h-btn .c-button:hover {
    padding: 0.8rem 6.4rem 0.8rem 1.6rem;
  }
}
.l-header .header__inner .nav__wrapper.open {
  transform: translateX(0);
}
.l-header.bg .header__inner {
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
@media screen and (max-width: 767px) {
  .l-header.bg .header__inner {
    background: none;
    border-radius: 0;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
}

@media screen and (max-width: 767px) {
  body:before {
    position: fixed;
    left: 0;
    top: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transition: 0.8s;
  }
  body.nav-open:before {
    opacity: 1;
    pointer-events: auto;
  }
}
/* layout
-----------------------------------------------------------------------------*/
/* module
---------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .nopc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
}
/* clearfix
---------------------------------------------------------------------------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* text
---------------------------------------------------------------------------- */
.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold !important;
}

@media screen and (max-width: 767px) {
  .sptal {
    text-align: left !important;
  }
  .sptac {
    text-align: center !important;
  }
  .sptar {
    text-align: right !important;
  }
  .spfwb {
    font-weight: bold !important;
  }
}
/* margin
---------------------------------------------------------------------------- */
.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

@media screen and (max-width: 767px) {
  .spmt100 {
    margin-top: 27.7777777778vw !important;
  }
  .spmb100 {
    margin-bottom: 27.7777777778vw !important;
  }
  .spml100 {
    margin-left: 27.7777777778vw !important;
  }
  .spmr100 {
    margin-right: 27.7777777778vw !important;
  }
  .spmt95 {
    margin-top: 26.3888888889vw !important;
  }
  .spmb95 {
    margin-bottom: 26.3888888889vw !important;
  }
  .spml95 {
    margin-left: 26.3888888889vw !important;
  }
  .spmr95 {
    margin-right: 26.3888888889vw !important;
  }
  .spmt90 {
    margin-top: 25vw !important;
  }
  .spmb90 {
    margin-bottom: 25vw !important;
  }
  .spml90 {
    margin-left: 25vw !important;
  }
  .spmr90 {
    margin-right: 25vw !important;
  }
  .spmt85 {
    margin-top: 23.6111111111vw !important;
  }
  .spmb85 {
    margin-bottom: 23.6111111111vw !important;
  }
  .spml85 {
    margin-left: 23.6111111111vw !important;
  }
  .spmr85 {
    margin-right: 23.6111111111vw !important;
  }
  .spmt80 {
    margin-top: 22.2222222222vw !important;
  }
  .spmb80 {
    margin-bottom: 22.2222222222vw !important;
  }
  .spml80 {
    margin-left: 22.2222222222vw !important;
  }
  .spmr80 {
    margin-right: 22.2222222222vw !important;
  }
  .spmt75 {
    margin-top: 20.8333333333vw !important;
  }
  .spmb75 {
    margin-bottom: 20.8333333333vw !important;
  }
  .spml75 {
    margin-left: 20.8333333333vw !important;
  }
  .spmr75 {
    margin-right: 20.8333333333vw !important;
  }
  .spmt70 {
    margin-top: 19.4444444444vw !important;
  }
  .spmb70 {
    margin-bottom: 19.4444444444vw !important;
  }
  .spml70 {
    margin-left: 19.4444444444vw !important;
  }
  .spmr70 {
    margin-right: 19.4444444444vw !important;
  }
  .spmt65 {
    margin-top: 18.0555555556vw !important;
  }
  .spmb65 {
    margin-bottom: 18.0555555556vw !important;
  }
  .spml65 {
    margin-left: 18.0555555556vw !important;
  }
  .spmr65 {
    margin-right: 18.0555555556vw !important;
  }
  .spmt60 {
    margin-top: 16.6666666667vw !important;
  }
  .spmb60 {
    margin-bottom: 16.6666666667vw !important;
  }
  .spml60 {
    margin-left: 16.6666666667vw !important;
  }
  .spmr60 {
    margin-right: 16.6666666667vw !important;
  }
  .spmt55 {
    margin-top: 15.2777777778vw !important;
  }
  .spmb55 {
    margin-bottom: 15.2777777778vw !important;
  }
  .spml55 {
    margin-left: 15.2777777778vw !important;
  }
  .spmr55 {
    margin-right: 15.2777777778vw !important;
  }
  .spmt50 {
    margin-top: 13.8888888889vw !important;
  }
  .spmb50 {
    margin-bottom: 13.8888888889vw !important;
  }
  .spml50 {
    margin-left: 13.8888888889vw !important;
  }
  .spmr50 {
    margin-right: 13.8888888889vw !important;
  }
  .spmt45 {
    margin-top: 12.5vw !important;
  }
  .spmb45 {
    margin-bottom: 12.5vw !important;
  }
  .spml45 {
    margin-left: 12.5vw !important;
  }
  .spmr45 {
    margin-right: 12.5vw !important;
  }
  .spmt40 {
    margin-top: 11.1111111111vw !important;
  }
  .spmb40 {
    margin-bottom: 11.1111111111vw !important;
  }
  .spml40 {
    margin-left: 11.1111111111vw !important;
  }
  .spmr40 {
    margin-right: 11.1111111111vw !important;
  }
  .spmt35 {
    margin-top: 9.7222222222vw !important;
  }
  .spmb35 {
    margin-bottom: 9.7222222222vw !important;
  }
  .spml35 {
    margin-left: 9.7222222222vw !important;
  }
  .spmr35 {
    margin-right: 9.7222222222vw !important;
  }
  .spmt30 {
    margin-top: 8.3333333333vw !important;
  }
  .spmb30 {
    margin-bottom: 8.3333333333vw !important;
  }
  .spml30 {
    margin-left: 8.3333333333vw !important;
  }
  .spmr30 {
    margin-right: 8.3333333333vw !important;
  }
  .spmt25 {
    margin-top: 6.9444444444vw !important;
  }
  .spmb25 {
    margin-bottom: 6.9444444444vw !important;
  }
  .spml25 {
    margin-left: 6.9444444444vw !important;
  }
  .spmr25 {
    margin-right: 6.9444444444vw !important;
  }
  .spmt20 {
    margin-top: 5.5555555556vw !important;
  }
  .spmb20 {
    margin-bottom: 5.5555555556vw !important;
  }
  .spml20 {
    margin-left: 5.5555555556vw !important;
  }
  .spmr20 {
    margin-right: 5.5555555556vw !important;
  }
  .spmt15 {
    margin-top: 4.1666666667vw !important;
  }
  .spmb15 {
    margin-bottom: 4.1666666667vw !important;
  }
  .spml15 {
    margin-left: 4.1666666667vw !important;
  }
  .spmr15 {
    margin-right: 4.1666666667vw !important;
  }
  .spmt10 {
    margin-top: 2.7777777778vw !important;
  }
  .spmb10 {
    margin-bottom: 2.7777777778vw !important;
  }
  .spml10 {
    margin-left: 2.7777777778vw !important;
  }
  .spmr10 {
    margin-right: 2.7777777778vw !important;
  }
  .spmt5 {
    margin-top: 1.3888888889vw !important;
  }
  .spmb5 {
    margin-bottom: 1.3888888889vw !important;
  }
  .spml5 {
    margin-left: 1.3888888889vw !important;
  }
  .spmr5 {
    margin-right: 1.3888888889vw !important;
  }
  .spmt0 {
    margin-top: 0vw !important;
  }
  .spmb0 {
    margin-bottom: 0vw !important;
  }
  .spml0 {
    margin-left: 0vw !important;
  }
  .spmr0 {
    margin-right: 0vw !important;
  }
}
/* padding
---------------------------------------------------------------------------- */
.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

@media screen and (max-width: 767px) {
  .sppt100 {
    padding-top: 27.7777777778vw !important;
  }
  .sppb100 {
    padding-bottom: 27.7777777778vw !important;
  }
  .sppl100 {
    padding-left: 27.7777777778vw !important;
  }
  .sppr100 {
    padding-right: 27.7777777778vw !important;
  }
  .sppt95 {
    padding-top: 26.3888888889vw !important;
  }
  .sppb95 {
    padding-bottom: 26.3888888889vw !important;
  }
  .sppl95 {
    padding-left: 26.3888888889vw !important;
  }
  .sppr95 {
    padding-right: 26.3888888889vw !important;
  }
  .sppt90 {
    padding-top: 25vw !important;
  }
  .sppb90 {
    padding-bottom: 25vw !important;
  }
  .sppl90 {
    padding-left: 25vw !important;
  }
  .sppr90 {
    padding-right: 25vw !important;
  }
  .sppt85 {
    padding-top: 23.6111111111vw !important;
  }
  .sppb85 {
    padding-bottom: 23.6111111111vw !important;
  }
  .sppl85 {
    padding-left: 23.6111111111vw !important;
  }
  .sppr85 {
    padding-right: 23.6111111111vw !important;
  }
  .sppt80 {
    padding-top: 22.2222222222vw !important;
  }
  .sppb80 {
    padding-bottom: 22.2222222222vw !important;
  }
  .sppl80 {
    padding-left: 22.2222222222vw !important;
  }
  .sppr80 {
    padding-right: 22.2222222222vw !important;
  }
  .sppt75 {
    padding-top: 20.8333333333vw !important;
  }
  .sppb75 {
    padding-bottom: 20.8333333333vw !important;
  }
  .sppl75 {
    padding-left: 20.8333333333vw !important;
  }
  .sppr75 {
    padding-right: 20.8333333333vw !important;
  }
  .sppt70 {
    padding-top: 19.4444444444vw !important;
  }
  .sppb70 {
    padding-bottom: 19.4444444444vw !important;
  }
  .sppl70 {
    padding-left: 19.4444444444vw !important;
  }
  .sppr70 {
    padding-right: 19.4444444444vw !important;
  }
  .sppt65 {
    padding-top: 18.0555555556vw !important;
  }
  .sppb65 {
    padding-bottom: 18.0555555556vw !important;
  }
  .sppl65 {
    padding-left: 18.0555555556vw !important;
  }
  .sppr65 {
    padding-right: 18.0555555556vw !important;
  }
  .sppt60 {
    padding-top: 16.6666666667vw !important;
  }
  .sppb60 {
    padding-bottom: 16.6666666667vw !important;
  }
  .sppl60 {
    padding-left: 16.6666666667vw !important;
  }
  .sppr60 {
    padding-right: 16.6666666667vw !important;
  }
  .sppt55 {
    padding-top: 15.2777777778vw !important;
  }
  .sppb55 {
    padding-bottom: 15.2777777778vw !important;
  }
  .sppl55 {
    padding-left: 15.2777777778vw !important;
  }
  .sppr55 {
    padding-right: 15.2777777778vw !important;
  }
  .sppt50 {
    padding-top: 13.8888888889vw !important;
  }
  .sppb50 {
    padding-bottom: 13.8888888889vw !important;
  }
  .sppl50 {
    padding-left: 13.8888888889vw !important;
  }
  .sppr50 {
    padding-right: 13.8888888889vw !important;
  }
  .sppt45 {
    padding-top: 12.5vw !important;
  }
  .sppb45 {
    padding-bottom: 12.5vw !important;
  }
  .sppl45 {
    padding-left: 12.5vw !important;
  }
  .sppr45 {
    padding-right: 12.5vw !important;
  }
  .sppt40 {
    padding-top: 11.1111111111vw !important;
  }
  .sppb40 {
    padding-bottom: 11.1111111111vw !important;
  }
  .sppl40 {
    padding-left: 11.1111111111vw !important;
  }
  .sppr40 {
    padding-right: 11.1111111111vw !important;
  }
  .sppt35 {
    padding-top: 9.7222222222vw !important;
  }
  .sppb35 {
    padding-bottom: 9.7222222222vw !important;
  }
  .sppl35 {
    padding-left: 9.7222222222vw !important;
  }
  .sppr35 {
    padding-right: 9.7222222222vw !important;
  }
  .sppt30 {
    padding-top: 8.3333333333vw !important;
  }
  .sppb30 {
    padding-bottom: 8.3333333333vw !important;
  }
  .sppl30 {
    padding-left: 8.3333333333vw !important;
  }
  .sppr30 {
    padding-right: 8.3333333333vw !important;
  }
  .sppt25 {
    padding-top: 6.9444444444vw !important;
  }
  .sppb25 {
    padding-bottom: 6.9444444444vw !important;
  }
  .sppl25 {
    padding-left: 6.9444444444vw !important;
  }
  .sppr25 {
    padding-right: 6.9444444444vw !important;
  }
  .sppt20 {
    padding-top: 5.5555555556vw !important;
  }
  .sppb20 {
    padding-bottom: 5.5555555556vw !important;
  }
  .sppl20 {
    padding-left: 5.5555555556vw !important;
  }
  .sppr20 {
    padding-right: 5.5555555556vw !important;
  }
  .sppt15 {
    padding-top: 4.1666666667vw !important;
  }
  .sppb15 {
    padding-bottom: 4.1666666667vw !important;
  }
  .sppl15 {
    padding-left: 4.1666666667vw !important;
  }
  .sppr15 {
    padding-right: 4.1666666667vw !important;
  }
  .sppt10 {
    padding-top: 2.7777777778vw !important;
  }
  .sppb10 {
    padding-bottom: 2.7777777778vw !important;
  }
  .sppl10 {
    padding-left: 2.7777777778vw !important;
  }
  .sppr10 {
    padding-right: 2.7777777778vw !important;
  }
  .sppt5 {
    padding-top: 1.3888888889vw !important;
  }
  .sppb5 {
    padding-bottom: 1.3888888889vw !important;
  }
  .sppl5 {
    padding-left: 1.3888888889vw !important;
  }
  .sppr5 {
    padding-right: 1.3888888889vw !important;
  }
  .sppt0 {
    padding-top: 0vw !important;
  }
  .sppb0 {
    padding-bottom: 0vw !important;
  }
  .sppl0 {
    padding-left: 0vw !important;
  }
  .sppr0 {
    padding-right: 0vw !important;
  }
}
/* print
---------------------------------------------------------------------------- */
/* print
---------------------------------------------------------------------------- */
@media print {
  * html body {
    zoom: 70%;
  }
}