@charset "UTF-8";
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;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*html*/
body {
  text-align: left;
  position: relative;
}

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

a,
a:visited {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

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

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

.c-green {
  color: #1a7136;
}

/* アニメーション */
@-webkit-keyframes loop-text {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes loop-text {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.btn-more {
  width: 300px;
  /* テキストは普通に表示（中央位置に影響なし） */
  /* 右端のアイコンを絶対配置で寄せる */
}
.btn-more .custom-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; /* テキストを中央に */
  position: relative; /* アイコンを絶対配置にする土台 */
  width: 300px; /* ★指定の幅 */
  padding: 6px 22px;
  border: 2px solid #1a7136;
  background-color: #1a7136;
  color: #fff;
  border-radius: 9999px;
  font-size: 14px;
  text-decoration: none;
}
.btn-more .custom-btn-45 .icon-circle i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.btn-more .btn-text {
  pointer-events: none;
}
.btn-more .icon-circle {
  position: absolute;
  right: 10px; /* ★右寄せ位置 */
  background: #fff;
  color: #1a7136;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
}
.btn-more .custom-btn:hover {
  background-color: transparent;
}
.btn-more .custom-btn:hover .btn-text {
  color: #1a7136;
}
.btn-more .custom-btn:hover .icon-circle {
  background-color: #1a7136;
  color: #fff;
}
.btn-more p {
  color: #888;
  text-align: center;
  font-size: 12px;
  padding-top: 5px;
}

.btn-more-02 {
  width: 350px;
}
.btn-more-02 .custom-btn {
  width: 350px;
}

.btn-more-reverse .custom-btn {
  background-color: #fff;
  border-color: #fff;
  color: #1a7136;
}
.btn-more-reverse .icon-circle {
  background-color: #1a7136;
  color: #fff;
}
.btn-more-reverse .custom-btn:hover {
  background-color: #1a7136;
}
.btn-more-reverse .custom-btn:hover .btn-text {
  color: #fff;
}
.btn-more-reverse .custom-btn:hover .icon-circle {
  background-color: #fff;
  color: #1a7136;
}

.circle-btn {
  width: 30px;
  height: 30px;
  background-color: #1a7136;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.circle-btn .bar {
  position: absolute;
  width: 15px;
  height: 3px;
  background: #fff;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}

.bar.vertical {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* マイナス状態（縦棒が非表示） */
.circle-btn.active .bar.vertical {
  opacity: 0;
}

.menu-item {
  position: relative;
  cursor: pointer;
}

.subMenu {
  width: 100%;
  position: absolute;
  top: 50px;
  right: 0;
  width: 250px;
  display: none;
}
.subMenu-item {
  margin-left: 0 !important;
  width: 250px;
}
.subMenu-item a {
  color: #fff;
  width: 250px;
  padding: 2.5px 15px;
  font-size: 12px;
  background-color: #0b3f47;
  display: block;
}

.subMenu::before {
  content: "";
  position: absolute;
  top: -15px;
  right: 20%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 17.3px 10px;
  display: block;
  border-color: transparent transparent #0b3f47 transparent;
}

header {
  z-index: 50;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  padding: 10px 0;
  transition: 0.3s;
}
header.header-active {
  background-color: rgba(26, 113, 54, 0.5);
}
header .header-main {
  width: 90%;
  max-width: 1280px;
  padding: 0;
  align-items: center;
}
header .logo {
  width: 150px;
}
header .navigation {
  width: 80%;
}
header .navigation ul {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
header .navigation ul li {
  margin-left: 2.5%;
}
header .navigation ul li span {
  color: #fff;
}

header.page .navigation ul li a {
  color: #fff;
}

header.single .navigation ul li a {
  color: #000;
}

footer .footer-main {
  width: 90%;
  max-width: 1280px;
}
footer .footer-main-img {
  width: 200px;
}
footer .footer-main-nav {
  width: 100%;
  margin-bottom: 2.5%;
}
footer .footer-main-nav a {
  padding-left: 2.5%;
  padding-right: 2.5%;
  color: #888;
  text-decoration: underline;
}
footer .footer-copyright {
  padding: 10px 0;
  color: #888;
}

main .page-single-subtitle span {
  margin-bottom: 10px;
  color: #1a7136;
}
main .page-single-subtitle strong {
  color: #666;
}
main .page-single-subtitle::after {
  content: "";
  width: 30px;
  height: 3px;
  background-color: #1a7136;
  display: block;
  margin: 20px auto 0 auto;
}
main .bnr-holos {
  width: 90%;
  max-width: 980px;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#03543d),
    to(#037a5a)
  );
  background-image: -webkit-linear-gradient(left, #03543d, #037a5a);
  background-image: linear-gradient(90deg, #03543d, #037a5a);
  padding: 30px 50px;
  border-radius: 20px;
}
main .bnr-holos-link {
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
main .bnr-holos-link-left {
  width: 60%;
  color: #fff;
}
main .bnr-holos-link-left strong {
  color: #95e9bf;
}
main .bnr-holos-link-right {
  width: 35%;
}
main .bnr-holos-link-right .btn-more {
  width: 100%;
}
main .bnr-holos-link-right .btn-more .custom-btn {
  width: 100%;
}
main .business {
  width: 90%;
  max-width: 980px;
}
main .business-sub {
  width: 47.5%;
  padding: 40px;
  border: 1px solid #dbdbdb;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 5%;
}
main .business-sub-img {
  background: -webkit-linear-gradient(
    315deg,
    #197035 0%,
    #5a9427 50%,
    #e7e608 100%
  );
  background: linear-gradient(135deg, #197035 0%, #5a9427 50%, #e7e608 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
}
main .business-sub strong {
  margin-bottom: 20px;
}
main .business-sub p {
  line-height: 1.4;
  padding-bottom: 40px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: block;
  color: #888;
}
main .holos {
  background-color: #1a7136;
  color: #fff;
  width: 100%;
  padding: 5% 0;
  border-radius: 50px;
}
main .holos-main {
  width: 90%;
  max-width: 980px;
}
main .holos-main-title-img {
  width: 400px;
  margin-bottom: 20px;
}
main .holos-main-title h2 {
  color: #fff;
  margin-bottom: 20px;
}
main .holos-main-center {
  margin-bottom: 40px;
  text-align: center;
}
main .products {
  width: 90%;
  max-width: 980px;
}
main .products-title-img {
  margin-bottom: 20px;
  width: 80%;
}
main .products-title h2 {
  color: #888;
}
main .products-box {
  width: 100%;
}

main .products-box .products-box-sub-category {
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 5px solid #1a7136;
}
main .products-box .products-box-sub-category:last-of-type {
  margin-top: 40px;
  border-color: #5eaad9;
}
main .products-box-sub {
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100% auto;
  margin-bottom: 2.5%;
  padding: 50px 50px;
  background-color: #dbdbdb;
  cursor: pointer;
  position: relative;
}
main .products-box-sub .btn-plus {
  position: absolute;
  right: 2.5%;
  bottom: 2.5%;
  z-index: 10;
}
main .products-box-sub strong {
  color: #1a7136;
}
main .products-box-sub p {
  color: #888;
}
main .products-box .bg-01 {
  background-image: url("../img/company/img-bnr-01.png");
}
main .products-box .bg-02 {
  background-image: url("../img/company/img-bnr-02.png");
}
main .products-box .bg-03 {
  background-image: url("../img/company/img-bnr-03.png");
}
main .products-box .bg-04 {
  background-image: url("../img/company/img-bnr-04.png");
}
main .products-box .bg-05 {
  background-image: url("../img/company/img-bnr-05.png");
  background-position: right center;
}
main .products-box .bg-06 {
  background-image: url("../img/company/img-bnr-06.png");
}
main .products-box .bg-07 {
  background-image: url("../img/company/img-bnr-07.png");
}
main .products-box .bg-08 {
  background-image: url("../img/company/img-bnr-08.png");
  background-position: bottom right;
}
main .products-box .accordion-box {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
main .products-box .accordion-box-wrap {
  padding: 0 0 5% 0;
}
main .products-box .accordion-box-wrap .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
main .products-box .accordion-box-wrap .slick-slide {
  height: auto !important;
}
main .products-box .accordion-box-wrap ul li {
  border-radius: 10px;
  padding: 0 0 0 0;
  overflow: hidden;
  border: 1px solid #dbdbdb;
  margin: 0 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
main .products-box .accordion-box-wrap ul li .img img {
  display: block; /* inline-block の余白を消す */
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; /* 親のサイズに収める */
  border-radius: 0; /* 親に丸みがある場合は0でOK */
}
main .products-box .accordion-box-wrap ul li span {
  padding: 0 5%;
  font-size: 16px;
  line-height: 1.6;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 739px) {
  main .products-box .accordion-box-wrap ul li span {
    margin-bottom: 2.5%;
  }
}
main .products-box .accordion-box-wrap ul li p {
  line-height: 1.8;
  font-size: 13px;
  padding: 0 5%;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
main .products-box .accordion-box-wrap ul li .btn {
  width: 100%;
  margin-bottom: 5%;
}
main .products-box .accordion-box-wrap ul li .btn a {
  display: block;
  width: 70%;
  line-height: 1.4;
  font-size: 13px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 5px 0;
  border: 1px solid #000;
  border-radius: 10px;
}
main .products-box .accordion-box-wrap ul li .btn a:hover {
  background-color: #000;
  color: #fff;
}

.toppage .fv-01,
.toppage .fv-02 {
  min-height: 100vh;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.toppage .bg-video {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.toppage .fv-01 {
  position: relative;
}
.toppage .fv-01 .overlay {
  width: 100%;
  margin-top: -100vh;
}
.toppage .fv-01-main {
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 80%;
  padding-top: 10%;
  padding-bottom: 10%;
}
.toppage .fv-01-main-title {
  position: -webkit-sticky;
  position: sticky;
  top: 40vh; /* 仮の中央付近。ズレても違和感が少ない値 */
  left: 0;
  width: 45%;
  z-index: 10;
  color: #fff;
  -webkit-transition: top 0s;
  transition: top 0s; /* 位置変更でアニメが出ないように */
  color: #fff;
}
.toppage .fv-01-main-title h2 {
  margin-bottom: 10px;
}
.toppage .fv-01-main-txt {
  width: 45%;
  padding-top: 120vh;
  z-index: 10;
}
.toppage .fv-01-main-txt p {
  color: #fff;
  padding-bottom: 2em;
  line-height: 1.8;
  font-size: 80%;
}
.toppage .fv-01-main-txt p:last-child {
  padding-bottom: 0;
}
.toppage .fv-02-main {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.toppage .fv-01::before,
.toppage .fv-02::before {
  content: "";
  position: absolute; /* 絶対配置 */
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.toppage .wellness {
  width: 90%;
  max-width: 980px;
}
.toppage .wellness .play-btn {
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  background-color: #1a7136;
  text-align: center;
  cursor: pointer;
  border: 1px solid #1a7136;
  -webkit-transition: color 0.3s, -webkit-transform 0.2s;
  transition: color 0.3s, -webkit-transform 0.2s;
  transition: color 0.3s, transform 0.2s;
  transition: color 0.3s, transform 0.2s, -webkit-transform 0.2s;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.toppage .wellness .volume-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; /* 横方向中央揃え */
  margin: 20px 0;
}
.toppage .wellness #volumeSlider {
  width: 20%; /* 必要に応じて幅を調整 */
}
.toppage .tokusetsu {
  padding: 5% 0;
  background-color: #eef7f2;
}
.toppage .tokusetsu-title {
  width: 100%;
  max-width: 980px;
}
.toppage .tokusetsu-title-img {
  margin-bottom: 20px;
  width: 40%;
}
.toppage .tokusetsu-title h2 {
  color: #888;
}
.toppage .tokusetsu p {
  text-align: center;
  padding-bottom: 20px;
  color: #888;
}
.toppage .tokusetsu strong {
  margin-bottom: 20px;
}
.toppage .company {
  background-image: url("../img/company/bg-mission.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10% 0;
}
.toppage .company-main {
  width: 90%;
  max-width: 1280px;
  color: #fff;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.toppage .company-main-left {
  width: 40%;
}
.toppage .company-main-right {
  width: 45%;
}
.toppage .company-main-right p {
  padding-bottom: 2em;
  line-height: 2.2;
  font-size: 90%;
}
.toppage .company-main-right p:last-child {
  padding-bottom: 0;
}
.toppage .news {
  width: 90%;
  max-width: 1280px;
}
.toppage .news-nav ul {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.toppage .news-nav ul li {
  margin-left: 20px;
  padding: 1.5px 20px;
  border-radius: 30px;
  border: 1px solid #dbdbdb;
}
.toppage .news-box {
  width: 100%;
}
.toppage .news-box ul {
  border-top: 1px solid #dbdbdb;
}
.toppage .news-box ul li {
  padding: 25px 0;
  border-bottom: 1px solid #dbdbdb;
}
.toppage .news-box-time {
  width: 10%;
}
.toppage .news-box-category {
  width: 10%;
  text-align: center;
  padding: 2px 10px;
  border-radius: 30px;
  border: 1px solid #dbdbdb;
}
.toppage .news-box-title {
  width: 75%;
}

.page-fv {
  margin-bottom: 2.5%;
  position: relative;
}
.page-fv-title {
  position: absolute;
  width: 80%;
  margin-left: 10%;
  top: 35%;
  color: #fff;
}
.page-fv-title span,
.page-fv-title h2 {
  padding-bottom: 20px;
}
.page-breadcrumb {
  width: 90%;
  max-width: 1280px;
}
.page-breadcrumb a {
  padding-right: 20px;
  display: inline-block;
}
.page-breadcrumb a::after {
  content: "/";
  display: inline-block;
  padding-left: 20px;
}
.page-products-title {
  margin-bottom: 1.5%;
  color: #333;
}
.page-products-titlebox {
  position: relative;
  overflow: hidden;
}
.page-products-titlebox p {
  text-align: center;
  padding-bottom: 5%;
  color: #333;
}
.page-products-titlebox-scroll {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.page-products-titlebox-scroll-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop-text 50s linear infinite;
  animation: loop-text 50s linear infinite;
}
.page-products-titlebox-scroll-wrapper .double-content {
  display: inline-block;
  font-size: 3rem;
  line-height: 1;
  white-space: nowrap;
  color: rgba(210, 210, 210, 0.5);
  font-weight: 700;
}
.page-products-box {
  width: 100%;
}
.page-products-box-title {
  padding-bottom: 20px;
  color: #333;
  width: 80%;
  margin-bottom: 20px;
}
.page-products-box-title::after {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #666;
  display: block;
  margin-top: 20px;
}
.page-products-box-desc {
  color: #333;
  width: 80%;
  margin-bottom: 40px;
}
.page-products-box-slide .slick-list {
  padding: 0 0 0 10%;
}
.page-products-box-slide .slick-track {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-left: 0;
}
.page-products-box-slide .slick-slide {
  height: auto !important;
}
.page-products-box-sub {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 10px;
}
.page-products-box-sub-img {
  border-radius: 30px;
  margin-bottom: 20px;
}
.page-products-box-sub-title {
  margin-bottom: 2.5%;
  padding: 0 5%;
  color: #333;
  line-height: 1.6;
}
.page-products-box-sub p {
  padding: 0 5% 5% 5%;
  line-height: 1.8;
  color: #888;
}
.page-products-box-sub .btn-more {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
}
.page-products-box-sub .btn-more .custom-btn {
  width: 100%;
  border: 2px solid #ddd;
}
.page-products-news {
  width: 90%;
  max-width: 1280px;
}
.page-products-news-sub {
  margin-bottom: 5%;
}
.page-products-news-sub-img {
  width: 25%;
}
.page-products-news-sub-txt {
  width: 70%;
}
.page-products-news-sub-txt .sub {
  color: #1a7136;
}
.page-products-news-sub-txt .title {
  margin-bottom: 1.5%;
  margin-top: 0.5%;
}
.page-products-news-sub-txt p {
  padding-bottom: 2.5%;
}
.page-products-news-sub:last-child {
  margin-bottom: 0;
}
.page-products-news-more {
  margin-top: 2.5%;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 2.5%;
}
.page-products-news-more p {
  color: #666;
}
.page-company-mission {
  background-image: url("../img/company/bg-mission.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 15% 5%;
}
.page-company-mission-wrap {
  width: 90%;
  max-width: 1280px;
  color: #fff;
}
.page-company-mission-left {
  width: 45%;
}
.page-company-mission-right {
  width: 45%;
}
.page-company-mission-right p {
  padding-bottom: 2em;
}
.page-company-mission-right p:last-child {
  padding-bottom: 0;
}
.page-company-overview {
  width: 80%;
  max-width: 980px;
}
.page-company-overview ul li:nth-child(1) {
  width: 25%;
  border-top: 1px solid #1a7136;
  color: #1a7136;
  padding: 5% 0 5% 5%;
  font-weight: 700;
}
.page-company-overview ul li:nth-child(2) {
  width: 75%;
  border-top: 1px solid #dbdbdb;
  padding: 5% 5%;
  color: #333;
}
.page-company-overview ul li.last:nth-child(1) {
  border-bottom: 1px solid #1a7136;
}
.page-company-overview ul li.last:nth-child(2) {
  border-bottom: 1px solid #dbdbdb;
}
.page-company-access {
  background-color: #f6f6f6;
  padding: 5% 0;
}
.page-company-access-main {
  width: 80%;
  max-width: 980px;
}
.page-company-access-box-left {
  width: 47.5%;
}
.page-company-access-box-left span {
  font-size: 110%;
}
.page-company-access-box-left-caution {
  padding: 15px;
  margin: 15px 0 0 0;
  background-color: #fff;
}
.page-company-access-box-left-caution ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.page-company-access-box-left-list {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.page-company-access-box-left-list ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.page-company-access-box-right {
  width: 47.5%;
}
.page-company-access-box-right iframe {
  width: 100%;
  height: 400px;
}
.page-company-bnr {
  width: 80%;
  max-width: 980px;
}
.page-business {
  width: 90%;
  max-width: 980px;
}
.page-business h3 {
  background: -webkit-linear-gradient(
    315deg,
    #197035 0%,
    #5a9427 50%,
    #e7e608 100%
  );
  background: linear-gradient(135deg, #197035 0%, #5a9427 50%, #e7e608 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
  font-size: 4vw;
  line-height: 6vw;
}
.page-business-txt {
  font-size: 1.2rem;
  margin-top: 1em;
}
.page-business .for-medical {
  padding-top: 2.5%;
  margin-top: 2.5%;
  border-top: 1px dotted #ccc;
}
.page-business-link {
  margin-top: 5%;
  margin-bottom: 10%;
}
.page-business-link h3 {
  font-size: 3vw;
  line-height: 5vw;
}
.page-business-link ul {
  margin-top: 3.5%;
}
.page-business-link ul li {
  width: 31.6666666667%;
  margin-bottom: 2.5%;
}
.page-business-link ul::after {
  content: "";
  width: 31.6666666667%;
  display: block;
}
.page-customer-harassment {
  width: 90%;
  max-width: 980px;
}
.page-customer-harassment h4 {
  padding-top: 2em;
  margin-bottom: 0.5em;
}
.page-customer-harassment p {
  padding-bottom: 1.5em;
}
.page-customer-harassment ol li {
  list-style-type: decimal;
  margin-bottom: 1em;
  margin-left: 1em;
}
.page-contact {
  width: 80%;
  max-width: 880px;
}
.page-contact-form ul {
  padding: 25px 0;
}
.page-contact-form ul li:nth-child(1) {
  width: 100%;
  margin-bottom: 10px;
}
.page-contact-form ul li:nth-child(1) span {
  color: #fff;
  font-size: 12px;
  padding: 2px 5px 3px 5px;
  background-color: #1a7136;
  margin-left: 10px;
  border-radius: 5px;
}
.page-contact-form ul li:nth-child(2) {
  width: 100%;
}
.page-contact-form ul li:nth-child(2) select {
  border: 1px solid #dbdbdb;
  font-size: 14px;
  line-height: 25px;
  height: 45px;
  padding: 10px 10px;
  width: 100%;
}
.page-contact-form ul li:nth-child(2) input[type="text"],
.page-contact-form ul li:nth-child(2) input[type="email"],
.page-contact-form ul li:nth-child(2) input[type="tel"] {
  border: 1px solid #dbdbdb;
  font-size: 14px;
  line-height: 25px;
  height: 45px;
  padding: 10px 10px;
  width: 100%;
}
.page-contact-form ul li:nth-child(2) textarea {
  width: 100%;
  height: 200px;
  padding: 10px 10px;
  border: 1px solid #dbdbdb;
  font-size: 14px;
  line-height: 25px;
}
.page-contact-form-btn .submit-pill {
  position: relative;
  display: block;
  width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.page-contact-form-btn .submit-pill input {
  background: #1a7136;
  color: #fff;
  border: none;
  padding: 10px 60px 10px 32px; /* 右側に余白を多めに取る */
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid #1a7136;
  display: block;
  width: 100%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.page-contact-form-btn .submit-pill::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: block;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.page-contact-form-btn .submit-pill::before {
  content: "→";
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #006c3a;
  font-size: 18px;
  z-index: 2;
  display: block;
  background-color: transparent;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.page-contact-form-btn .submit-pill input:hover {
  background-color: transparent;
  color: #1a7136;
}
.page-contact-form-btn .submit-pill:hover::after {
  background-color: #1a7136;
}
.page-contact-form-btn .submit-pill:hover::before {
  color: #fff;
}

/* @media (max-device-width: 980px) {*/
/* タブレット スマホ */
@media (max-width: 739px) {
  html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
  }
  body {
    font-size: 4vw;
    line-height: 6vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  input[type="button"],
  button,
  select {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #000;
  }
  .btn-more {
    width: 100%;
  }
  .btn-more .custom-btn {
    width: 100%;
    padding: 12px 22px;
  }
  .btn-more-02 {
    width: 100%;
  }
  .btn-more-02 .custom-btn {
    width: 100%;
  }
  header {
    z-index: 100;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 10px 0;
  }
  header .header-main {
    width: 90%;
    max-width: 1280px;
    padding: 10px 0;
  }
  header .logo {
    width: 100px;
  }
  .drawer-nav-main {
    width: 80%;
    margin: 2.5% auto 0 auto;
  }
  .drawer-nav-main ul li {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
  .drawer-nav-main ul li a {
    color: #fff;
  }
  .drawer-nav-main ul li span {
    color: #fff;
  }
  .drawer-nav-main ul li .sub {
    margin-top: 1em;
  }
  .drawer-nav-main ul li .sub-item {
    margin-left: 1em;
  }
  footer .footer-main {
    width: 90%;
    max-width: 1280px;
  }
  footer .footer-main-img {
    /*
    width: 100%;
    */
    padding: 0 30%;
    margin-bottom: 5%;
  }
  footer .footer-main-nav {
    width: 100%;
    text-align: center;
  }
  footer .footer-main-nav a {
    padding-left: 10px;
    padding-right: 10px;
    color: #666666;
    text-decoration: underline;
  }
  footer .footer-copyright {
    padding: 10px 0;
    color: #666666;
  }
  main .business {
    width: 90%;
    max-width: 90%;
  }
  main .business-sub {
    width: 100%;
    padding: 5%;
    margin-bottom: 7.5%;
    border: 1px solid #dbdbdb;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  main .business-sub strong {
    margin-top: 0;
    margin-bottom: 5%;
  }
  main .business-sub p {
    line-height: 1.4;
    padding-bottom: 5%;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: block;
  }
  main .business-sub:last-child {
    margin-bottom: 0;
  }
  main .bnr-holos {
    width: 90%;
    max-width: 90%;
    background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#03543d),
      to(#037a5a)
    );
    background-image: -webkit-linear-gradient(left, #03543d, #037a5a);
    background-image: linear-gradient(90deg, #03543d, #037a5a);
    padding: 5%;
    border-radius: 20px;
  }
  main .bnr-holos-link {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  main .bnr-holos-link-left {
    width: 100%;
    margin-bottom: 5%;
    color: #fff;
  }
  main .bnr-holos-link-right {
    width: 100%;
  }
  main .bnr-holos-link-right .btn-more {
    width: 100%;
  }
  main .holos {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
  main .holos-main-title-img {
    width: 70%;
  }
  main .holos-main-center {
    margin-bottom: 5%;
    text-align: left;
  }
  main .products {
    width: 100%;
    max-width: 100%;
  }
  main .products-box {
    width: 100%;
  }
  main .products-box .products-box-sub-category {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid #1a7136;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  main .products-box-sub {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    padding: 30% 5% 5% 5%;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    background-color: #dbdbdb;
    position: relative;
    border: 1px solid #dbdbdb;
  }
  main .products-box-sub strong {
    margin-bottom: 2.5%;
    z-index: 5;
    display: block;
    position: relative;
  }
  main .products-box-sub p {
    z-index: 5;
    display: block;
    position: relative;
  }
  main .products-box-sub .btn-plus {
    z-index: 10;
  }
  main .products-box-sub::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background-color: rgba(255, 255, 255, 0.75);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 2;
  }
  .toppage .bg-video {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 220vh;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 0;
  }
  .toppage .fv-01,
  .toppage .fv-02 {
    min-height: auto;
    overflow: hidden;
  }
  .toppage .fv-01 {
    position: relative;
  }
  .toppage .fv-01 .overlay {
    width: 100%;
    padding-top: 25%;
    padding-bottom: 25%;
    margin-top: 0;
    min-height: 150vh;
  }
  .toppage .fv-01-main {
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 90%;
    padding-top: 20%;
    padding-bottom: 10%;
  }
  .toppage .fv-01-main-title {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    z-index: 10;
    color: #fff;
  }
  .toppage .fv-01-main-title h2 {
    margin-bottom: 10px;
  }
  .toppage .fv-01-main-title p {
    font-size: 3vw;
    line-height: 2.2;
  }
  .toppage .fv-01-main-txt {
    width: 100%;
    padding-top: 20%;
    z-index: 10;
  }
  .toppage .fv-01-main-txt p {
    color: #fff;
    padding-bottom: 1.5em;
    font-size: 3vw;
    line-height: 2.2;
  }
  .toppage .fv-01-main-txt p:last-child {
    padding-bottom: 0;
  }
  .toppage .fv-02 .overlay {
    padding-top: 35%;
  }
  .toppage .fv-02-main {
    padding-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .toppage .wellness #volumeSlider {
    width: 50%; /* 必要に応じて幅を調整 */
  }
  .toppage .tokusetsu {
    width: 100%;
    padding: 10% 5%;
  }
  .toppage .tokusetsu p {
    text-align: left;
  }
  .toppage .company {
    background-image: url("../img/company/bg-mission.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 10% 0;
  }
  .toppage .company-main {
    width: 90%;
    max-width: 980px;
    color: #fff;
  }
  .toppage .company-main-left {
    width: 100%;
    padding-top: 0%;
    margin-bottom: 5%;
  }
  .toppage .company-main-right {
    width: 100%;
  }
  .toppage .company-main-right p {
    padding-bottom: 2em;
  }
  .toppage .company-main-right p:last-child {
    padding-bottom: 0;
  }
  .toppage .news {
    width: 90%;
    max-width: 90%;
  }
  .toppage .news-nav ul {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .toppage .news-nav ul li {
    margin-left: 2.5%;
    padding: 1.5px 10px;
    border-radius: 30px;
    border: 1px solid #dbdbdb;
  }
  .toppage .news-box {
    width: 100%;
  }
  .toppage .news-box ul {
    border-top: 1px solid #dbdbdb;
  }
  .toppage .news-box ul li {
    padding: 5% 0;
    border-bottom: 1px solid #dbdbdb;
  }
  .toppage .news-box-time {
    width: 35%;
  }
  .toppage .news-box-category {
    width: 40%;
    margin-right: 25%;
    text-align: center;
    padding: 2px 10px;
    border-radius: 30px;
    border: 1px solid #dbdbdb;
  }
  .toppage .news-box-title {
    margin-top: 2.5%;
    width: 100%;
  }
  .page-fv {
    overflow: hidden;
    margin-bottom: 5%;
    position: relative;
  }
  .page-fv img {
    width: 150%;
    max-width: 150%;
    margin-left: -25%;
    display: block;
    height: auto;
  }
  .page-fv-title {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 35%;
    margin-left: 0;
    color: #fff;
  }
  .page-fv-title span,
  .page-fv-title h2 {
    padding-bottom: 10px;
  }
  .page-breadcrumb {
    width: 90%;
    max-width: 1280px;
  }
  .page-breadcrumb a {
    padding-right: 10px;
    display: inline-block;
  }
  .page-breadcrumb a::after {
    content: "/";
    display: inline-block;
    padding-left: 10px;
  }
  .page-products-subtitle span {
    margin-bottom: 10px;
    color: #1a7136;
  }
  .page-products-subtitle strong {
    color: #666;
  }
  .page-products-subtitle::after {
    content: "";
    width: 30px;
    height: 3px;
    background-color: #1a7136;
    display: block;
    margin: 20px auto 0 auto;
  }
  .page-products-title {
    margin-bottom: 1.5%;
    color: #333;
  }
  .page-products-titlebox {
    position: relative;
    overflow: hidden;
  }
  .page-products-titlebox p {
    text-align: left;
    padding: 0 5% 5% 5%;
    color: #333;
  }
  .page-products-titlebox-scroll {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
  }
  .page-products-titlebox-scroll-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: loop-text 50s linear infinite;
    animation: loop-text 50s linear infinite;
  }
  .page-products-titlebox-scroll-wrapper .double-content {
    display: inline-block;
    font-size: 3rem;
    line-height: 1;
    white-space: nowrap;
    color: rgba(210, 210, 210, 0.5);
    font-weight: 700;
  }
  .page-products-box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 5%;
  }
  .page-products-box-title {
    padding-bottom: 20px;
    color: #333;
    width: 90%;
    margin-bottom: 5%;
  }
  .page-products-box-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #666;
    display: block;
    margin-top: 20px;
  }
  .page-products-box-desc {
    color: #333;
    width: 90%;
    margin-bottom: 7.5%;
  }
  .page-products-box-slide {
    margin-bottom: 10%;
  }
  .page-products-box-slide .slick-list {
    padding: 0 0 0 10%;
  }
  .page-products-box-slide .slick-track {
    margin-left: 0;
  }
  .page-products-box-sub {
    margin: 0 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .page-products-box-sub-img {
    border-radius: 30px;
    margin-bottom: 20px;
  }
  .page-products-box-sub-title {
    margin-bottom: 2.5%;
    padding: 0 5%;
    color: #333;
  }
  .page-products-box-sub p {
    padding: 0 5% 5% 5%;
    line-height: 1.8;
    color: #888;
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .page-products-box-sub .btn-more {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-products-box-sub .btn-more .custom-btn {
    width: 100%;
    border: 2px solid #ddd;
  }
  .page-products-news {
    width: 90%;
    max-width: 90%;
  }
  .page-products-news-sub {
    margin-bottom: 10%;
  }
  .page-products-news-sub-img {
    width: 100%;
    margin-bottom: 5%;
  }
  .page-products-news-sub-txt {
    width: 100%;
  }
  .page-products-news-sub-txt .sub {
    color: #1a7136;
  }
  .page-products-news-sub-txt .title {
    margin-bottom: 1.5%;
    margin-top: 0.5%;
  }
  .page-products-news-sub-txt p {
    padding-bottom: 5%;
  }
  .page-products-news-sub:last-child {
    margin-bottom: 0;
  }
  .page-products-news-more {
    margin-top: 5%;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 5%;
  }
  .page-products-news-more p {
    color: #666;
  }
  .page-company-mission {
    background-image: url("../img/company/bg-mission.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 15% 5%;
  }
  .page-company-mission-wrap {
    width: 90%;
    max-width: 1280px;
    color: #fff;
  }
  .page-company-mission-left {
    width: 100%;
    margin-bottom: 5%;
  }
  .page-company-mission-right {
    width: 100%;
  }
  .page-company-mission-right p {
    padding-bottom: 2em;
  }
  .page-company-mission-right p:last-child {
    padding-bottom: 0;
  }
  .page-company-overview {
    width: 90%;
    max-width: 980px;
  }
  .page-company-overview ul {
    border-top: 1px solid #dbdbdb;
    padding: 20px 0;
    position: relative;
  }
  .page-company-overview ul li:nth-child(1) {
    width: 100%;
    border-top: none;
    color: #1a7136;
    padding: 0 0 5px 10px;
    font-weight: 700;
  }
  .page-company-overview ul li:nth-child(2) {
    width: 100%;
    border-top: none;
    padding: 5px 10px 0 10px;
    color: #333;
  }
  .page-company-overview ul li.last:nth-child(1) {
    border-bottom: none;
  }
  .page-company-overview ul li.last:nth-child(2) {
    border-bottom: none;
  }
  .page-company-overview ul.last-ul {
    border-bottom: 1px solid #dbdbdb;
  }
  .page-company-overview ul::before {
    content: "";
    width: 100px;
    height: 1px;
    background-color: #1a7136;
    position: absolute;
    left: 0;
    top: -1px;
    display: block;
  }
  .page-company-overview ul.last-ul::after {
    content: "";
    width: 100px;
    height: 1px;
    background-color: #1a7136;
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
  }
  .page-company-access {
    background-color: #f6f6f6;
    padding: 10% 0;
  }
  .page-company-access-main {
    width: 90%;
    max-width: 980px;
  }
  .page-company-access-box-left {
    width: 100%;
  }
  .page-company-access-box-left span {
    font-size: 110%;
    margin-bottom: 5px;
  }
  .page-company-access-box-left-caution {
    padding: 15px;
    margin: 15px 0 0 0;
    background-color: #fff;
  }
  .page-company-access-box-left-caution ul li {
    text-indent: -1em;
    padding-left: 1em;
  }
  .page-company-access-box-left-list {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }
  .page-company-access-box-left-list ul li {
    text-indent: -1em;
    padding-left: 1em;
  }
  .page-company-access-box-right {
    width: 100%;
  }
  .page-company-access-box-right iframe {
    width: 100%;
    height: 200px;
  }
  .page-company-bnr {
    width: 80%;
    max-width: 980px;
  }
  .page-business h3 {
    font-size: 7vw;
    line-height: 10vw;
  }
  .page-business .for-medical {
    padding-top: 5%;
    margin-top: 5%;
    border-top: 1px dotted #ccc;
  }
  .page-business-link {
    padding-top: 5%;
    margin-top: 5%;
    border-top: 1px dotted #ccc;
  }
  .page-business-link h3 {
    font-size: 5vw;
    line-height: 8vw;
  }
  .page-business-link ul {
    margin-top: 3.5%;
  }
  .page-business-link ul li {
    width: 100%;
    margin-bottom: 5%;
  }
  .page-business-link ul::after {
    display: none;
  }
  .page-contact {
    width: 90%;
    max-width: 880px;
  }
  .page-contact-form ul {
    padding: 5% 0;
  }
  .page-contact-form ul li:nth-child(1) {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-contact-form ul li:nth-child(1) span {
    color: #fff;
    font-size: 12px;
    padding: 2px 5px;
    background-color: #1a7136;
    margin-left: 10px;
  }
  .page-contact-form ul li:nth-child(2) {
    width: 100%;
  }
  .page-contact-form ul li:nth-child(2) select {
    border: 1px solid #dbdbdb;
    font-size: 14px;
    line-height: 25px;
    height: 45px;
    padding: 10px 10px;
    width: 100%;
  }
  .page-contact-form ul li:nth-child(2) input[type="text"],
  .page-contact-form ul li:nth-child(2) input[type="email"],
  .page-contact-form ul li:nth-child(2) input[type="tel"] {
    border: 1px solid #dbdbdb;
    font-size: 14px;
    line-height: 25px;
    height: 45px;
    padding: 10px 10px;
    width: 100%;
  }
  .page-contact-form ul li:nth-child(2) textarea {
    width: 100%;
    height: 200px;
    padding: 10px 10px;
    border: 1px solid #dbdbdb;
    font-size: 14px;
    line-height: 25px;
  }
  .page-contact-form-btn .submit-pill {
    position: relative;
    display: block;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-contact-form-btn .submit-pill input {
    background: #1a7136;
    color: #fff;
    border: none;
    padding: 18px 60px 18px 32px; /* 右側に余白を多めに取る */
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid #1a7136;
    display: block;
    width: 100%;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .page-contact-form-btn .submit-pill::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: block;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .page-contact-form-btn .submit-pill::before {
    content: "→";
    position: absolute;
    right: 28px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #006c3a;
    font-size: 18px;
    z-index: 2;
    display: block;
    background-color: transparent;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .page-contact-form-btn .submit-pill input:hover {
    background-color: transparent;
    color: #1a7136;
  }
  .page-contact-form-btn .submit-pill:hover::after {
    background-color: #1a7136;
  }
  .page-contact-form-btn .submit-pill:hover::before {
    color: #fff;
  }
}
