@charset "UTF-8";
/* ======================================
    Reset CSS 
====================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
main,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

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

nav ul,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* form reset
------------------------------- */
input,
select {
  vertical-align: middle;
}

input[type=button],
input[type=text],
input[type=submit],
input[type=image],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* IE text マーク削除 */
input::-ms-clear {
  visibility: hidden;
}

/* IE password マーク削除 */
input::-ms-reveal {
  visibility: hidden;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* ======================================
    Base (SP)
====================================== */
html {
  background: #fff;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-x: hidden;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  color: #333;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

p {
  /* フォントサイズはbodyを継承 */
  line-height: 1.6;
  text-align: justify;
}

/* svgのIEバグ回避 */
img[src$=".svg"] {
  width: 100%;
  height: auto;
}

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

a img {
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

strong {
  font-weight: 700;
}

address {
  font-style: normal;
}

/* リンク----------------------------- */
a {
  color: inherit;
  /* ブレ防止追加 */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
  }
  a:hover img, a:focus img {
    opacity: 0.7;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* =================================================
    .ly_header 
=================================================== */
.ly_header {
  position: relative;
}

/* =================================================
    .bl_header
=================================================== */
.bl_header {
  width: 100%;
  height: 14rem;
  background: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_header {
    height: 18rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.bl_header_logo {
  display: block;
  width: 16.9rem;
  height: auto;
  margin: 0 auto;
}

/* ======================================
    el_btnHamburger
====================================== */
.el_btnHamburger {
  position: fixed;
  top: 0rem;
  right: 0rem;
  width: 7rem;
  height: 7rem;
  margin: 0;
  overflow: hidden;
  z-index: 11100;
  background: #a8c4c7;
  cursor: pointer;
}
.el_btnHamburger__animation {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 3.5rem;
  height: 1.4rem;
  text-align: center;
  z-index: 11000;
}
.el_btnHamburger_line {
  background: #fff;
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  z-index: 10100;
}

.el_btnHamburger_line.el_btnHamburger_line__top {
  -webkit-transform: translateY(-0.7rem);
          transform: translateY(-0.7rem);
}

.el_btnHamburger_line.el_btnHamburger_line__bottom {
  -webkit-transform: translateY(0.7rem);
          transform: translateY(0.7rem);
}

.is_btnHamburger__open .el_btnHamburger_line.el_btnHamburger_line__middle {
  background: transparent;
}

.is_btnHamburger__open .el_btnHamburger_line.el_btnHamburger_line__top {
  background: #fff;
  -webkit-transform: rotate(-45deg) translateY(0px);
          transform: rotate(-45deg) translateY(0px);
}

.is_btnHamburger__open .el_btnHamburger_line.el_btnHamburger_line__bottom {
  background: #fff;
  -webkit-transform: rotate(45deg) translateY(0px);
          transform: rotate(45deg) translateY(0px);
}

/* 背景 */
.js_wrapBg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  cursor: pointer;
}

/* 表示された時用のCSS */
.is_btnHamburger__on .js_wrapBg {
  opacity: 0.8;
  visibility: visible;
}

/* ======================================
    .bl_headerNav
====================================== */
.bl_headerNav {
  position: fixed;
  top: 0;
  /* 右から出す場合 */
  right: -32rem;
  display: block;
  width: 26rem;
  height: 100%;
  background: #a8c4c7; /* 背景色 */
  padding: 5rem 3rem 3rem;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 10010;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.bl_headerNav > ul {
  margin-bottom: 5rem;
  border-bottom: 1px solid #fff;
}
.bl_headerNav > ul > li {
  position: relative;
  text-align: center;
  display: block;
}
.bl_headerNav > ul > li::after {
  content: "";
  display: block;
  position: absolute;
  top: 3rem;
  right: 0;
  width: 12px;
  height: 10px;
  background: url(../images/common/arrow_right_white.svg) no-repeat center center/contain;
}
.bl_headerNav > ul > li.menu-item-has-children > a {
  border-bottom: none;
}
.bl_headerNav > ul > li.menu-item-has-children::after {
  content: "";
  display: block;
  position: absolute;
  top: 3rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  right: 0;
  width: 12px;
  height: 10px;
  background: url(../images/common/arrow_right_white.svg) no-repeat center center/contain;
}
.bl_headerNav > ul > li.menu-item-has-children.is_open > a {
  border-bottom: 1px solid #fff;
}
.bl_headerNav > ul > li.menu-item-has-children.is_open::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.bl_headerNav > ul > li > a {
  position: relative;
  display: block;
  padding: 1.5em 0;
  line-height: 1.6; /* 項目高さ */
  color: #fff;
  text-decoration: none;
  text-align: left;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border-bottom: 1px solid #fff;
}
.bl_headerNav > ul > li .sub-menu > li {
  position: relative;
  text-align: center;
  display: block;
}
.bl_headerNav > ul > li .sub-menu > li::after {
  content: "";
  display: block;
  position: absolute;
  top: 3rem;
  right: 0;
  width: 12px;
  height: 10px;
  background: url(../images/common/arrow_right_white.svg) no-repeat center center/contain;
}
.bl_headerNav > ul > li .sub-menu > li > a {
  position: relative;
  display: block;
  padding: 1.5em 0;
  padding-left: 3rem;
  line-height: 1.6; /* 項目高さ */
  color: #fff;
  text-decoration: none;
  text-align: left;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  border-bottom: 1px dotted #fff;
}
.bl_headerNav > ul > li .sub-menu > li > a:last-of-type {
  border-bottom: none;
}

.is_btnHamburger__on .bl_headerNav {
  right: 0; /* 右から出す場合 */
}

/* =================================================
    footer
=================================================== */
.bl_footer {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background: #333333;
}
@media screen and (min-width: 768px) {
  .bl_footer {
    padding-top: 8rem;
    padding-bottom: 1rem;
  }
}
.bl_footer_inner {
  width: 90.6666666667%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .bl_footer_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100rem;
  }
}
.bl_footer_logo {
  width: 168px;
  height: auto;
  margin: 0 auto 5rem;
}
@media screen and (min-width: 1025px) {
  .bl_footer_logo {
    margin: 0;
    margin-top: 3rem;
  }
}
.bl_footer .bl_sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 10rem;
}
@media screen and (min-width: 1025px) {
  .bl_footer .bl_sitemap {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
  }
}
.bl_footer .bl_sitemap_page {
  margin-right: 5rem;
}
.bl_footer .bl_sitemap li {
  margin-bottom: 2rem;
}
.bl_footer .bl_sitemap li:last-of-type {
  margin-bottom: 0;
}
.bl_footer .bl_sitemap li a {
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
}
.bl_footer .bl_sitemap li a::before {
  content: "-";
  display: inline-block;
  color: #fff;
  margin-right: 5px;
}
@media screen and (min-width: 1025px) {
  .bl_footer .bl_sitemap li a:hover {
    text-decoration: underline;
  }
}
.bl_footer_copyright {
  display: block;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

/* =================================================
    main
=================================================== */
/* =================================================
    layout section
=================================================== */
.ly_sec {
  width: 100%;
  height: auto;
  padding-top: 0rem;
  padding-bottom: 8rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .ly_sec {
    padding-top: 0rem;
    padding-bottom: 10rem;
  }
}
.ly_sec_inner {
  width: 90.6666666667%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .ly_sec_inner {
    width: 100%;
  }
}

/* =================================================
    2カラムレイアウト 
=================================================== */
.ly_cont {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .ly_cont {
    width: 100%;
    max-width: 100rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1025px) {
  .ly_cont .ly_cont_main {
    margin-right: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 6%;
  }
}
@media screen and (min-width: 1025px) {
  .ly_cont .ly_cont_main .ly_sec_inner {
    max-width: 100%;
  }
}
.ly_cont .ly_cont_side {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .ly_cont .ly_cont_side {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
  }
}

/* ======================================
    .js_pageTop
====================================== */
.js_pageTop {
  position: fixed;
  bottom: 0;
  right: 4%;
  padding: 0;
  z-index: 11010;
  width: 40px;
  height: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  .js_pageTop {
    cursor: pointer;
  }
  .js_pageTop:hover {
    opacity: 0.7;
  }
}

/* ======================================
    Common Class
====================================== */
/*  display
-------------------------------------- */
.sp_none {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .sp_none {
    display: block !important;
  }
}

.sp_display {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .sp_display {
    display: none !important;
  }
}

.pc_none {
  display: block !important;
}
@media screen and (min-width: 1025px) {
  .pc_none {
    display: none !important;
  }
}

.pc_display {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .pc_display {
    display: block !important;
  }
}

/*  direction
-------------------------------------- */
.hp_row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

/*  text_align
-------------------------------------- */
.hp_text_center {
  text-align: center !important;
}

.hp_text_left {
  text-align: left !important;
}

.hp_text_right {
  text-align: left !important;
}

/*  margin padding
-------------------------------------- */
/* margin 部分的な設定*/
.hp_mb-0 {
  margin-bottom: 0px !important;
  margin-bottom: 0rem !important;
}

.hp_mb-5 {
  margin-bottom: 5px !important;
  margin-bottom: 0.5rem !important;
}

.hp_mb-10 {
  margin-bottom: 10px !important;
  margin-bottom: 1rem !important;
}

.hp_mb-15 {
  margin-bottom: 15px !important;
  margin-bottom: 1.5rem !important;
}

.hp_mb-20 {
  margin-bottom: 20px !important;
  margin-bottom: 2rem !important;
}

.hp_mb-25 {
  margin-bottom: 25px !important;
  margin-bottom: 2.5rem !important;
}

.hp_mb-30 {
  margin-bottom: 30px !important;
  margin-bottom: 3rem !important;
}

.hp_mb-35 {
  margin-bottom: 35px !important;
  margin-bottom: 3.5rem !important;
}

.hp_mb-40 {
  margin-bottom: 40px !important;
  margin-bottom: 4rem !important;
}

.hp_mb-45 {
  margin-bottom: 45px !important;
  margin-bottom: 4.5rem !important;
}

.hp_mb-50 {
  margin-bottom: 50px !important;
  margin-bottom: 5rem !important;
}

.hp_mb-55 {
  margin-bottom: 55px !important;
  margin-bottom: 5.5rem !important;
}

.hp_mb-60 {
  margin-bottom: 60px !important;
  margin-bottom: 6rem !important;
}

.hp_mb-65 {
  margin-bottom: 65px !important;
  margin-bottom: 6.5rem !important;
}

.hp_mb-70 {
  margin-bottom: 70px !important;
  margin-bottom: 7rem !important;
}

.hp_mb-75 {
  margin-bottom: 75px !important;
  margin-bottom: 7.5rem !important;
}

.hp_mb-80 {
  margin-bottom: 80px !important;
  margin-bottom: 8rem !important;
}

.hp_mb-85 {
  margin-bottom: 85px !important;
  margin-bottom: 8.5rem !important;
}

.hp_mb-90 {
  margin-bottom: 90px !important;
  margin-bottom: 9rem !important;
}

.hp_mb-95 {
  margin-bottom: 95px !important;
  margin-bottom: 9.5rem !important;
}

.hp_mb-100 {
  margin-bottom: 100px !important;
  margin-bottom: 10rem !important;
}

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

.hp_mt-5 {
  margin-top: 5px !important;
  margin-top: 0.5rem !important;
}

.hp_mt-10 {
  margin-top: 10px !important;
  margin-top: 1rem !important;
}

.hp_mt-15 {
  margin-top: 15px !important;
  margin-top: 1.5rem !important;
}

.hp_mt-20 {
  margin-top: 20px !important;
  margin-top: 2rem !important;
}

.hp_mt-25 {
  margin-top: 25px !important;
  margin-top: 2.5rem !important;
}

.hp_mt-30 {
  margin-top: 30px !important;
  margin-top: 3rem !important;
}

.hp_mt-35 {
  margin-top: 35px !important;
  margin-top: 3.5rem !important;
}

.hp_mt-40 {
  margin-top: 40px !important;
  margin-top: 4rem !important;
}

.hp_mt-45 {
  margin-top: 45px !important;
  margin-top: 4.5rem !important;
}

.hp_mt-50 {
  margin-top: 50px !important;
  margin-top: 5rem !important;
}

/* padding 部分的な設定*/
.hp_pb-0 {
  padding-bottom: 0px !important;
  padding-bottom: 0rem !important;
}

.hp_pb-5 {
  padding-bottom: 5px !important;
  padding-bottom: 0.5rem !important;
}

.hp_pb-10 {
  padding-bottom: 10px !important;
  padding-bottom: 1rem !important;
}

.hp_pb-15 {
  padding-bottom: 15px !important;
  padding-bottom: 1.5rem !important;
}

.hp_pb-20 {
  padding-bottom: 20px !important;
  padding-bottom: 2rem !important;
}

.hp_pb-25 {
  padding-bottom: 25px !important;
  padding-bottom: 2.5rem !important;
}

.hp_pb-30 {
  padding-bottom: 30px !important;
  padding-bottom: 3rem !important;
}

.hp_pb-35 {
  padding-bottom: 35px !important;
  padding-bottom: 3.5rem !important;
}

.hp_pb-40 {
  padding-bottom: 40px !important;
  padding-bottom: 4rem !important;
}

.hp_pb-45 {
  padding-bottom: 45px !important;
  padding-bottom: 4.5rem !important;
}

.hp_pb-50 {
  padding-bottom: 50px !important;
  padding-bottom: 5rem !important;
}

/* =================================================
    default ボタン
=================================================== */
.el_btn {
  display: inline-block;
  width: 240px;
  height: 60px;
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  background-color: #a8c4c7;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 15px;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.el_btn::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url(../images/common/arrow_right_white.svg) no-repeat center center/contain;
  margin-left: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .el_btn {
    position: relative;
    overflow: hidden;
    z-index: 2;
    width: 400px;
    height: 50px;
    padding-top: 1.7rem;
    padding-bottom: 1.7rem;
  }
  .el_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    width: 100%;
    height: 100%;
    /*アニメーション*/
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  .el_btn:hover {
    color: #a8c4c7;
    opacity: 1;
  }
  .el_btn:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    z-index: -1;
  }
  .el_btn:hover::after {
    background: url(../images/common/arrow_right.svg) no-repeat center center/contain;
  }
}
.el_btn.el_btn__lineWhite {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  .el_btn.el_btn__lineWhite::before {
    background: #fff;
  }
  .el_btn.el_btn__lineWhite:focus, .el_btn.el_btn__lineWhite:hover {
    color: #a8c4c7;
  }
}
.el_btn.el_btn__lineBrand {
  background: transparent;
  border: 1px solid #a8c4c7;
  color: #a8c4c7;
}
@media screen and (min-width: 1025px) {
  .el_btn.el_btn__lineBrand:focus, .el_btn.el_btn__lineBrand:hover {
    color: #fff;
  }
}
.el_btn.el_btn__yellow {
  background-color: yellow;
  color: #000;
}
@media screen and (min-width: 1025px) {
  .el_btn.el_btn__yellow::before {
    background-color: yellow;
  }
}
.el_btn.el_btn__arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}
.el_btn.el_btn__arrowRight::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 0.83em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.el_btn.el_btn__large {
  width: 340px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 1.375rem;
}

/* =================================================
    default 角丸ボタン
=================================================== */
.el_roundedBtn {
  display: inline-block;
  max-width: 100%;
  padding: 4px 22px;
  background-color: transparent;
  border: 2px solid #a8c4c7;
  border-radius: 30px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #a8c4c7;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .el_roundedBtn {
    position: relative;
    overflow: hidden;
    z-index: 2;
  }
  .el_roundedBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #a8c4c7;
    width: 100%;
    height: 100%;
    /*アニメーション*/
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  .el_roundedBtn:hover {
    color: #fff;
    opacity: 1;
    background: transparent;
  }
  .el_roundedBtn:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    z-index: -1;
  }
}
.el_roundedBtn.el_btnMore {
  width: 108px;
  height: 36px;
  padding: 9px;
  vertical-align: middle;
}
.el_roundedBtn.el_btnMore i {
  display: inline-block;
  margin-right: 10px;
  font-size: 10px;
  font-size: 1rem;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  color: inherit;
}
.el_roundedBtn.el_btnMore.el_btnMore_L {
  width: 148px;
  height: 48px;
  padding: 14px;
}
.el_roundedBtn.el_roundedBtn__solid {
  padding: 14px 68px;
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 40px;
  color: #fff;
  background: #a8c4c7;
}
@media screen and (min-width: 1025px) {
  .el_roundedBtn.el_roundedBtn__solid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    width: 100%;
    height: 100%;
    /*アニメーション*/
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  .el_roundedBtn.el_roundedBtn__solid:hover {
    color: #a8c4c7;
    opacity: 1;
    background: transparent;
  }
  .el_roundedBtn.el_roundedBtn__solid:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    z-index: -1;
  }
}

/* =================================================
    before_アイコン付き小ボタン
=================================================== */
.el_beforeIconBtn {
  position: relative;
  display: inline-block;
  padding: 0.2em 0.3em;
  border: 1px solid currentColor;
  color: #e25c00;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.el_beforeIconBtn::before {
  display: inline-block;
  margin-right: 0.3em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
@media screen and (min-width: 1025px) {
  .el_beforeIconBtn:focus, .el_beforeIconBtn:hover {
    background-color: #e25c00;
    color: #fff;
  }
}
.el_beforeIconBtn.el_beforeIconBtn__download::before {
  content: "\f019";
}
.el_beforeIconBtn.el_beforeIconBtn__zoom::before {
  content: "\f00e";
  -webkit-transform: translateY(-6%);
          transform: translateY(-6%);
}
.el_beforeIconBtn.el_beforeIcon__pdf::before {
  content: "\f1c1";
}
.el_beforeIconBtn.el_beforeIcon__excel::before {
  content: "\f1c3";
}
.el_beforeIconBtn.el_beforeIcon__PP::before {
  content: "\f1c4";
}
.el_beforeIconBtn.el_beforeIcon__checkSquare::before {
  content: "\f14a";
}
.el_beforeIconBtn.el_beforeIcon__chevLeft::before {
  content: "";
  width: 0.375em;
  height: 0.375em;
  border-bottom: 0.125em solid #e25c00;
  border-left: 0.125em solid #e25c00;
  -webkit-transform: rotate(45deg) translateY(-30%);
          transform: rotate(45deg) translateY(-30%);
}

/* =================================================
    after_アイコン付き小ボタン
=================================================== */
.el_afterIconBtn {
  position: relative;
  display: inline-block;
  padding: 0.2em 0.3em;
  border: 1px solid currentColor;
  color: #e25c00;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.el_afterIconBtn::after {
  display: inline-block;
  margin-left: 0.3em;
  color: currentColor;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.el_afterIconBtn.el_afterIcon__chevRight::after {
  content: "";
  width: 0.375em;
  height: 0.375em;
  border-top: 0.125em solid #fff;
  border-right: 0.125em solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* =================================================
    見出し設定
=================================================== */
/* 見出し_1 */
.el_lv1Heading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.3846153846;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .el_lv1Heading {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.el_lv1Heading span {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-size: 1.5rem;
  color: #a8c4c7;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.032em;
}

/* 実績 見出し_1 */
.el_lv1HeadingWorks {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 266px;
  height: 111px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .el_lv1HeadingWorks {
    width: 400px;
    height: 200px;
    padding: 65px;
  }
}
.el_lv1HeadingWorks i {
  margin-right: 15px;
  font-size: 24px;
  font-size: 2.4rem;
  color: #fff;
}
.el_lv1HeadingWorks span {
  position: relative;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .el_lv1HeadingWorks span {
    width: 207px;
    margin: 0 auto;
  }
}
.el_lv1HeadingWorks span::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 10px;
  margin-bottom: 6px;
}

/* 見出し_2 */
.el_lv2Heading {
  width: 100%;
  height: auto;
  padding: 7px 18px;
  margin-bottom: 34px;
  border-left: 3px solid #a8c4c7;
  background: #f2f2f2;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  color: #333333;
}
@media screen and (min-width: 1025px) {
  .el_lv2Heading {
    padding: 6px 23px;
    margin-bottom: 50px;
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 1.5652173913;
  }
}

/* トップ セクション見出し_2 */
.el_lv2secHeading {
  margin-bottom: 50px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .el_lv2secHeading {
    margin-bottom: 70px;
  }
}
.el_lv2secHeading span {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.032em;
  font-weight: bold;
  color: #a8c4c7;
}

/* 見出し_3 */
.el_lv3Heading {
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 30px;
  margin-bottom: 33px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
  font-weight: bold;
  color: #333333;
}
.el_lv3Heading::before {
  position: absolute;
  top: 18px;
  left: 0;
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background: #a8c4c7;
  margin-right: 15px;
  vertical-align: middle;
}
@media screen and (min-width: 1025px) {
  .el_lv3Heading {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.6363636364;
  }
}

/* 見出し_4 */
.el_lv4Heading {
  padding-left: 6px;
  border-left: 2px solid #a8c4c7;
  font-size: 1.5rem;
  font-weight: bold;
}

/* 見出し_5 */
.el_lv5Heading {
  color: #a8c4c7;
  font-size: 1.5rem;
  font-weight: bold;
}

/* 見出し_6 */
.el_lv6Heading {
  font-size: 1.5rem;
}

/* ======================================
    page 404
====================================== */
.bl_page404 {
  text-align: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.bl_page404 h2 {
  margin-bottom: 6rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
.bl_page404 .el_btnBacktoTop {
  position: relative;
  width: 220px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
}
.bl_page404 .el_btnBacktoTop a {
  position: absolute;
  width: 100%;
  height: 50px;
  background: #a8c4c7;
  border-radius: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  line-height: 50px;
}
@media screen and (min-width: 1025px) {
  .bl_page404 .el_btnBacktoTop a {
    background: #fff;
    color: #a8c4c7;
    border: 1px solid #a8c4c7;
    opacity: 1;
  }
  .bl_page404 .el_btnBacktoTop a:hover {
    background: #a8c4c7;
    color: #fff;
  }
}

/* ======================================
  .wp-pagenavi
======================================= */
.bl_pagenation {
  margin-bottom: 10rem;
}
.bl_pagenation .el_pageNo {
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
  margin: 0;
  margin-right: 17px;
  padding: 0;
  border: none;
}

.wp-pagenavi a:nth-child(1),
.wp-pagenavi span:nth-child(1) {
  font-size: 20px;
  font-size: 2rem;
}

.wp-pagenavi .pages {
  display: block;
  width: 100%;
  margin-top: 2rem;
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.wp-pagenavi .page {
  line-height: 2em;
  width: 2em;
  height: 2em;
}

.wp-pagenavi span.current {
  font-weight: 400;
  line-height: 2.2em;
  width: 2.2em;
  height: 2.2em;
  color: #fff;
  background-color: rgba(168, 196, 199, 0.5);
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .last,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .first {
  font-size: 20px;
  font-size: 2rem;
  width: 0.7em;
  margin: 0 10px;
}

.wp-pagenavi__container {
  margin-bottom: 1.5em;
}

.wp-pagenavi__container a {
  margin-right: 2.1em;
}

.wp-pagenavi__container a:nth-last-of-type(1) {
  margin-right: 0;
}

.wp-pagenavi__container span {
  margin-right: 2.1em;
  padding: 0.5em 0.7em;
  color: #fff;
  background-color: #e84709;
}

.wp-pagenavi__last-prev {
  width: 1em;
  height: 1em;
  background: transparent url(./../images/topics/last-prev.png) no-repeat top center/100%;
}

.wp-pagenavi__prev {
  width: 0.5em;
  height: 0.9em;
  background: transparent url(./../images/topics/prev.png) no-repeat top center/100%;
}

.wp-pagenavi__last-next {
  width: 1em;
  height: 1em;
  background: transparent url(./../images/topics/last-next.png) no-repeat top center/100%;
}

.wp-pagenavi__next {
  width: 0.5em;
  height: 0.9em;
  background: transparent url(./../images/topics/next.png) no-repeat top center/100%;
}/*# sourceMappingURL=common.css.map */