@charset "utf-8";
@font-face {
 font-family: "Noto Sans JP";
 font-style: normal;
 font-weight: 400;
 src: url("fonts/NS-400.woff2") format("woff2"), url("fonts/NS-400.woff") format("woff");
 font-display: swap;
}
@font-face {
 font-family: "Noto Sans JP";
 font-style: normal;
 font-weight: 700;
 src: url("fonts/NS-700.woff2") format("woff2"), url("fonts/NS-700.woff") format("woff");
 font-display: swap;
}
/*
---------------------------------------------

    base settings

*/
html {
 font-size: 62.5%;
}
body {
 min-width: 1200px;
 margin: 0;
 padding: 0;
 font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
 font-size: 1.6rem;
 -webkit-text-size-adjust: 100%;
 line-height: 1.8;
 color: #333;
 -webkit-font-smoothing: antialiased;
 word-break: break-word;
}
h1, h2, h3, h4, h5, h6 {
 margin: 0;
 padding: 0;
 font-weight: bold;
 clear: both;
}
ul, ol, dl, p, img, form, dt, dd {
 margin: 0;
 padding: 0;
 border: 0;
}
p:not([class]) {
 margin: 2rem 0;
}
span:not([class]) {
 font-weight: bold;
 background: linear-gradient(transparent 70%, #f9d5e0 70%);
}
li { list-style: none; }
img {
 max-width: 100%;
 vertical-align: bottom;
 height: auto;
}
a {
 color: inherit;
 text-decoration: underline;
}
@media screen and (min-width: 480px) {
 a:active, a:hover, a:hover img { opacity: 0.6; }
}
strong {
 font-weight: bold;
}
.sp { display: none; }
/* microclearfix */
.cf::before, .cf::after {
 content: " ";
 /* 1 */
 display: table;
 /* 2 */
}
.cf::after {
 clear: both;
}
/** For IE 6/7 only */
* {
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
}
.forPC { display: block; }
.forSP { display: none; }
.pc_br { display: block; }
.sp_br { display: none; }
.caption {
 display: block;
 margin: 1rem 0 0;
 font-size: 1rem;
 color: #999;
 line-height: 1.6;
 word-break: break-all;
}
.caption a { color: inherit; }
.cf:before, .cf:after {
 display: table;
 content: " ";
}
.cf:after { clear: both; }
*, *:before, *:after { box-sizing: border-box; }
/* ---------------------------------------------
parts
--------------------------------------------- */
/*  list 
--------------------------------------------- */
.l-main-area ul {
 margin: 2rem;
}
.l-main-area ul li {
 position: relative;
 margin: 0 0 1rem 0;
 padding: 0 0 0 25px;
 list-style-position: outside;
}
.l-main-area ul li::before {
 position: absolute;
 content: '';
 display: block;
 width: 10px;
 height: 10px;
 background: #a8d68f;
 border-radius: 50%;
 top: 0.6em;
 left: 0; 
}
.l-main-area ol {
 counter-reset: number;
 list-style-type: none !important;
 text-align: left;
}
.l-main-area ol li {
 position: relative;
 margin: 0 0 1em 0;
 padding: 0 0 0 50px;
 font-size: 1.5rem;
 font-weight: bold;
}
.l-main-area ol li::before {
 position: absolute;
 counter-increment: number;
 content: counter(number, decimal-leading-zero);
 display: inline-block;
 color: #e7316e;
 border-radius: 50%;
 top: 2px;
 left: 25px;
 width: 20px;
 height: 20px;
 text-align: center;
 font-size: 1.4rem;
 display: block;
 align-items: center;
 justify-content: center;
 font-weight: bold;
}
.l-main-area ol li::after {
 position: absolute;
 content: '';
 display: block;
 background: #905ca2;
 border-radius: 50%;
 top: 8px;
 left: 0;
 width: 10px;
 height: 10px;
 text-align: center;
 font-size: 1.2rem;
 align-items: center;
 justify-content: center;
}
/*  table 
--------------------------------------------- */
.l-main-area table {
 width: 100%;
 margin: 30px 0;
 padding: 0;
 border-collapse: collapse;
 text-align: left;
}
.l-main-area table th {
 padding: 10px 15px;
 background: #f5f5f5;
 border: 1px #ccc solid;
}
.l-main-area table td {
 padding: 10px 15px;
 background: #fff;
 border: 1px #cccccc solid;
}
/*  btn
--------------------------------------------- */
.btn-web,
.btn-internal {
 margin: 3rem auto;
 padding: 0;
 display: block;
 text-align: center;
 width: 450px;
 max-width: 96%;
}
.btn-web a,
.btn-internal a {
 padding: 2rem 4rem;
 display: block;
 background: #ffffff;
 border-radius: 1000px;
 font-size: 1.8rem;
 font-weight: bold;
 line-height: 1.4;
 color: #ffffff;
 text-decoration: none;
 text-align: center;
 position: relative;
}
.btn-web a::after,
.btn-internal a::after {
 content: '';
 width: 12px;
 height: 22px;
 background: url(img/arrow01_white.svg) no-repeat left top / 100% auto;
 position: absolute;
 top: 50%;
 right: 20px;
 transform: translateY(-50%);
}

.btn-internal {
    border: 3px solid #84ba66;
    border-radius: 50px;
}

 .btn-internal a{
    color: #84ba66;
 }

  .btn-internal a:after{
    background: url(img/arrow01_green.svg) no-repeat left top / 100% auto;
  }

.btn-web a { background-color: #ffab47; }



@media screen and (min-width: 480px) {
 .btn-web a:hover,
 .btn-internal a:hover { opacity: 0.7; }
}
.btn-tel {
 display: none;
}
.btn-link {
 margin: 20px 0;
 padding: 0;
 font-weight: bold;
 text-align: right;
 line-height: 1.4;
 background: url(img/btn-link.png) no-repeat right 50% / 20px auto;
 padding-right: 3rem;
}
.btn-link a {
 display: inline-block;
 text-decoration: none;
 padding: 5px 0;
 border-bottom: solid 2px #ffb50b;
}
/*  .float-wrap 
--------------------------------------------- */
.float-wrap { margin: 2rem 0; }
.float-wrap .float-img { text-align: center; }
.float-wrap .float-img img { max-width: 100%; }
.float-wrap .float-img.fr {
 width: 300px;
 margin: 0 0 10px 20px;
 float: right;
}
.float-wrap .float-img.fl {
 width: 300px;
 margin: 0 20px 20px 0;
 float: left;
}
.float-wrap .float-img.ct {
 width: 650px;
 margin: 0 auto;
}
.float-wrap .catch {
 font-size: 2.2rem;
 font-weight: bold;
 margin-bottom: 2rem;
 color: #84ba66;
}
.float-wrap .catch span {
 font-size: 3rem;
}
/*  heading
--------------------------------------------- */
.l-main-area--low h1 {
 margin: 0 0 8rem;
 padding: 2rem 3rem 4.2rem;
 font-size: 3.6rem;
 font-weight: bold;
 color: #fff;
 line-height: 1.4;
 background:#84ba66 url(img/bg_h2_low.jpg) no-repeat left bottom / 100% auto;
 position: relative;
}
.l-main-area--low h1 a {
 padding: 0 4rem 0 0;
 display: block;
 color: #fff;
 text-decoration: none;
 background: url(img/arrow01_white.svg) no-repeat right center;
 background-size: 14px;
}
.l-main-area--low h2 {
 margin: 5rem auto 3rem;
 padding: 2rem 1.5rem;
 background: url(img/bg_h3_low.png) repeat-x left bottom / auto 10px;
 font-size: 3rem;
 line-height: 1.4;
 position: relative;
}
.l-main-area--low h2 a {
 display: block;
 background: url(img/arrow01_black.svg) no-repeat right center / 12px auto;
 color: inherit;
 text-decoration: none;
 padding-right: 2rem;
}
.l-main-area--low h3 {
 width: calc(100% - 6px);
 margin: 5rem auto 3rem;
 padding: 1.5rem 1.8rem;
 background: #f6f4f0;
 background-size: auto 4px;
 font-size: 2.6rem;
 font-weight: bold;
 line-height: 1.4;
 position: relative;
 color: #333;
 border: dotted 2px #fff;
 outline: #f6f4f0 3px solid;
}
.l-main-area--low h3 a {
 display: block;
 background: url(img/arrow01_black.svg) no-repeat right center / 12px auto;
 color: inherit;
 text-decoration: none;
 padding-right: 2rem;
}
.l-main-area--low h4, .l-main-area--low h5 {
 margin: 5rem auto 2rem;
 padding: 0.5rem 1.5rem;
 border-left: solid 7px #92aede;
 font-size: 1.8rem;
 line-height: 1.4;
 font-weight: bold;
 position: relative;
}
.l-main-area--low h4 a, .l-main-area--low h5 a {
 display: block;
 background: url(img/arrow01_black.svg) no-repeat right center / 12px auto;
 color: inherit;
 text-decoration: none;
 padding-right: 2rem;
}
.l-main-area .l-icon-title {
 margin: 8rem 0 3rem;
 padding: 20px 0 20px 100px;
 background: #faf6cc;
 border-radius: 10px;
 font-size: 2.4rem;
 font-weight: bold;
 line-height: 1.4;
 color: #333;
 position: relative;
 min-height: 70px;
 display: flex;
 align-items: center;
}
.l-main-area .l-icon-title::before {
 content: '';
 position: absolute;
 width: 70px;
 height: 70px;
 top: 50%;
 transform: translateY(-50%);
 left: 1.4rem;
 background: url(img/icon-title_check.png) no-repeat left top / 100% auto;
}
/*  box-wrap
--------------------------------------------- */
.box-wrap {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 row-gap:3rem;
 margin: 4rem 0;
}

.box-wrap boxB .box-thum{
    margin: 0 auto 5rem;
    width: 60%;
    height: 200px;
}

.box .box-head {
 display: flex;
 align-items: center;
 width: 100%;
 margin: 0 0 2rem;
}
.box .box-title {
 width: 100%;
 font-weight: bold;
 line-height: 1.4;
}
.box .box-title a {
 text-decoration: none;
 display: block;
 width: 100%;
 background: url("img/arrow01_black.svg") no-repeat  right 50% / 12px auto;
 padding-right: 2rem;
}
.boxA .box .box-thum {
 margin: 0 auto 3rem;
 text-align: center;
 width: 100%;

}
.boxA .box {
 width: calc((100% - 3.2rem) / 2);
 padding: 5rem 4rem 2rem;
 border-radius: 10px;
 background-color: #f6f4f0;
 margin-top: 3rem;
}
.boxA .box-head {
 margin: -3rem 0 2rem;
}
.boxA .box-title {
 width: 100%;
 font-size: 2.2rem;
 color: #fff;
}
.boxB .box {
 width: calc((100% - 10.2rem) / 2);
}

.boxB .box .box-thum{
    width: 60%;
    margin: 0 auto 5rem;
    height: 200px;
}

.boxB .box-title { font-size: 2.8rem; }
/*  frame-wrap
--------------------------------------------- */
.frame-wrap {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 row-gap: 2rem;
}
.frame-wrap::after {
 content: "";
 width: calc((100% - 4.4rem) / 3);
 height: 0;
}
div + .frame-wrap { margin: 4rem 0; }
.frame-wrap .frame {
 width: calc((100% - 4.4rem) / 3);
 padding: 3rem;
 border-radius: 10px;
 background: #f6f4f0;
}
.frame .frame-head {
 display: flex;
 align-items: center;
 width: 100%;
}
.frame .frame-title {
 width: 100%;
 font-weight: bold;
 line-height: 1.4;
 font-size: 2.2rem;
     margin-bottom: 3rem;
}
.frame .frame-title a {
 text-decoration: none;
 display: block;
 width: 100%;
 background: url("img/arrow01_black.svg") no-repeat  right 50% / 8px auto;
 padding-right: 2rem;
}
.l-contents-area--low .frame .frame-body::before {
 content: "";
 width: 100%;
 height: 88px;
 display: block;
 background: url("img/frame_icon_fukidashi.png") no-repeat center 50% / 45px auto;
}
.frame .frame-body > *:first-child { margin-top: 0; }
.l-main-area .frame ul {
 margin: 2rem 0 0;
}
.frame-wrap.frameA .frame {
 background-color: transparent;
 padding: 0;
}
.frameA .frame-bg {
 background-color: #f6f4f0;
 border-radius: 10px;
 padding: 3rem 2rem;
}
.frameB .frame-body::before {
 background:none;
}

.l-parts01 .company-tb{
    font-size: 1.4rem;
    line-height: 1.5;
}

.l-parts01 .company-tb th{
    width: 30%;
}



.l-contents-area--low .frame .frame-body::before {
 background: url("img/frame_icon_fukidashi.png") no-repeat center 50% / 45px auto;
}



/* ---------------------------------------------

  header area

--------------------------------------------- */
.l-header-area {
 width: 100%;
 margin: 0;
}
.l-header {}
.l-header__link {
 display: inline-block;
 text-decoration: none;
 color: #222;
}
.l-header-sitename {
 font-size: 1.2rem;
 line-height: 1.4;
 text-align: right;
 background: #a8d68f;
 color: #222;
 padding: 0.5rem calc((100% - 1100px)/2) 0.5rem 0;
}
.l-header-sitename__link {
 text-decoration: none;
}
.l-header-sitename__link:hover {
 text-decoration: underline;
}
.l-header-sitename:before {
 content: "PR";
 display: inline-block;
 background: #f3f2f3;
 color: #222;
 text-align: center;
 width: 3rem;
 margin-right: 1rem;
}
.l-header-logo {
 margin: 4.7rem 0 0;
 text-align: center;
}
.l-header-logo__image {
 width: 100%;
 height: 100%;
}
.l-header-logo a {
 display: block;
 margin: 0 auto;
 width: 379px;
 height: auto;
}
.l-gnavi-btn {
 text-decoration: none;
 width: 60px;
 height: 60px;
 margin: 0 auto;
 padding: 50px 0 0;
 display: block;
 position: relative;
 line-height: 1;
 font-size: 0.9rem;
 font-weight: bold;
 text-align: center;
 color: #3a3a3a;
 cursor: pointer;
}
.l-gnavi-btn span {
 width: 30px;
 height: 2px;
 display: inline-block;
 background: #3a3a3a;
 transition: all 0.4s;
 position: absolute;
 left: 15px;
}
.l-gnavi-btn span:nth-of-type(1) {
 top: 19px;
}
.l-gnavi-btn span:nth-of-type(2) {
 top: 29px;
}
.l-gnavi-btn span:nth-of-type(3) {
 top: 39px;
}
.l-gnavi-btn-box {
 position: absolute;
 top: 35px;
 left: 50%;
 transform: translate(-50%, -50%);
 transition: all 0.4s;
}
.l-gnavi-btn-box.is-active .l-gnavi-btn {
 background: none;
}
.l-gnavi-btn-box.is-active .l-gnavi-btn span:nth-of-type(1) {
 transform: translateY(10px) rotate(-45deg);
}
.l-gnavi-btn-box.is-active .l-gnavi-btn span:nth-of-type(2) {
 opacity: 0;
}
.l-gnavi-btn-box.is-active .l-gnavi-btn span:nth-of-type(3) {
 transform: translateY(-10px) rotate(45deg);
}
.is-navi-open .l-gnavi-area--slide-left {
 transform: translateX(0);
}
.l-gnavi-area {
 width: 400px;
 height: 100vh;
 padding: 0;
 background: #FFF;
 position: fixed;
 box-shadow: 1px 0 5px rgba(0, 0, 0, 0.14);
 transition: all 0.8s ease;
 top: 0;
 left: 0;
 z-index: 300;
}
.l-gnavi-area-menu {
 display: table-cell;
 vertical-align: middle;
}
.l-gnavi-area-scroll {
 height: 100%;
 padding: 20px 100px 20px 0;
 overflow-x: hidden;
 overflow-y: scroll;
 -ms-overflow-style: none;
}
.l-gnavi-area-scroll::-webkit-scrollbar {
 display: none;
 -webkit-appearance: none;
}
.l-gnavi-area-scroll__inner {
 height: 100%;
 display: table;
}
.l-gnavi-area-bar {
 width: 100px;
 height: 100vh;
 position: absolute;
 top: 0;
 right: 0;
}
.l-gnavi-area--slide-right {
 transform: translateX(-300px);
}
.l-gnavi-area--slide-left {
 left: auto;
 right: 0;
 transform: translateX(-100%);
}
.l-gnavi-area--slide-down {
 transform: translateY(-100%);
}
.l-gnavi-area--slide-up {
 transform: translateY(100%);
}
.l-gnavi-list {
 position: relative;
 width: 300px;
}
.l-gnavi-list__link {
 width: 90%;
 margin: 0 auto;
 padding: 0.5rem 0 0.5rem 20px;
 display: block;
 text-decoration: none;
}

.l-gnavi-list__link--menu {
 position: relative;
 padding-right: 2.4rem;
 cursor: pointer;
}
.l-gnavi-list__link--menu::after {
 content: "";
 width: 8px;
 height: 16px;
 background: url("img/arrow01_black.svg") no-repeat left top / 100% auto;
 position: absolute;
 right: 0;
 top: 50%;
 transform: translateY(-50%) rotate(90deg);
}
.l-gnavi-list__sub {
 margin: 0 0 0 1.6rem;
 display: none;
}
.l-gnavi-list__sub .l-gnavi-list__item {
 background: url("img/arrow01_black.svg") no-repeat left 2rem center;
 background-size: 8px;
}
.l-gnavi-btn-close__link {
 margin: 20px auto;
 padding: 10px 20px 10px 50px;
 display: inline-block;
 background: #ffffff;
 text-decoration: none;
 position: relative;
}
.l-gnavi-btn-close__link:hover {
 background: #ccc;
 color: #ffffff;
}
.l-gnavi-btn-close__link:hover::after {
 background: #ffffff;
}
.l-gnavi-btn-close__link:hover::before {
 background: #ffffff;
}
.l-gnavi-btn-close__link::before {
 content: '';
 width: 20px;
 height: 3px;
 background: #000;
 -webkit-transform: translateY(-50%) rotate(45deg);
 transform: translateY(-50%) rotate(45deg);
 position: absolute;
 top: 50%;
 left: 20px;
}
.l-gnavi-btn-close__link::after {
 content: '';
 width: 20px;
 height: 3px;
 background: #000;
 -webkit-transform: translateY(-50%) rotate(-45deg);
 transform: translateY(-50%) rotate(-45deg);
 position: absolute;
 top: 50%;
 left: 20px;
}
.is-gnavi-cover .l-gnavi-area {
 height: auto;
 top: auto;
 z-index: 1;
 overflow-y: hidden;
}
.is-navi-open .l-gnavi-area {
 opacity: 1;
}
.is-navi-open .l-gnavi-area--slide-right {
 transform: translateX(0);
}
.is-navi-open .l-gnavi-area--slide-left {
 transform: translateX(0);
}
.is-navi-open .l-gnavi-area--slide-down {
 transform: translateY(0);
}
.is-navi-open .l-gnavi-area--slide-up {
 transform: translateY(0);
}
.is-navi-open .is-gnavi-cover {
 height: 100vh;
 overflow-y: scroll;
}
.is-navi-open .is-gnavi-cover .l-gnavi-area {
 position: static;
}
/* ---------------------------------------------

  footer area

--------------------------------------------- */
.l-footer-area {
 width: 100%;
 margin: 0;
 min-width: 1200px;
 padding: 0 0 0 100px;
 position: relative;
 background: #ffffff;
}
.l-footer-disclaimer {
 width: 500px;
 margin: 20px auto;
 padding: 20px;
 background: #fff;
 font-size: 1rem;
 color: #222;
 text-align: left;
}
.l-footer-disclaimer dt {
 float: left;
}
.l-footer-note {
 text-align: center;
 margin: 20px auto;
 font-size: 1.2rem;
}
.l-footer-bottom {
 margin: 0 auto;
 background: #a8d68f;
 color: #222222;
 font-size: 1.2rem;
 text-align: center;
}
.l-footer-bottom__inner {
 width: 96%;
 max-width: 1000px;
 display: table;
 margin: 0 auto;
}
.l-footer-bottom__copy {
 padding: 10px 0;
 display: table-cell;
 text-align: left;
 color: #ffffff;
}
.l-footer-bottom__copy__link {
 text-decoration: none;
 color: #ffffff;
}
.l-footer-bottom__sitemap {
 padding: 10px 0;
 display: table-cell;
 text-align: right;
}
.l-footer-bottom__sitemap__link {
 background: url("img/arrow01_white.svg") no-repeat right center;
 background-size: 7px 12px;
 padding: 0 24px 0 0;
 text-decoration: none;
 color: #ffffff;
}
.l-footer-menu-wrapper {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 padding: 100px 0 0;
}
.l-footer-menu {
 margin: 0 0 40px;
}

.l-footer-area__inner {
    border-top: 3px solid #a8d68f;
}


.l-footer-menu__title {
 margin: 0 0 10px 0;
 padding: 0 0 5px;
 border-bottom: solid 1px #404040;
 text-align: left;
 font-size: 1.4rem;
 line-height: 1.4;
}
.l-footer-menu__title__link {
 display: block;
 padding: 0 0 0 25px;
 background: url(img/arrow01_green.svg) no-repeat left 1rem center;
 background-size: 10px 16px;
 text-decoration: none;
 font-weight: bold;
 position: relative;
}
.l-footer-menu__list {
 display: inline;
}
.l-footer-menu__list__item {
 float: left;
 padding: 0 10px;
 display: inline-block;
}
.l-footer-menu__list__item:first-child {
 display: none;
}
.l-footer-menu__list__link {
 position: relative;
 padding: 5px 0 5px 15px;
 text-align: left;
 font-size: 1.2rem;
 text-decoration: none;
}
.l-footer-menu__list__link::before {
 position: absolute;
 top: calc((100% - 10px) / 2);
 left: 0;
 content: '';
 width: 10px;
 height: 10px;
 background-color: #a8d68f;
 border-radius: 50%;
}
.l-footer-submenu__list {
 display: inline-block;
}
.l-footer-submenu__list__item {
 display: inline-block;
}
.l-footer-submenu__list__link {
 padding: 5px 15px;
 text-align: left;
 font-size: 1.2rem;
 text-decoration: none;
 display: block;
}
.l-footer-submenu__list__link::before {
 content: '- ';
}
/* ---------------------------------------------

  common

--------------------------------------------- */
.l-pagetop {
 position: absolute;
 top: -90px;
 right: 30px;
 z-index: 100;
}
.l-pagetop__link {
 width: 60px;
 height: 60px;
 background: #92aede;
 -webkit-border-radius: 50%;
 -moz-border-radius: 50%;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}
.l-pagetop__image {
 width: 24px;
}
.l-pagetop.is-fixed {
 position: fixed;
 top: auto;
 bottom: 30px;
}
#pankuzu {
 max-width: 1000px;
 margin: 2.6rem auto;
 font-size: 1.2rem;
}
#pankuzu span {
 background: none;
 font-weight: normal;
}
/* ---------------------------------------------

  contents area

--------------------------------------------- */
.l-contents-area {
 width: 100%;
 margin: 0 auto;
 padding-left: 100px;
}
.l-main-area {
 width: 100%;
 margin: 0 auto 7rem 0;
 padding: 0;
 text-align: left;
}
.l-main-area--low {
 width: 1000px;
 margin: 0 auto 7rem auto;
}
.l-section-inner {
 max-width: 1000px;
 margin: 0 auto;
 padding: 8rem 0;
}
.l-common-lead {
 margin: 7rem auto 3rem;
}
.l-common-title {
 padding: 7rem 0 0;
 font-size: 3.6rem;
 font-weight: bold;
 text-align: center;
 line-height: 1.4;
 position: relative;
 margin: 0 0 5rem 0;
}
.l-common-title .small { font-size:2.8rem; }
.l-common-title a {
 margin: 0 auto;
 padding: 0 4rem;
 display: inline-block;
 background: url("img/arrow01_black.svg") no-repeat right 50% / 12px auto;
 text-decoration: none;
}
.l-common-title::before {
 content: 'THREE SELECTIONS';
 display: block;
 width: 100%;
 height: auto;
 text-align: center;
 font-size: 2rem;
 line-height: 1;
 font-weight: normal;
 position: absolute;
 left: 0;
 top: 0;
}
.l-common-title::after {
 content: '';
 position: absolute;
 display: block;
 height: 4px;
 width: 55px;
 background: #92aede;
 left: 50%;
 top: 4rem;
 transform: translateX(-50%);
}
/*---------------------------------------------

  l-parts

---------------------------------------------*/
/*  l-parts03 lower-bottom 
--------------------------------------------- */
.l-parts03 {
 background: url("img/l-parts03_bg01.png") no-repeat right top ,#f6f4f0 url("img/l-parts03_bg02.png") no-repeat left bottom;
 background-size: 589px auto , 321px auto;
 overflow: hidden;
}
.l-parts03 .l-section-inner {
 position: relative;
 background: url("img/l-parts03_bg03.svg") no-repeat left 36px top 87px / 93px auto;
}
.l-parts03 .l-section-inner::before {
 content: "";
 width: 80px;
 height: 90px;
 background: url("img/l-parts03_bg05.svg") no-repeat center top / 100% auto;
 position: absolute;
 right: -124px;
 bottom: 196px; 
}
.l-parts03 .l-section-inner::after {
 content: "";
 width: 99px;
 height: 90px;
 background: url("img/l-parts03_bg04.svg") no-repeat center top / 100% auto;
 position: absolute;
 right: -68px;
 top: 168px; 
}
.lower_bottom { margin-left: 100px; }
.l-parts03-column3 {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 margin: 5rem 0 2.7rem;
}
.l-parts03-column3__box {
 width: calc((100% - 3.6rem) / 3);
}
.l-parts03-column3__box_catch {
 text-align: center;
 font-size: 2.2rem;
 line-height: 1.3;
 padding-bottom: 4.7rem;
 font-weight: bold;
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: flex-end;
}
.l-parts03-column3__box_catch::after {
 content: "";
 width: 25px;
 height: 11px;
 background-color: #ffb50b;
 clip-path: polygon(0 0, 100% 0%, 50% 100%);
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 bottom: 18px; 
}
.l-parts03-column3__box_catch .pink {
 font-size: 3rem;
 color: #e384a1; 
}
.l-parts03-column3__line {
 padding: 3.3rem 2rem;
 border-radius: 10px;
 background: #fff;
}
.l-parts03-column3__title {
 font-weight: bold;
 font-size: 2.6rem;
 line-height: 1.4;
 text-align: center;
}
.l-parts03-column3__image {
 margin: 2.4rem 0 0;
 text-align: center;
}
.l-parts03-column3__jisseki {
 margin:2.4rem 0 0;
 padding: 0 1rem 0;
}
.l-parts03-column3__jisseki .l-parts03-column3__jisseki_title {
 margin: 0 -1rem 2rem;
 background-color: #fcf3b7;
 font-size: 1.8rem;
 line-height: 1.4;
 font-weight: bold;
 text-align: center;
 padding: 0.6rem;
}
.l-parts03-column3__osusume {
 margin:2.4rem 0 0;
 padding: 0 1rem 0;
}
.l-parts03-column3__osusume .l-parts03-column3__osusume_title {
 margin: 0 -1rem 2rem;
 background-color: #fcf3b7;
 font-size: 1.8rem;
 line-height: 1.4;
 font-weight: bold;
 text-align: center;
 padding: 0.6rem;
 position: relative;
}
.l-parts03-column3__osusume .l-parts03-column3__osusume_title::after {
 content: "";
 width: 37px;
 height: 36px;
 background: url("img/l-parts03_check_icon.png") no-repeat left top / 100% auto;
 position: absolute;
 left: 9px;
 top: -13px;
}
.l-parts03-column3 .date-list-wrap {
 margin: 2.4rem 0 0;
 background-color: #f6f4f0;
 padding: 0 1rem 1rem;
 border-top: 18px solid #fff;
}
.l-parts03-column3 .date-title-top {
 background: #87c167;
 color: #fff;
 font-size: 1.8rem;
 line-height: 1.4;
 font-weight: bold; 
 padding: 0.6rem;
 margin: -18px 0.6rem 2rem;
 position: relative;
}
.l-parts03-column3 .date-list-wrap .date-list-li {
 position: relative;
 padding-left: 2rem;
}

.l-parts03-column3 div[class^="btn"] {
 width: 96%;
 margin-bottom: 0;
}
.l-parts03-column3 div[class^="btn"] + div[class^="btn"] { margin-top: 2rem; }
.l-parts03 .caption-lg {
 margin-top: 4rem;
 font-size: 1rem;
 color: #a9a9a9;
}
/*--------------------------------------
  toc_parts
---------------------------------------*/
.ttl.ac-btn.accordion {
 cursor: pointer;
 position: relative;
}
.ttl.ac-btn.accordion::after {
 content: '';
 position: absolute;
 right: 1.5rem;
 top: 50%;
 width: 3rem;
 height: 1px;
 background: #000;
}
.ttl.ac-btn.accordion::before {
 content: '';
 position: absolute;
 right: 1.5rem;
 top: 50%;
 width: 3rem;
 height: 1px;
 background: #000;
 transform: rotate(90deg);
 transition: .3s ease all;
}
.ttl.ac-btn.accordion.is-open::before {
 transform: rotate(0deg);
 transition: .3s ease all;
}
.accordion-item {
 display: none;
}
.toc_parts {
 width: 80%;
 background: #f5f5f5;
 margin: 0 auto 4rem;
 padding: 3rem 5rem;
 box-sizing: border-box;
}
.toc_parts .ttl {
 padding: 0 0 0 1rem;
 font-size: 2rem;
 font-weight: bold;
 border-left: 4px solid #ffbb61;
 position: relative;
 cursor: pointer;
}
@media screen and (min-width: 480px) {
 .toc_parts .ttl:hover { opacity: 0.6; }
}
#toc {
 margin: 1.5rem 0 0 0;
 padding: 0 2rem 0;
 border-top: 1px solid #000;
}
#toc .chapter {
 margin: 0 0 2rem;
 counter-reset: count;
}
#toc .chapter .chapter-h {
 margin: 2rem 0 0;
 padding: 0 0 0 3.5rem;
 font-size: 1.6rem;
 line-height: 1.8;
 position: relative;
 counter-increment: count;
 background: none;
}
#toc .chapter .chapter-h:last-child {
 margin-bottom: 0;
}
#toc ul.chapter .chapter-h::before {
 content: counter(count, decimal-leading-zero);
 position: absolute;
 top: 14px;
 left: 0;
 transform: translate(0, -50%);
 color: #92aede;
 font-size: 2rem;
 font-weight: bold;
 background: none;
 width: auto;
 height: auto;
 border-radius: 0;
}
#toc .chapter .chapter-h a {
 text-decoration: none;
 color: #000;
}
#toc .chapter .chapter-h span {
 color: #0b072b;
 font-weight: bold;
}
#toc li.chapter-h.chapter-h-three {
 margin: 1rem 0 1rem 4rem;
 padding: 0 0 0 1.5rem;
 counter-increment: none;
}
#toc li.chapter-h.chapter-h-three::before {
 content: "";
 position: absolute;
 top: 8px;
 left: 0;
 width: 8px;
 height: 8px;
 border-top: solid 1px #0b072b;
 border-right: solid 1px #0b072b;
 -webkit-transform: rotate(180deg);
 transform: rotate(180deg);
}
#toc li.chapter-h.chapter-h-three a {
 font-weight: 400;
}
#toc li.chapter-h.chapter-h-three span {
 font-weight: 400;
}
#toc .chapter br {
 display: none;
}
/*--------------------------------------
  banner
---------------------------------------*/
.cmn02-text-banner-box__image img {
 max-width: 100%;
 width: 100%;
 height: auto;
 image-rendering: -webkit-optimize-contrast;
 object-fit: cover;
}
.index-banner_pc {
 margin: 5rem 0 0 0;
 position: fixed;
 right: 0;
 bottom: 15rem;
 z-index: 110;
 display: none;
}
.index-banner_pc a {
 text-decoration: none;
}
.text-banner-box {
 max-width: 220px;
 background: #87c167;
 position: relative;
}
.text-banner-box:after {
 content: "";
 position: absolute;
 bottom: 2%;
 right: 2%;
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 0 15px 15px;
 border-color: transparent transparent #fff transparent;
}
.pc-bannerArea .imgArea {
 width: 40%;
}
.text-banner-box__text {
 padding: 0.5rem 2rem 1rem 2rem;
 text-align: center;
 font-weight: bold;
 color: #ffffff;
}
.text-banner-box__text .mainttl {
 color: #222;
}
.cmn02-text-banner-box__catch {
 display: block;
 font-size: 1.2rem;
 color: #ffffff;
}
.text-banner-box__text .cmn02-paragraph {
 font-size: 1.7rem;
}
.text-banner-box__text .cmn02-paragraph p {
 margin: 0 auto 0;
     line-height: 1.4;
}
/*
---------------------------------------------

  smartphone settings

*/
@media screen and (max-width: 480px) {
 body {
  min-width: 100%;
  min-width: inherit;
  font-size: 1.5rem;
 }
 .forPC { display: none; }
 .forSP { display: block; }
 .pc_br { display: none; }
 .sp_br { display: block; }
 img {
  max-width: 100%;
  height: auto;
 }
 .l-main-area .top_h2 {
  margin: 0 0 3rem;
  padding: 2rem 2rem 0;
  font-size: 2.2rem;
 }
 .l-main-area ul {
  margin: 3rem 0;
  font-size: 1.4rem;
 }
 .l-main-area ol {
  margin: 3rem 0;
  font-size: 1.4rem;
 }
 .l-main-area table {
  width: 100%;
  margin: 30px auto 20px;
  display: block;
  border-top: 1px #ccc solid;
  font-size: 1.4rem;
 }
 .l-main-area table tr {
  width: 100%;
  display: block;
 }
 .l-main-area table tr:first-child {
  border-top: 1px solid #ccc
 }
 .l-main-area table th {
  width: 100%;
  display: block;
  border-top: none;
 }
 .l-main-area table td {
  width: 100%;
  display: block;
  border-top: none;
 }
 .l-main-area table thead {
  width: 100%;
  display: block;
 }
 .l-main-area table thead th {
  width: 100%;
  display: block;
 }


.l-parts01 .company-tb th {
    width: 100%;
}

 .l-main-area table thead td {
  width: 100%;
  display: block;
 }
 .l-main-area table tbody {
  width: 100%;
  display: block;
 }
 .l-main-area table tbody th {
  width: 100%;
  display: block;
 }
 .l-main-area table tbody td {
  width: 100%;
  display: block;
  padding: 1rem 1.5rem;
 }
 .btn-web,
 .btn-internal {
  width: 90%;
  min-width: inherit;
  margin: 3rem auto;
 }
 .btn-web a,
 .btn-internal a {
  width: 100%;
  min-width: inherit;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
 }
 .btn-web a::after,
 .btn-internal a::after {
  right: 1.4rem;
  width: 8px;
  height: 14px;
 }
 .btn-tel {
  width: 90%;
  margin: 2rem auto;
  padding: 0;
  display: block;
  text-align: center;
 }
 .btn-tel a {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 1.5rem 4rem 1.5rem 4rem;
  background: #a8d68f url(img/icon_tel.svg) no-repeat left 20px center;
  background-size: auto 20px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  z-index: 10;
 }
 .btn-link {
  margin: 3rem auto;
  padding: 0;
  display: block;
  text-align: left;
  width: 90%;
 }
 .btn-link a {
  width: 100%;
  position: relative;
  margin: 0;
  padding: 2rem 5rem 2rem 2rem;
  text-align: left;
  display: inline-block;
  background: #fff url("img/btn-link.png") no-repeat right 20px center;
  background-size: 20px auto;
  border: #ffb50b solid 2px;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
 }
 .float-wrap {
  width: 100%;
  margin: 2rem 0;
 }
 .float-wrap .float-img.fr {
  width: 100%;
  margin: 0 0 20px;
  float: none;
 }
 .float-wrap .float-img.fl,
 .float-img.fl {
  width: 100%;
  margin: 0 0 20px;
  float: none;
 }
 .float-wrap .float-img.ct {
  width: 100%;
 }
 .float-wrap .float-img.t_small {
  width: 40%;
 }
 .float-wrap .float-img.fr.t_small {
  margin: 0 0 20px 10px;
  float: right;
 }
 .float-wrap .float-img.fl.t_small {
  margin: 0 20px 10px 0;
  float: left;
 }
 .float-wrap .catch { font-size: 1.8rem; }
 
 .box-wrap { display: block; }
 
 .box-wrap .box {
    width: 100%;
    background: #f6f4f0;
    padding: 3rem;
    border-radius: 10px;

  }

.boxB .box .box-thum{
    margin: 0px auto 2rem;
    height: 150px;
    width: 65%;
}

  .box .box-thum{
    margin: 0 auto;
  }

 .box-wrap.boxA { margin:8rem 0 4rem;}
 
 .boxA .box-title { font-size: 1.8rem; }
 .boxA .box {
  margin-top: 12rem;
  padding: 0 2rem 2rem;
 }
 .boxA .box-title { margin: -4rem 0 0; }
 .box-wrap .box-head a { 
    background-size: 8px; 
    text-align: center;
}
 


 .boxB .box + .box { margin-top: 3rem; }
 .boxB .box-title { font-size: 2rem; }
 .frame-wrap { display: block; }
 .frame-wrap .frame {
  width: 100%;
  padding: 3rem 2rem;

 }
 .frame-wrap .frame + .frame { margin-top: 3rem; }
 .frame .frame-title { font-size: 1.8rem; }
 .frame-wrap .frame-head a { background-size: 8px; }
 .frameA .frame-bg { padding: 3rem 2rem; }
 .l-main-area .l-icon-title {
  margin: 5rem 0 2rem;
  padding: 2rem 2rem 2rem 7.5rem;
  font-size: 1.8rem;
  line-height: 1.4;
 }
 .l-main-area .l-icon-title--check::before {
  width: 60px;
  height: 60px;
  left: 8px;
 }
 /* low ----------------*/
 .l-main-area--low h1 {
  margin: 0 0 3rem;
  font-size: 2.2rem;
 }
 .l-main-area--low h1::after {
  height: 50px;
  background-size: contain;
  top: 90%;
 }
 .l-main-area--low h2 { font-size: 2rem; }
 .l-main-area--low h3 { font-size: 1.8rem; }
 .l-main-area--low h2 a,
 .l-main-area--low h3 a,
 .l-main-area--low h4 a,
 .l-main-area--low h5 a { background-size: 8px auto; }
 /*
---------------------------------------------

  header area

*/
 .l-header {
  margin: 0;
  text-align: left;
 }
 .l-header-area {
  padding: 0;
 }
 .l-header-left {
  display: none;
 }
 .l-header-sitename {
  font-size: 1rem;
  text-align: center;
 }
 .l-header-logo { margin-top: 2rem; }
 .l-header-logo a {
  width: 50%;
  height: auto;
 }
 .l-gnavi-area {
  display: none;
 }
 /*
---------------------------------------------

  footer area

*/
 .l-footer-area {
  padding: 2rem 0 5rem 0;
  min-width: inherit;
 }
 .footMenu {
  width: 100%;
  height: 5rem;
  margin: 0;
  position: fixed;
  bottom: 0;
  z-index: 300;
 }
 .footMenu .menuLeft {
  width: 50%;
  height: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
 }
 .footMenu .menuLeft .l-gnavi-btn {
  margin: 0;
 }
 .footMenu .menuRight {
  width: 50%;
  height: 100%;
  float: right;
  background: #87c167;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: bold;


 }
 .footMenu .menuRight p {
  margin: 0;
 }
 .footMenu .menuRight::after {
  content: "";
  width: 65px;
  height: 13px;
  /* background: url(img/icon_text_check.svg) no-repeat center center; */
  background-size: 100%;
  position: absolute;
  top: -9px;
  left: 1rem;
  transform: rotate(-8deg);
 }
 .footMenu .menuRight a {
  padding: 1rem 2rem 1rem 1.5rem;
  background: url("img/arrow01_white.svg") no-repeat right 0 center;
  background-size: 6px;
  color: #ffffff;
  display: block;
  text-decoration: none;
  font-size: 1.5rem;
 }
 .footMenu .l-gnavi-btn {
  width: 100%;
  height: 100%;
 }
 .footMenu .l-gnavi-btn span {
  left: 50%;
  transform: translateX(-50%);
 }
 .footMenu .l-gnavi-btn span:nth-child(1) {
  top: 15px;
 }
 .footMenu .l-gnavi-btn span:nth-child(2) {
  top: 25px;
 }
 .footMenu .l-gnavi-btn span:nth-child(3) {
  top: 35px;
 }
 .footMenu .l-gnavi-btn.active span:nth-of-type(1) {
  transform: translate(-50%, 10px) rotate(-45deg);
 }
 .footMenu .l-gnavi-btn.active span:nth-of-type(2) {
  opacity: 0;
 }
 .footMenu .l-gnavi-btn.active span:nth-of-type(3) {
  transform: translate(-50%, -10px) rotate(45deg);
 }
 .l-footer-logo {
  width: 60%;
  margin: 1rem auto;
 }
 .l-footer-logo__image {
  width: 100%;
 }
 .l-footer-logo__link {
  display: block;
  width: 70%;
  margin: auto;
 }
 .l-footer-disclaimer {
  width: 90%;
  margin: 0 auto 1rem;
  padding: 2rem 5%;
 }
 .l-footer-bottom {
  padding: 0 5%;
 }
 .l-footer-bottom__inner {
  width: 90%;
  display: block;
 }
 .l-footer-bottom__copy {
  display: block;
  text-align: center;
  margin: 0;
 }
 .l-footer-bottom__sitemap {
  display: none;
 }
 .l-footer-note {
  margin: 0 0 1rem;
  font-size: 1rem;
 }
 .l-footer-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 100%;
  background: #fff;
  margin: 0;
  padding: 0 0 60px 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, opacity 1s;
  transition: transform 0.3s ease-in-out, opacity 1s;
 }
 .l-footer-menu-wrapper.active {
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease-in-out, opacity 1s;
  opacity: 1;
 }
 .l-footer-menu {
  width: 90%;
  margin: 0 auto 2rem;
 }
 .l-footer-menu__title {
  margin: 0 0 1rem;
  padding: 0;
  border-bottom: solid 1px #000;
 }
 .l-footer-menu__title__link {
  display: block;
  font-size: 1.6rem;
  position: relative;
  padding: 1rem 2.5rem 1rem 0;
  background: none;
 }
 .l-footer-menu__title__link::after {
  content: '';
  width: 8px;
  height: 15px;
  background: url("img/arrow01_black.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 2rem;
  right: 1rem;
  transition: .1s;
  transform: translateY(-50%) rotate(90deg);
 }
 .l-footer-menu__title__link.is-open::after {
  transform: translateY(-50%) rotate(270deg);
  transition: .1s;
 }
 .l-footer-menu__title__link.to-sitemap::after {
  transform: translateY(-50%) rotate(0deg);
 }
 .l-footer-menu__title__link:hover {
  text-decoration: none;
 }
 .l-footer-menu__list {
  display: none;
 }
 .l-footer-menu__list__item {
  width: 100%;
  padding: 0.8rem 1rem;
 }
 .l-footer-menu__list__item:first-child {
  display: block;
 }
 .l-footer-menu__list__link {
  margin: 0;
  display: block;
 }
 .l-footer-submenu__list {
  display: block;
 }
 .l-footer-submenu__list__item {
  display: block;
 }
 /*
---------------------------------------------

  common

*/
 .l-pagetop {
  top: -5.5rem;
  right: 0.5rem;
 }
 .l-pagetop__link {
  width: 50px;
  height: 50px;
 }
 .l-pagetop__image {
  width: 14px;
 }
 .l-pagetop.is-fixed {
  bottom: 5.5rem;
 }
 #pankuzu {
  margin: 0 auto;
  padding: 1rem;
  white-space: nowrap;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
 }
 /*
---------------------------------------------

  contents area

*/
 .l-contents-area { padding: 0; }
 .l-main-area { margin: 0 auto; }
 .l-contents-area--low { width: 100%; }
 /*
---------------------------------------------

  main area

*/
 .l-main-area--low {
  width: 100%;
  padding: 1rem 2rem 0;
  margin: 0 auto 7rem;
  float: none;
 }
 .l-section-inner { padding: 0 2rem; }
 .l-common-title a {
  display: block;
  padding: 0 2rem 0 0;
  width: 100%;
  background: url("img/arrow01_black.svg") no-repeat right center;
  background-size: 8px;
 }
 .l-common-lead {
  width: 100%;
  margin: 2rem 0 3rem;
 }
 .l-common-title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin: 0 0 3rem 0;
  padding-top: 5rem;
 }
 .l-common-title .small { font-size: 1.8rem; }
 .l-common-title::before { font-size: 1.3rem; }
 .l-common-title::after {
  width: 48px;
  top: 3rem;
 }
 /*
---------------------------------------------

  l-parts

*/ 
 .l-section-inner {
  padding: 4rem 2rem;
 }
 /* l-parts03 lower-bottom */
 .l-parts03 {
  margin-left: 0;
  background-size: 60% auto, 32% auto;
 }
 .l-parts03 .l-section-inner { background: none; }
 .l-parts03 .l-section-inner::before,
 .l-parts03 .l-section-inner::after { content: none; }
 .l-parts03-column3 { margin-top: 0; }
 .l-parts03-column3__box { width: 100%; }
 .l-parts03-column3 .l-parts03-column3__box + .l-parts03-column3__box { margin-top: 4rem; } 
 .l-parts03-column3__box_catch { font-size: 2rem; }
 .l-parts03-column3__box_catch .pink { font-size: 2.4rem; }
 .l-parts03-column3__line {
  width: 100%;
  padding: 2.5rem 2rem;
 } 
 /*--------------------------------------
  toc
 ---------------------------------------*/
 .toc_parts {
  margin: 4rem auto;
  padding: 2rem 2.5rem;
  width: 90%;
 }

 .toc_parts .ttl {
  font-size: 1.6rem;
  border-left: 2px solid #ff9900;
  position: relative;
 }
 .ttl.ac-btn.accordion::before, .ttl.ac-btn.accordion::after {
  width: 2rem;
 }
 #toc {
  margin: 1.5rem 0 0 0;
  padding: 1rem 0 0;
 }
 #toc .chapter .chapter-h {
  margin: 1rem 0;
  padding: 0 0 0 3rem;
  font-size: 1.5rem;
  line-height: 1.6;
 }
 #toc ul.chapter .chapter-h::before {
  top: 11px;
  font-size: 1.8rem;
 }
 #toc li.chapter-h.chapter-h-three {
  margin: 0.5rem 0 0.5rem 2rem;
 }
 #toc li.chapter-h.chapter-h-three::before {
  top: 6px;
  width: 6px;
  height: 6px;
 }
 #toc li.chapter-h-three + .chapter-h-two {
  margin-top: 2rem;
 }
 /*--------------------------------------
   banner
 ---------------------------------------*/
 .index-banner_pc { display: none !important; }


 /*--------------------------------------
  cp_box
 ---------------------------------------*/
 .cp_box label:after{
    background-color: #87c167;
            padding: 2rem 0;
        border-radius: 50px;
 }
.cp_box label:after:before{
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    width: 3rem;
    height: 1px;
    background: #000;
    transform: rotate(90deg);
    transition: .3s ease all;
}

}
