@charset "UTF-8";
/* Scss Document */
/*------------- reset -------------*/
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,
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,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  transition: all 0.5s ease-out;
}

body {
  line-height: 1;
}

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

nav 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;
}

input,
select {
  vertical-align: middle;
}

/*------------- base -------------*/
@font-face {
  font-family: "Noto Sans JP"; /* CSSで使うフォント名 */
  src: url("../fonts/NotoSansJP-Light.woff2") format("woff2"), url("../fonts/NotoSansJP-Light.woff") format("woff"), url("../fonts/NotoSansJP-Light.ttf") format("truetype"); /* .ttfも併記しておくと互換性が上がります */
  font-weight: 300; /* Regularのウェイト */
  font-style: normal;
  font-display: swap; /* フォント読み込み中の表示を制御 */
}
@font-face {
  font-family: "Noto Sans JP"; /* CSSで使うフォント名 */
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Regular.woff") format("woff"), url("../fonts/NotoSansJP-Regular.ttf") format("truetype"); /* .ttfも併記しておくと互換性が上がります */
  font-weight: 400; /* Regularのウェイト */
  font-style: normal;
  font-display: swap; /* フォント読み込み中の表示を制御 */
}
@font-face {
  font-family: "Noto Sans JP"; /* CSSで使うフォント名 */
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"), url("../fonts/NotoSansJP-Medium.woff") format("woff"), url("../fonts/NotoSansJP-Medium.ttf") format("truetype"); /* .ttfも併記しておくと互換性が上がります */
  font-weight: 500; /* Regularのウェイト */
  font-style: normal;
  font-display: swap; /* フォント読み込み中の表示を制御 */
}
@font-face {
  font-family: "Noto Sans JP"; /* 同じフォント名で異なるウェイトを指定 */
  src: url("../fonts/NotoSansJP-SemiBold.woff2") format("woff2"), url("../fonts/NotoSansJP-SemiBold.woff") format("woff"), url("../fonts/NotoSansJP-SemiBold.ttf") format("truetype"); /* .ttfも併記 */
  font-weight: 600; /* Boldのウェイト */
  font-style: normal;
  font-display: swap; /* フォント読み込み中の表示を制御 */
}
@font-face {
  font-family: "Noto Sans JP"; /* 同じフォント名で異なるウェイトを指定 */
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff"), url("../fonts/NotoSansJP-Bold.ttf") format("truetype"); /* .ttfも併記 */
  font-weight: 700; /* Boldのウェイト */
  font-style: normal;
  font-display: swap; /* フォント読み込み中の表示を制御 */
}
html {
  scroll-behavior: smooth;
}

body {
  color: #222;
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust: none;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  overflow-x: hidden;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a:link {
  color: #343434;
  text-decoration: none;
}

a:visited {
  color: #343434;
  text-decoration: none;
}

a:hover {
  color: #343434;
  text-decoration: none;
}

a:active {
  color: #343434;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  padding: 0px;
  margin: 0px;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  outline: none;
  text-decoration: none;
  color: #212020;
}

a:hover {
  transition: all 0.3s ease-out;
}

a:hover {
  opacity: 0.6;
}

.clearfix:after {
  content: " ";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}

.clearfix {
  display: inline-block;
}

/* exlude MacIE5 \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* end MacIE5 */
.clear {
  clear: both;
}

.slick-slider div {
  transition: none;
}

/*------------- layout -------------*/
.p-lp .l-section {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .p-lp .l-section {
    margin-top: 90px;
  }
}
.p-lp .l-inner {
  padding: 0 30px;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
}
.p-lp .l-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  z-index: 100;
  margin: 0 auto;
  position: fixed;
  top: 0px;
  left: 0px;
  background: #fff;
}
.p-lp .l-header .logo {
  width: 252px;
  line-height: 1;
}
.p-lp .l-header .logo a {
  display: inline-block;
}
.p-lp .l-header .nav {
  display: flex;
  justify-content: end;
  align-items: center;
}
.p-lp .l-header .nav li {
  margin-left: 20px;
}
.p-lp .l-header .nav li span {
  color: #008537;
  border: 1px solid #cddbd3;
  position: relative;
  padding: 5px 28px 5px 15px;
}
.p-lp .l-header .nav li span:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  border-right: 1px solid #008537;
  border-bottom: 1px solid #008537;
  transform: rotate(45deg);
  right: 10px;
  top: 12px;
}
.p-lp .l-header .nav .nav-tel a {
  color: #023895;
  font-size: 22px;
  font-weight: 800;
}
.p-lp .l-header .nav .nav-tel a img {
  width: 48px;
  margin-right: 5px;
}
.p-lp .l-header .nav-sp {
  display: none;
}
@media screen and (max-width: 1236px) {
  .p-lp .l-header .nav {
    display: block;
  }
  .p-lp .l-header .nav li {
    text-align: center;
    font-size: 18px;
    margin: 0;
  }
  .p-lp .l-header .nav li + li {
    border-top: 1px solid #cddbd3;
  }
  .p-lp .l-header .nav li a {
    display: block;
    text-align: center;
    padding: 0.5em 0;
  }
  .p-lp .l-header .nav li span {
    color: #008537;
    border: none;
    padding: 0;
  }
  .p-lp .l-header .nav li span:before {
    display: none;
  }
  .p-lp .l-header .nav .nav-tel a {
    color: #023895;
    font-size: 22px;
    font-weight: 800;
  }
  .p-lp .l-header .nav .nav-tel a img {
    width: 48px;
    margin-right: 5px;
  }
  .p-lp .l-header .nav-sp {
    display: flex;
  }
  .p-lp .l-header .nav-pc {
    display: none;
  }
  .p-lp .l-header .nav-sp {
    display: flex;
    align-items: center;
  }
  .p-lp .l-header .nav-sp nav {
    display: inline;
  }
  .p-lp .l-header .menu__box {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    margin: 0 0 0 -100vw;
    padding: 15vw 15vw 0;
    text-align: center;
    background-color: #fff;
    z-index: 1;
    transition-duration: 0.3s;
  }
  .p-lp .l-header #menu__toggle {
    opacity: 0;
  }
  .p-lp .l-header #menu__toggle:checked ~ .menu__btn > span {
    transform: rotate(45deg);
  }
  .p-lp .l-header #menu__toggle:checked ~ .menu__btn > span::before {
    top: 0;
    transform: rotate(0);
    background: #008537;
  }
  .p-lp .l-header #menu__toggle:checked ~ .menu__btn > span::after {
    top: 0;
    transform: rotate(90deg);
    background: #008537;
  }
  .p-lp .l-header #menu__toggle:checked ~ .menu__box {
    visibility: visible;
    left: 0;
    margin: 0;
  }
  .p-lp .l-header .menu__btn {
    transition-duration: 0.25s;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    bottom: 2px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 2;
  }
  .p-lp .l-header .menu__btn span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #008537;
  }
  .p-lp .l-header .menu__btn span::before {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #008537;
    content: "";
    top: -8px;
    transition-duration: 0.25s;
  }
  .p-lp .l-header .menu__btn span::after {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #008537;
    content: "";
    top: 8px;
    transition-duration: 0.25s;
  }
}
@media screen and (max-width: 767px) {
  .p-lp .l-header {
    width: 100%;
    padding: 10px;
  }
  .p-lp .l-header .logo {
    width: 183px;
  }
}
.p-lp .l-footer {
  margin-top: 170px;
  padding: 90px 0 30px;
  border-top: 1px solid #e8e8e8;
}
.p-lp .l-footer .l-footerWrap {
  justify-content: space-between;
}
.p-lp .l-footer .footer-info .logo {
  width: 185px;
}
.p-lp .l-footer .footer-info .mail {
  margin: 40px 0 20px;
}
.p-lp .l-footer .footer-info .mail a {
  background: #008537;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
.p-lp .l-footer .footer-info .mail a img {
  width: 23px;
  margin-right: 14px;
}
.p-lp .l-footer .footer-info .tel a {
  background: #fff;
  font-size: 27px;
  color: #013b90;
  font-weight: 600;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.p-lp .l-footer .footer-info .tel a img {
  width: 41px;
  margin-right: 8px;
}
.p-lp .l-footer .footer-nav__item {
  margin-left: 3em;
}
.p-lp .l-footer .footer-nav__item li {
  margin: 0.8em 0;
}
.p-lp .l-footer .footer-nav__item .link {
  display: flex;
  align-items: center;
}
.p-lp .l-footer .footer-nav__item .link img {
  width: 16px;
  margin-left: 5px;
}
.p-lp .l-footer .l-footerCopy {
  color: #8b8b8b;
  font-size: 12px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-lp .l-footer {
    margin-top: 110px;
    padding: 45px 0 120px;
  }
  .p-lp .l-footer .footer-info .logo {
    width: 140px;
  }
  .p-lp .l-footer .footer-info .mail {
    margin: 40px 0 20px;
  }
  .p-lp .l-footer .footer-info .mail a {
    width: 257px;
  }
  .p-lp .l-footer .footer-nav {
    margin-top: 70px;
  }
  .p-lp .l-footer .footer-nav__item {
    margin-left: 0em;
  }
  .p-lp .l-footer .l-footerCopy {
    margin-top: 60px;
  }
}
.p-lp .p-fixBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-lp .p-fixBtn {
    right: 10px;
    width: calc(100% - 20px);
  }
}

/*------------- component -------------*/
.p-lp .c-head01 {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  color: #008537;
  margin-bottom: 40px;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-lp .c-head01 {
    font-size: 23px;
    margin-bottom: 28px;
  }
}
.p-lp .c-head02 {
  padding: 100px 0;
  margin-bottom: 100px;
}
.p-lp .c-head02 h2 {
  display: inline-block;
  margin-left: 10%;
  text-align: center;
  font-size: 46px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 4px;
}
.p-lp .c-head02 h2 .small {
  font-size: 38px;
}
.p-lp .c-head02 h2 .en {
  font-size: 16px;
  font-weight: 400;
  display: block;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .p-lp .c-head02 {
    padding: 50px 0;
    margin-bottom: 50px;
  }
  .p-lp .c-head02 h2 {
    margin-left: 10%;
    font-size: 20px;
    letter-spacing: 2px;
  }
  .p-lp .c-head02 h2 .small {
    font-size: 16px;
  }
  .p-lp .c-head02 h2 .en {
    font-size: 9px;
    letter-spacing: 1px;
  }
}
.p-lp .c-head03 {
  text-align: center;
  font-size: 36px;
  color: #008537;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-lp .c-head03 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.p-lp .c-flexPC {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-lp .c-flexPC {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-lp .c-flexSP {
    display: flex;
  }
}
.p-lp .c-caution {
  font-size: 9px;
  color: #9f9f9f;
  font-weight: 400;
}
.p-lp .c-patent {
  margin-bottom: 16px;
}
.p-lp .c-patent span {
  line-height: 1;
  background: #d83b3b;
  color: #fff;
  padding: 4px 8px;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  line-height: 1;
}
.p-lp .c-patent span:before {
  content: "";
  background: #d83b3b;
  height: 8px;
  width: 100%;
  display: block;
  position: absolute;
  bottom: -7.6px;
  z-index: 1;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/*------------- utility -------------*/
.u-tac {
  text-align: center !important;
}

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

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

.u-pcbr {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-pcbr {
    display: none;
  }
}

.u-spbr {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-spbr {
    display: inline-block;
  }
}

.p-lp .p-fv {
  margin-top: 80px;
}
.p-lp .p-fv img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-lp .p-fv {
    margin-top: 46px;
  }
}
.p-lp .p-sec01 {
  margin-top: 120px;
}
.p-lp .p-sec01 .p-sec01Intro {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 500;
}
.p-lp .p-sec01 .p-sec01Intro .text01 {
  font-size: 20px;
}
.p-lp .p-sec01 .p-sec01Intro .text02 {
  font-size: 25px;
}
.p-lp .p-sec01 .p-sec01Intro .text02 span {
  border-bottom: 2px solid #038537;
}
.p-lp .p-sec01 .p-sec01Head {
  font-size: 28px;
  text-align: center;
  color: #008537;
  font-weight: 500;
  margin-bottom: 50px;
}
.p-lp .p-sec01 .youtube {
  width: 830px;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/9; /* 16:9 のアスペクト比を指定 */
}
.p-lp .p-sec01 .youtube iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec01 {
    margin-top: 70px;
  }
  .p-lp .p-sec01 .p-sec01Intro .text01 {
    font-size: 14px;
  }
  .p-lp .p-sec01 .p-sec01Intro .text02 {
    font-size: 14px;
  }
  .p-lp .p-sec01 .p-sec01Head {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .p-lp .p-sec01 .youtube {
    width: 830px;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 16/9; /* 16:9 のアスペクト比を指定 */
  }
  .p-lp .p-sec01 .youtube iframe {
    width: 100%;
    height: 100%;
  }
}
.p-lp .p-sec02 .p-sec02Intro {
  width: 600px;
  max-width: 100%;
  margin: 0 auto 40px;
}
.p-lp .p-sec02 .p-sec02Contents {
  width: 880px;
  max-width: 100%;
  margin: 0 auto 50px;
}
.p-lp .p-sec02 .p-sec02Contents__item {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.p-lp .p-sec02 .p-sec02Contents__item .textArea {
  width: 330px;
  margin-right: 40px;
  text-align: center;
}
.p-lp .p-sec02 .p-sec02Contents__item .textArea .text01 {
  font-size: 22px;
}
.p-lp .p-sec02 .p-sec02Contents__item .textArea .text02 {
  font-size: 29px;
}
.p-lp .p-sec02 .p-sec02Contents__item .textArea .text02 .underline {
  border-bottom: 5px solid #038537;
}
.p-lp .p-sec02 .p-sec02Contents__item .textArea .text02 .big {
  font-size: 49px;
  margin: 0 10px;
  line-height: 1.5;
  letter-spacing: 2px;
}
.p-lp .p-sec02 .p-sec02Contents__item .imgArea {
  width: 500px;
}
.p-lp .p-sec02 .p-sec02CautionWrap {
  justify-content: flex-end;
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
}
.p-lp .p-sec02 .p-sec02CautionWrap .c-caution {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec02 .p-sec02Contents {
    margin: 0 auto 25px;
  }
  .p-lp .p-sec02 .p-sec02Contents__item .textArea {
    width: 100px;
    margin-right: 10px;
  }
  .p-lp .p-sec02 .p-sec02Contents__item .textArea .text01 {
    font-size: 14px;
  }
  .p-lp .p-sec02 .p-sec02Contents__item .textArea .text02 {
    font-size: 14px;
  }
  .p-lp .p-sec02 .p-sec02Contents__item .textArea .text02 .underline {
    border-bottom: 3px solid #038537;
  }
  .p-lp .p-sec02 .p-sec02Contents__item .textArea .text02 .big {
    font-size: 25px;
    margin: 0 5px;
    letter-spacing: 1px;
  }
  .p-lp .p-sec02 .p-sec02Contents__item .imgArea {
    width: calc(100% - 110px);
  }
  .p-lp .p-sec02 .p-sec02CautionWrap .c-caution {
    margin: 10px 0;
  }
}
.p-lp .p-sec03 .p-sec03Head {
  justify-content: center;
  margin-top: 80px;
}
.p-lp .p-sec03 .p-sec03Head .textArea {
  text-align: center;
  font-size: 36px;
  margin-top: 40px;
}
.p-lp .p-sec03 .p-sec03Head .textArea h2 {
  font-weight: 500;
}
.p-lp .p-sec03 .p-sec03Head .textArea img {
  width: 93px;
}
.p-lp .p-sec03 .p-sec03Head .textArea span {
  display: block;
  font-size: 20px;
  margin-top: 20px;
}
.p-lp .p-sec03 .p-sec03Head .imgArea {
  width: 337px;
  max-width: 100%;
  margin-left: 80px;
}
.p-lp .p-sec03 .p-sec03Contents {
  width: 1066px;
  max-width: 100%;
  margin: 80px auto 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-lp .p-sec03 .p-sec03Contents__item {
  padding: 34px 34px 54px;
  width: calc(50% - 8px);
  margin-bottom: 16px;
  position: relative;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
}
.p-lp .p-sec03 .p-sec03Contents__item h3 {
  font-size: 18px;
  font-weight: 500;
  color: #008537;
  margin: 20px 0 16px;
}
.p-lp .p-sec03 .p-sec03Contents__item .btn {
  text-align: right;
  position: absolute;
  bottom: 8px;
  right: 0;
}
.p-lp .p-sec03 .p-sec03Contents__item .btn a {
  color: #9f9f9f;
  padding-right: 20px;
  margin-right: 6px;
  font-size: 13px;
  position: relative;
}
.p-lp .p-sec03 .p-sec03Contents__item .btn a:after {
  content: "";
  border-right: 1px solid;
  border-bottom: 1px solid;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-lp .p-sec03 .p-sec03CautionWrap {
  width: 1066px;
  max-width: 100%;
  margin: 0 auto 110px;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec03 .p-sec03Head {
    margin-top: 50px;
  }
  .p-lp .p-sec03 .p-sec03Head .textArea {
    font-size: 22px;
    margin-top: 40px;
    order: 1;
  }
  .p-lp .p-sec03 .p-sec03Head .textArea h2 {
    display: flex;
    justify-content: center;
  }
  .p-lp .p-sec03 .p-sec03Head .textArea img {
    width: 69px;
    height: 69px;
    margin-right: 10px;
  }
  .p-lp .p-sec03 .p-sec03Head .textArea span {
    font-size: 15px;
    margin-top: 0px;
  }
  .p-lp .p-sec03 .p-sec03Head .imgArea {
    margin: 40px auto 0;
    width: 50%;
  }
  .p-lp .p-sec03 .p-sec03Contents {
    margin: 50px auto 20px;
  }
  .p-lp .p-sec03 .p-sec03Contents__item {
    padding: 17px 14px 68px;
    width: calc(100% + 30px);
    margin: 0 0 16px -15px;
  }
  .p-lp .p-sec03 .p-sec03Contents__item .btn {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 18px;
    right: 0;
  }
  .p-lp .p-sec03 .p-sec03Contents__item .btn a {
    color: #9f9f9f;
    padding-right: 20px;
    margin-right: 6px;
    font-size: 13px;
    position: relative;
  }
  .p-lp .p-sec03 .p-sec03Contents__item .btn a:after {
    content: "";
    border-right: 1px solid;
    border-bottom: 1px solid;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    right: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.p-lp .p-sec04 {
  background: #f7f7f7;
  padding: 80px 0 65px;
}
.p-lp .p-sec04 .c-head01 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-lp .p-sec04 .c-head01 img {
  width: 105px;
  margin: 0 5px;
}
.p-lp .p-sec04 .p-sec04Contents {
  justify-content: center;
  flex-wrap: wrap;
  width: 820px;
  max-width: 100%;
  margin: 0 auto;
}
.p-lp .p-sec04 .p-sec04Contents li {
  width: calc(48% - 10px);
  margin: 0 10px 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 40px 30px;
  box-sizing: border-box;
}
.p-lp .p-sec04 .p-sec04Contents li p {
  color: #868686;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec04 {
    padding: 30px 0;
  }
  .p-lp .p-sec04 .c-head01 {
    font-size: 20px;
  }
  .p-lp .p-sec04 .c-head01 img {
    width: 80px;
    margin: 0 5px;
  }
  .p-lp .p-sec04 .p-sec04Contents li {
    width: calc(100% + 30px);
    margin: 0 0 15px -15px;
    padding: 15px;
  }
  .p-lp .p-sec04 .p-sec04Contents li p {
    font-size: 16px;
  }
}
.p-lp .p-cv {
  padding: 160px 0 200px;
}
.p-lp .p-cvContents {
  width: 820px;
  max-width: 100%;
  margin: 0 auto;
  border: 2px solid #e8e8e8;
  padding: 70px 90px;
  justify-content: space-between;
  align-items: flex-end;
}
.p-lp .p-cvContents .textArea {
  width: calc(100% - 180px);
}
.p-lp .p-cvContents .textArea .text01 {
  font-size: 18px;
  color: #008537;
  margin-bottom: 10px;
}
.p-lp .p-cvContents .textArea .logo {
  transform: translateX(-18px);
}
.p-lp .p-cvContents .textArea .text02 {
  font-size: 18px;
}
.p-lp .p-cvContents .textArea .btnList {
  margin-top: 80px;
}
.p-lp .p-cvContents .textArea .btnList li {
  width: 235px;
}
.p-lp .p-cvContents .textArea .btnList li a {
  color: #fff;
  display: block;
  padding: 1em 1em;
  text-align: center;
  font-size: 14px;
  box-sizing: border-box;
  position: relative;
  border-radius: 6px;
  background: linear-gradient(180deg, #fa2525, #c60000);
}
.p-lp .p-cvContents .textArea .btnList li a span {
  font-size: 16px;
  margin-right: 5px;
  font-weight: 500;
}
.p-lp .p-cvContents .textArea .btnList li a:before {
  content: "";
  background: url("../img/icon_arrow.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  width: 15px;
  height: 10px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
}
.p-lp .p-cvContents .textArea .btnList li.yahoo {
  position: relative;
}
.p-lp .p-cvContents .textArea .btnList li.yahoo img {
  width: 196px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -48px;
}
.p-lp .p-cvContents .textArea .btnList .imgArea.sp {
  display: none;
}
.p-lp .p-cvContents .imgArea {
  width: 155px;
}
@media screen and (max-width: 767px) {
  .p-lp .p-cv {
    padding: 90px 0;
  }
  .p-lp .p-cvContents {
    max-width: calc(100% + 30px);
    margin: 0 0 0 -15px;
    padding: 25px 30px;
  }
  .p-lp .p-cvContents .textArea {
    width: 100%;
    text-align: center;
  }
  .p-lp .p-cvContents .textArea .text01 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .p-lp .p-cvContents .textArea .logo {
    transform: translateX(0);
    width: 260px;
    margin: 0 auto;
  }
  .p-lp .p-cvContents .textArea .text02 {
    font-size: 12px;
  }
  .p-lp .p-cvContents .textArea .btnList {
    margin-top: 18px;
    align-items: center;
    justify-content: space-between;
  }
  .p-lp .p-cvContents .textArea .btnList li {
    width: calc(100% - 108px);
  }
  .p-lp .p-cvContents .textArea .btnList li a {
    padding: 1em 1em;
    font-size: 12px;
  }
  .p-lp .p-cvContents .textArea .btnList li a span {
    font-size: 15px;
    margin-right: 3px;
  }
  .p-lp .p-cvContents .textArea .btnList li a:before {
    content: "";
    background: url("../img/icon_arrow.png") no-repeat;
    background-size: 100% 100%;
    position: absolute;
    width: 15px;
    height: 10px;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 20px;
  }
  .p-lp .p-cvContents .textArea .btnList li.yahoo {
    position: relative;
    margin-top: 30px;
  }
  .p-lp .p-cvContents .textArea .btnList li.yahoo img {
    width: 196px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -48px;
  }
  .p-lp .p-cvContents .textArea .btnList .imgArea.sp {
    display: block;
    width: 92px;
  }
  .p-lp .p-cvContents .imgArea {
    display: none;
  }
}
.p-lp .p-sec05 .c-head02 {
  background: url("../img/sec05_bg.jpg") no-repeat;
  background-size: cover;
}
.p-lp .p-sec05 .p-sec05Contents {
  width: 875px;
  max-width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}
.p-lp .p-sec05 .p-sec05Contents--01 .textArea {
  width: calc(100% - 370px);
}
.p-lp .p-sec05 .p-sec05Contents--01 .textArea h3 {
  color: #008537;
  font-weight: 600;
  font-size: 36px;
}
.p-lp .p-sec05 .p-sec05Contents--01 .textArea h3 .text01 {
  font-size: 17px;
  display: block;
  margin-bottom: 8px;
  transform: translateX(20px);
}
.p-lp .p-sec05 .p-sec05Contents--01 .textArea h3 .text02 {
  display: inline-block;
  color: #222;
  font-size: 13px;
  background: #f7f7f7;
  line-height: 1;
  padding: 6px 8px;
  font-weight: 500;
}
.p-lp .p-sec05 .p-sec05Contents--01 .textArea p {
  margin-top: 1em;
  font-weight: 400;
  transform: translateX(20px);
}
.p-lp .p-sec05 .p-sec05Contents--01 .textArea .text02.sp {
  display: none;
}
.p-lp .p-sec05 .p-sec05Contents--01 .textArea .imgArea.sp {
  display: none;
}
.p-lp .p-sec05 .p-sec05Contents--01 .imgArea {
  width: 338px;
}
.p-lp .p-sec05 .p-sec05Contents--02 {
  margin-top: 80px;
}
.p-lp .p-sec05 .p-sec05Contents--02 .textArea {
  width: calc(100% - 380px);
}
.p-lp .p-sec05 .p-sec05Contents--02 .textArea li {
  padding: 30px 0;
}
.p-lp .p-sec05 .p-sec05Contents--02 .textArea li p {
  color: #008537;
  font-size: 22px;
  line-height: 1.5;
  padding-right: 40px;
  position: relative;
}
.p-lp .p-sec05 .p-sec05Contents--02 .textArea li p:after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 2px solid #038537;
  border-right: 2px solid #038537;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: rotate(45deg);
}
.p-lp .p-sec05 .p-sec05Contents--02 .textArea li:nth-child(2) {
  border-top: 2px solid #e8e8e8;
  border-bottom: 2px solid #e8e8e8;
}
.p-lp .p-sec05 .p-sec05Contents--02 .imgArea {
  width: 368px;
}
.p-lp .p-sec05 .p-sec05Contents--03 {
  position: relative;
  margin-top: 320px;
  margin-bottom: 60px;
  align-items: center;
}
.p-lp .p-sec05 .p-sec05Contents--03:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -250px;
  margin: auto;
  width: 84px;
  height: 84px;
  background: url("../img/sec05_icon01.png") no-repeat;
  background-size: 100% 100%;
}
.p-lp .p-sec05 .p-sec05Contents--03 .textArea {
  width: calc(100% - 380px);
}
.p-lp .p-sec05 .p-sec05Contents--03 .textArea .imgArea.sp {
  display: none;
}
.p-lp .p-sec05 .p-sec05Contents--03 .imgArea.pc {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec05 .c-head02 {
    background: url("../img/sec05_bg_sp.jpg") no-repeat;
    background-size: cover;
  }
  .p-lp .p-sec05 .p-sec05Contents--01 .textArea {
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }
  .p-lp .p-sec05 .p-sec05Contents--01 .textArea h3 {
    font-size: 24px;
  }
  .p-lp .p-sec05 .p-sec05Contents--01 .textArea h3 .text01 {
    transform: translateX(0px);
  }
  .p-lp .p-sec05 .p-sec05Contents--01 .textArea h3 .text02.pc {
    display: none;
  }
  .p-lp .p-sec05 .p-sec05Contents--01 .textArea p {
    text-align: left;
    transform: translateX(0px);
  }
  .p-lp .p-sec05 .p-sec05Contents--01 .textArea .text02.sp {
    margin-top: 0.5em;
    display: inline-block;
    color: #222;
    font-size: 13px;
    background: #f7f7f7;
    line-height: 1;
    padding: 6px 8px;
    font-weight: 500;
  }
  .p-lp .p-sec05 .p-sec05Contents--01 .textArea .c-patent {
    text-align: center;
  }
  .p-lp .p-sec05 .p-sec05Contents--01 .textArea .imgArea.sp {
    display: block;
    margin-top: 20px;
  }
  .p-lp .p-sec05 .p-sec05Contents--01 .imgArea.pc {
    display: none;
  }
  .p-lp .p-sec05 .p-sec05Contents--02 {
    margin-top: 60px;
    flex-wrap: wrap;
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .textArea {
    width: 100%;
    order: 1;
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .textArea li {
    padding: 15px 0;
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .textArea li p {
    font-size: 18px;
    padding: 0 0 0 1.5em;
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .textArea li p:after {
    display: none;
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .textArea li p:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .textArea li:nth-child(1) p:before {
    content: "❶";
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .textArea li:nth-child(2) p:before {
    content: "❷";
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .textArea li:nth-child(3) p:before {
    content: "❸";
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .textArea li:nth-child(2) {
    border-top: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .imgArea {
    order: 0;
  }
  .p-lp .p-sec05 .p-sec05Contents--02 .imgArea img {
    max-width: calc(100% + 60px);
    margin-left: -30px;
  }
  .p-lp .p-sec05 .p-sec05Contents--03 {
    margin-top: 170px;
    margin-bottom: 20px;
    align-items: center;
  }
  .p-lp .p-sec05 .p-sec05Contents--03:before {
    top: -120px;
    width: 60px;
    height: 60px;
  }
  .p-lp .p-sec05 .p-sec05Contents--03 .textArea {
    width: 100%;
  }
  .p-lp .p-sec05 .p-sec05Contents--03 .textArea .imgArea.sp {
    display: block;
    width: 190px;
    margin: 16px auto 22px;
  }
  .p-lp .p-sec05 .p-sec05Contents--03 .imgArea.pc {
    width: 100%;
    display: none;
  }
}
.p-lp .p-sec06 {
  margin-top: 120px;
  overflow: hidden;
}
.p-lp .p-sec06 .c-head02 {
  background: url("../img/sec06_bg.jpg") no-repeat;
  background-size: cover;
}
.p-lp .p-sec06 .p-sec06ContentsIntro {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower {
  margin-top: 80px;
  align-items: center;
  width: 854px;
  max-width: 100%;
  margin: 20px auto;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea {
  width: calc(100% - 380px);
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li {
  padding: 30px 0;
  position: relative;
  padding-right: 186px;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li h4 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.5em;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(1) img {
  width: 142px;
  margin-right: 20px;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(1) h4 {
  color: #5babdb;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(2) img {
  width: 142px;
  margin-right: 20px;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(2) h4 {
  color: #83a1ad;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(3) img {
  width: 180px;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(3) h4 {
  color: #b09d98;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(2) {
  border-top: 2px solid #e8e8e8;
  border-bottom: 2px solid #e8e8e8;
}
.p-lp .p-sec06 .p-sec06Contents--01Lower .imgArea {
  width: 378px;
  max-width: 100%;
}
.p-lp .p-sec06 .p-sec06Contents--02 {
  margin-top: 320px;
  position: relative;
}
.p-lp .p-sec06 .p-sec06Contents--02:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -250px;
  margin: auto;
  width: 84px;
  height: 84px;
  background: url("../img/sec05_icon01.png") no-repeat;
  background-size: 100% 100%;
}
.p-lp .p-sec06 .p-sec06Contents--02 h4 {
  text-align: center;
  color: #008537;
  font-size: 22px;
  font-weight: 500;
  margin: 90px 0 30px;
}
.p-lp .p-sec06 .p-sec06Contents--02 .p-sec06Contents--02Img {
  text-align: center;
  margin-bottom: 90px;
}
.p-lp .p-sec06 .p-sec06Contents--02 .p-sec06Contents--02Img img {
  width: 1195px;
}
.p-lp .p-sec06 .p-sec06Contents--02 .p-sec06About {
  justify-content: space-between;
  align-items: center;
  width: 830px;
  margin: 0 auto;
  max-width: 100%;
}
.p-lp .p-sec06 .p-sec06Contents--02 .p-sec06About .imgArea {
  width: 58px;
}
.p-lp .p-sec06 .p-sec06Contents--02 .p-sec06About .textArea {
  width: calc(100% - 88px);
}
.p-lp .p-sec06 .p-sec06Contents--02 .p-sec06About .textArea .head {
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.5;
}
.p-lp .p-sec06 .p-sec06Contents--03 {
  width: 1075px;
  max-width: 100%;
  margin: 190px auto;
  align-items: center;
  justify-content: space-between;
}
.p-lp .p-sec06 .p-sec06Contents--03 .textArea {
  width: calc(100% - 650px);
}
.p-lp .p-sec06 .p-sec06Contents--03 .imgArea {
  width: 609px;
  max-width: 100%;
}
.p-lp .p-sec06 .p-sec06Contents--04 {
  text-align: center;
}
.p-lp .p-sec06 .p-sec06Contents--04 .text01 {
  font-size: 18px;
  margin-bottom: 1em;
  font-weight: 500;
}
.p-lp .p-sec06 .p-sec06Contents--04 .text02 {
  font-size: 20px;
  font-weight: 500;
}
.p-lp .p-sec06 .p-sec06Contents--04 .text03 {
  margin: 20px 0 60px;
  font-weight: 500;
}
.p-lp .p-sec06 .p-sec06Contents--04 .text03 span {
  font-size: 13px;
  line-height: 1;
  background: #f7f7f7;
  padding: 5px 14px;
}
.p-lp .p-sec06 .p-sec06Contents--04 .imgWrap {
  width: 925px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  height: auto;
  justify-content: space-between;
}
.p-lp .p-sec06 .p-sec06Contents--04 .imgWrap div {
  width: 32%;
}
.p-lp .p-sec06 .p-sec06Contents--04 .swiper-pagination {
  display: none;
}
.p-lp .p-sec06 .p-sec06Contents--05 {
  width: 800px;
  max-width: 100%;
  margin: 170px auto 0;
}
.p-lp .p-sec06 .p-sec06Contents--05 .textArea {
  width: 460px;
  max-width: 100%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec06 {
    margin-top: 90px;
  }
  .p-lp .p-sec06 .c-head02 {
    background: url("../img/sec06_bg_sp.jpg") no-repeat;
    background-size: cover;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower {
    margin: 20px auto;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea {
    width: 100%;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li {
    padding: 30px 0;
    padding-right: 0;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li h4 {
    text-align: left;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li h4:before {
    font-size: 20px;
    margin-right: 5px;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li img {
    top: 25px;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li p {
    padding-right: 140px;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(1) img {
    width: 116px;
    margin-right: 7px;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(1) h4:before {
    content: "❶";
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(2) img {
    width: 116px;
    margin-right: 7px;
    padding-top: 30px;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(2) h4:before {
    content: "❷";
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(3) img {
    width: 130px;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(3) h4:before {
    content: "❸";
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .textArea li:nth-child(2) {
    border-top: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
  }
  .p-lp .p-sec06 .p-sec06Contents--01Lower .imgArea img {
    max-width: calc(100% + 60px);
    margin-left: -30px;
  }
  .p-lp .p-sec06 .p-sec06Contents--02 {
    margin-top: 160px;
  }
  .p-lp .p-sec06 .p-sec06Contents--02:before {
    top: -125px;
    width: 60px;
    height: 60px;
  }
  .p-lp .p-sec06 .p-sec06Contents--02 h4 {
    font-size: 20px;
    margin: 70px 0 30px;
  }
  .p-lp .p-sec06 .p-sec06Contents--02 .p-sec06Contents--02Img {
    margin-bottom: 80px;
    display: flex;
    overflow-x: scroll;
    width: calc(100% + 30px);
  }
  .p-lp .p-sec06 .p-sec06Contents--02 .p-sec06Contents--02Img img {
    max-width: 1195px;
  }
  .p-lp .p-sec06 .p-sec06Contents--02 .p-sec06About .imgArea {
    margin: 0 auto 20px;
  }
  .p-lp .p-sec06 .p-sec06Contents--02 .p-sec06About .textArea {
    width: 100%;
  }
  .p-lp .p-sec06 .p-sec06Contents--02 .p-sec06About .textArea .head {
    font-size: 18px;
  }
  .p-lp .p-sec06 .p-sec06Contents--03 {
    margin: 80px auto 50px;
    align-items: center;
    justify-content: space-between;
  }
  .p-lp .p-sec06 .p-sec06Contents--03 .textArea {
    width: 100%;
  }
  .p-lp .p-sec06 .p-sec06Contents--03 .imgArea {
    max-width: calc(100% + 60px);
    margin: 20px 0 0 -30px;
  }
  .p-lp .p-sec06 .p-sec06Contents--04 {
    text-align: center;
  }
  .p-lp .p-sec06 .p-sec06Contents--04 .text01 {
    font-size: 16px;
    line-height: 1.5;
  }
  .p-lp .p-sec06 .p-sec06Contents--04 .text02 {
    font-size: 16px;
    text-align: left;
  }
  .p-lp .p-sec06 .p-sec06Contents--04 .text03 {
    margin: 12px 0 60px;
    text-align: left;
  }
  .p-lp .p-sec06 .p-sec06Contents--04 .imgWrap div {
    width: auto;
  }
  .p-lp .p-sec06 .p-sec06Contents--04 .swiper-container {
    position: relative;
  }
  .p-lp .p-sec06 .p-sec06Contents--04 .swiper-pagination {
    display: block;
    bottom: -40px;
  }
  .p-lp .p-sec06 .p-sec06Contents--04 .swiper-pagination span {
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #e2e2e2;
  }
  .p-lp .p-sec06 .p-sec06Contents--04 .swiper-pagination .swiper-pagination-bullet-active {
    background: #038537;
  }
  .p-lp .p-sec06 .p-sec06Contents--05 {
    width: 800px;
    max-width: 100%;
    margin: 170px auto 0;
  }
  .p-lp .p-sec06 .p-sec06Contents--05 .textArea {
    width: 460px;
    max-width: 100%;
    margin: 0 auto 40px;
  }
}
.p-lp .p-sec07 .c-head02 {
  background: url("../img/sec07_bg.jpg") no-repeat;
  background-size: cover;
}
.p-lp .p-sec07 .p-sec07Contenst01 .text01 {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
.p-lp .p-sec07 .p-sec07Contenst01 .img {
  width: 922px;
  max-width: 100%;
  margin: 80px auto;
}
.p-lp .p-sec07 .p-sec07Contenst01 .about {
  width: 630px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 24px;
  border-left: 2px solid #e8e8e8;
}
.p-lp .p-sec07 .p-sec07Contenst01 .about h4 {
  font-weight: 600;
}
.p-lp .p-sec07 .p-sec07Contenst01 .about p {
  font-size: 14px;
  margin-top: 0.8em;
}
.p-lp .p-sec07 .p-sec07Contenst02 {
  width: 1108px;
  max-width: 100%;
  margin: 140px auto 0;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec07 .c-head02 {
    background: url("../img/sec07_bg_sp.jpg") no-repeat;
    background-size: cover;
  }
  .p-lp .p-sec07 .p-sec07Contenst01 .c-head01 {
    font-size: 20px;
  }
  .p-lp .p-sec07 .p-sec07Contenst01 .img {
    margin: 80px auto 60px;
  }
}
.p-lp .p-sec08 .c-head02 {
  background: url("../img/sec08_bg.jpg") no-repeat;
  background-size: cover;
}
.p-lp .p-sec08 .p-sec08Contents {
  width: 968px;
  max-width: 100%;
  margin: 150px auto 60px;
  justify-content: space-between;
}
.p-lp .p-sec08 .p-sec08Contents div {
  width: 47%;
}
.p-lp .p-sec08 .p-sec08Contents div h3 {
  font-size: 22px;
  font-weight: 500;
  color: #008537;
  text-align: center;
  margin-bottom: 1em;
}
.p-lp .p-sec08 p {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec08 .c-head02 {
    background: url("../img/sec08_bg_sp.jpg") no-repeat;
    background-size: cover;
  }
  .p-lp .p-sec08 .p-sec08Contents {
    margin: 55px auto 0px;
  }
  .p-lp .p-sec08 .p-sec08Contents div {
    width: 100%;
    margin-bottom: 25px;
  }
  .p-lp .p-sec08 .p-sec08Contents div h3 {
    font-size: 18px;
    margin-bottom: 1em;
  }
  .p-lp .p-sec08 p {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.p-lp .p-sec09 .c-head02 {
  background: url("../img/sec09_bg.jpg") no-repeat;
  background-size: cover;
}
.p-lp .p-sec09 .p-sec09Contents .img {
  max-width: 896px;
  margin: 80px auto;
}
.p-lp .p-sec09 .p-sec09Contents p {
  max-width: 600px;
  margin: 0 auto;
}
.p-lp .p-sec09 .p-sec09Contents p span {
  display: block;
  font-size: 14px;
  font-weight: 300;
}
.p-lp .p-sec09 .p-sec09Contents + .p-sec09Contents {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec09 .c-head02 {
    background: url("../img/sec09_bg_sp.jpg") no-repeat;
    background-size: cover;
  }
  .p-lp .p-sec09 .p-sec09Contents .img {
    margin: 30px auto 20px;
  }
  .p-lp .p-sec09 .p-sec09Contents .img--wide img {
    display: block;
    max-width: calc(100% + 60px);
    margin-left: -30px;
  }
  .p-lp .p-sec09 .p-sec09Contents p {
    max-width: 600px;
    margin: 0 auto;
  }
  .p-lp .p-sec09 .p-sec09Contents p span {
    display: block;
    font-size: 14px;
    font-weight: 300;
  }
  .p-lp .p-sec09 .p-sec09Contents + .p-sec09Contents {
    margin-top: 80px;
  }
}
.p-lp .p-sec10 .c-head02 {
  background: url("../img/sec10_bg.jpg") no-repeat;
  background-size: cover;
}
.p-lp .p-sec10 .p-sec10Contents {
  margin-bottom: 160px;
}
.p-lp .p-sec10 .p-sec10Contents p {
  max-width: 600px;
  margin: 50px auto 40px;
}
.p-lp .p-sec10 .p-sec10Contents .img {
  max-width: 768px;
  margin: 0 auto;
}
.p-lp .p-sec10 .p-sec10Contents--lower {
  margin-bottom: 60px;
}
.p-lp .p-sec10 .p-sec10Slider {
  overflow: hidden;
}
.p-lp .p-sec10 .p-sec10Slider .swiper-wrapper {
  transition-timing-function: linear; /* 一定速度で移動 */
  height: auto;
}
.p-lp .p-sec10 .p-sec10Slider .swiper-slide {
  width: auto;
  height: auto;
}
.p-lp .p-sec10 .p-sec10Slider .swiper-slide img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec10 .c-head02 {
    background: url("../img/sec10_bg_sp.jpg") no-repeat;
    background-size: cover;
  }
  .p-lp .p-sec10 .p-sec10Contents {
    margin-bottom: 80px;
  }
  .p-lp .p-sec10 .p-sec10Contents p {
    margin: 16px auto 30px;
  }
  .p-lp .p-sec10 .p-sec10Contents--lower {
    margin-bottom: 0px;
  }
  .p-lp .p-sec10 .p-sec10Slider {
    overflow: hidden;
  }
  .p-lp .p-sec10 .p-sec10Slider .swiper-wrapper {
    transition-timing-function: linear; /* 一定速度で移動 */
  }
  .p-lp .p-sec10 .p-sec10Slider .swiper-slide {
    width: auto;
  }
  .p-lp .p-sec10 .p-sec10Slider .swiper-slide img {
    width: 100%;
  }
}
.p-lp .p-sec11 {
  margin-top: 200px;
  background: #f7f7f7;
  padding: 100px 0;
}
.p-lp .p-sec11 .p-sec11Intro {
  text-align: center;
  margin: 50px 0;
}
.p-lp .p-sec11 .p-sec11Contents {
  max-width: 1016px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 18px 18px;
}
.p-lp .p-sec11 .p-sec11Contents li {
  width: calc(50% - 9px);
  background: #ffffff;
  padding: 18px 24px;
  border-radius: 10px 10px 0 10px;
  box-sizing: border-box;
}
.p-lp .p-sec11 .p-sec11Contents li .img {
  width: 110px;
}
.p-lp .p-sec11 .p-sec11Contents li p {
  font-size: 18px;
  width: calc(100% - 110px);
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec11 {
    margin-top: 80px;
    padding: 45px 0;
  }
  .p-lp .p-sec11 .p-sec11Intro {
    text-align: center;
    margin: 25px 0 20px;
  }
  .p-lp .p-sec11 .p-sec11Contents li {
    width: calc(100% + 30px);
    padding: 0;
    border-radius: 10px;
    margin: 0 0 15px -15px;
  }
  .p-lp .p-sec11 .p-sec11Contents li .img {
    width: 60px;
  }
  .p-lp .p-sec11 .p-sec11Contents li p {
    font-size: 16px;
    width: calc(100% - 60px);
    padding: 15px 15px 15px 0;
  }
}
.p-lp .p-hikaku {
  padding: 160px 0 200px;
}
.p-lp .p-hikaku .imgWrap {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-lp .p-hikaku {
    padding: 90px 0 50px;
  }
  .p-lp .p-hikaku .imgWrap {
    margin-top: 50px;
    overflow: scroll;
    width: calc(100% + 30px);
  }
  .p-lp .p-hikaku .imgWrap img {
    max-width: 1210px;
  }
}
.p-lp .p-cnv {
  max-width: 1210px;
  margin: 140px auto 200px;
}
.p-lp .p-cnv .p-cnvContents {
  padding: 90px 2% 90px 50%;
  background: url("../img/sec12_bg.jpg") center center no-repeat;
  background-size: cover;
}
.p-lp .p-cnv .p-cnvContents h2 {
  font-size: 38px;
  font-weight: 600;
}
.p-lp .p-cnv .p-cnvContents p {
  margin: 1em 0;
}
.p-lp .p-cnv .p-cnvContents .btnWrap {
  flex-wrap: wrap;
  gap: 16px 16px;
}
.p-lp .p-cnv .p-cnvContents .btnWrap a {
  display: block;
  width: 250px;
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  line-height: 1;
}
.p-lp .p-cnv .p-cnvContents .mail a {
  background: #008537;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
.p-lp .p-cnv .p-cnvContents .mail a img {
  width: 23px;
  margin-right: 14px;
}
.p-lp .p-cnv .p-cnvContents .tel a {
  background: #fff;
  font-size: 27px;
  color: #013b90;
  font-weight: 600;
  pointer-events: none;
}
.p-lp .p-cnv .p-cnvContents .tel a img {
  width: 41px;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .p-lp .p-cnv {
    margin: 0 auto;
    padding: 0 15px;
  }
  .p-lp .p-cnv .p-cnvContents {
    padding: 30px 15px 45px;
    background: url("../img/sec12_bg_sp.jpg") center center no-repeat;
    background-size: cover;
  }
  .p-lp .p-cnv .p-cnvContents h2 {
    font-size: 20px;
  }
  .p-lp .p-cnv .p-cnvContents .btnWrap {
    margin-top: 20px;
  }
  .p-lp .p-cnv .p-cnvContents .btnWrap a {
    width: 100%;
  }
  .p-lp .p-cnv .p-cnvContents .mail a {
    height: 50px;
    margin-bottom: 15px;
  }
}
.p-lp .p-sec12 .p-sec12Head {
  width: 957px;
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.p-lp .p-sec12 .p-sec12Head .textArea h2 {
  font-size: 28px;
  color: #008537;
  font-weight: 500;
  margin-bottom: 1em;
}
.p-lp .p-sec12 .p-sec12Head .textArea .logo {
  width: 434px;
  max-width: 100%;
  transform: translateX(-15px);
}
.p-lp .p-sec12 .p-sec12Head .textArea p {
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 8px;
}
.p-lp .p-sec12 .p-sec12List {
  width: 930px;
  max-width: 100%;
  margin: 70px auto 0;
}
.p-lp .p-sec12 .p-sec12List li {
  align-items: center;
  padding: 24px 10px;
  border-bottom: 1px solid #e8e8e8;
}
.p-lp .p-sec12 .p-sec12List li .head {
  font-size: 20px;
  font-weight: 500;
  width: 280px;
  padding-right: 50px;
}
.p-lp .p-sec12 .p-sec12List li p {
  width: calc(100% - 280px);
}
.p-lp .p-sec12 .p-sec12Caution {
  font-size: 14px;
  color: #9f9f9f;
  width: 930px;
  max-width: 100%;
  margin: 1em auto 0;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec12 .p-sec12Head .textArea {
    text-align: center;
  }
  .p-lp .p-sec12 .p-sec12Head .textArea h2 {
    font-size: 20px;
  }
  .p-lp .p-sec12 .p-sec12Head .textArea .logo {
    width: 315px;
    transform: translateX(0px);
    margin: 0 auto;
  }
  .p-lp .p-sec12 .p-sec12Head .textArea p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 5px;
  }
  .p-lp .p-sec12 .p-sec12Head .img {
    width: 286px;
    margin: 50px auto 0;
  }
  .p-lp .p-sec12 .p-sec12List {
    margin: 70px auto 0;
  }
  .p-lp .p-sec12 .p-sec12List li {
    padding: 20px 0px;
  }
  .p-lp .p-sec12 .p-sec12List li .head {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 6px;
  }
  .p-lp .p-sec12 .p-sec12List li p {
    width: 100%;
  }
  .p-lp .p-sec12 .p-sec12Caution {
    font-size: 14px;
    color: #9f9f9f;
    width: 930px;
    max-width: 100%;
    margin: 1em auto 0;
  }
}
.p-lp .p-made {
  margin-bottom: 110px;
}
.p-lp .p-made .p-madeContents {
  width: 1085px;
  max-width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
}
.p-lp .p-made .p-madeContents .textArea {
  width: 48%;
  padding: 0 60px;
  background: url("../img/sec12_img03.png") no-repeat center center;
  background-size: 190px 183px;
}
.p-lp .p-made .p-madeContents .textArea h2 {
  font-size: 22px;
  font-weight: 500;
  color: #008537;
  letter-spacing: 2px;
  text-align: center;
}
.p-lp .p-made .p-madeContents .textArea h2 span {
  display: block;
  font-size: 12px;
  margin-bottom: 1em;
}
.p-lp .p-made .p-madeContents .textArea p {
  margin-top: 1em;
}
.p-lp .p-made .p-madeContents .imgArea {
  width: 52%;
}
.p-lp .p-made .p-madeContents .imgArea img {
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-lp .p-made {
    margin-bottom: 90px;
  }
  .p-lp .p-made .p-madeContents {
    max-width: calc(100% + 60px);
    margin-left: -30px;
  }
  .p-lp .p-made .p-madeContents .textArea {
    width: 100%;
    padding: 30px;
    background: url("../img/sec12_img03.png") no-repeat center center;
    background-size: 219px 211px;
  }
  .p-lp .p-made .p-madeContents .textArea h2 {
    font-size: 20px;
  }
  .p-lp .p-made .p-madeContents .textArea p {
    margin: 1em 0;
  }
  .p-lp .p-made .p-madeContents .imgArea {
    width: 100%;
    padding: 0 30px 30px;
  }
}
.p-lp .p-sec13 {
  margin-bottom: 200px;
}
.p-lp .p-sec13 .p-sec13Contents {
  width: 1085px;
  max-width: 100%;
  margin: 0 auto;
  border: 2px solid #e8e8e8;
  padding: 60px 80px;
  justify-content: space-between;
  align-items: center;
}
.p-lp .p-sec13 .p-sec13Contents .textArea {
  width: 357px;
  padding-right: 50px;
}
.p-lp .p-sec13 .p-sec13Contents .textArea h2 {
  font-size: 32px;
  font-weight: 400;
  color: #008537;
  letter-spacing: 2px;
}
.p-lp .p-sec13 .p-sec13Contents .textArea p {
  margin-top: 1em;
}
.p-lp .p-sec13 .p-sec13Contents .btnArea {
  flex-wrap: wrap;
  gap: 24px 24px;
  justify-content: space-around;
  width: calc(100% - 357px);
}
.p-lp .p-sec13 .p-sec13Contents .btnArea li {
  width: 250px;
  max-width: 100%;
}
.p-lp .p-sec13 .p-sec13Contents .btnArea li a {
  display: block;
  border: 1px solid;
  border-radius: 50px;
  padding: 0.6em;
  text-align: center;
  position: relative;
  font-weight: 600;
}
.p-lp .p-sec13 .p-sec13Contents .btnArea li a img {
  position: absolute;
  width: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec13 {
    margin-bottom: 90px;
  }
  .p-lp .p-sec13 .p-sec13Contents {
    max-width: calc(100% + 30px);
    padding: 30px 15px;
    margin-left: -15px;
  }
  .p-lp .p-sec13 .p-sec13Contents .textArea {
    width: 100%;
    padding-right: 0;
  }
  .p-lp .p-sec13 .p-sec13Contents .textArea h2 {
    font-size: 20px;
    text-align: center;
  }
  .p-lp .p-sec13 .p-sec13Contents .textArea p {
    margin: 1em 0;
  }
  .p-lp .p-sec13 .p-sec13Contents .btnArea {
    width: 100%;
  }
  .p-lp .p-sec13 .p-sec13Contents .btnArea li {
    width: 100%;
    margin-bottom: 15px;
  }
}
.p-lp .p-sec14 .p-sec14ContentsInner {
  width: 1022px;
  max-width: 100%;
  margin: 0 auto;
}
.p-lp .p-sec14 .p-sec14ContentsInner h2 {
  width: 250px;
  font-size: 24px;
  font-weight: 400;
  color: #008537;
  letter-spacing: 1px;
}
.p-lp .p-sec14 .p-sec14ContentsInner p {
  width: calc(100% - 250px);
}
@media screen and (max-width: 767px) {
  .p-lp .p-sec14 .p-sec14ContentsInner h2 {
    width: 100%;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .p-lp .p-sec14 .p-sec14ContentsInner p {
    width: 100%;
  }
}
.p-lp #patent01,
.p-lp #patent02,
.p-lp #patent03,
.p-lp #patent04,
.p-lp #p-sec02,
.p-lp #p-sec03,
.p-lp #p-sec04,
.p-lp #p-sec05,
.p-lp #p-sec06,
.p-lp #p-sec07,
.p-lp #p-sec08,
.p-lp #p-sec09,
.p-lp #p-sec09,
.p-lp #p-sec10,
.p-lp #p-sec11,
.p-lp #p-sec12,
.p-lp #p-sec13,
.p-lp #p-sec14,
.p-lp #p-cnv {
  scroll-margin-top: 100px;
}
.p-lp a[href$=".pdf"] {
  background: none;
}

/*# sourceMappingURL=style.css.map */
