/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap");
* {
  box-sizing: border-box;
}

:root {
  --color-green: #14aa3b;
  --color-gray: #666;
  --bg-green: #14aa3b;
  --bg-mint: #f8faf9;
  --bg-gray: #666;
  --font-Jost: "Jost", sans-serif;
  --font-zen-kaku-gothic-new: "Zen Kaku Gothic New", sans-serif;
  --font-Shippori_Mincho: "Shippori Mincho B1", serif;
}

.font--Jost {
  font-family: "Jost", sans-serif;
}
.font--zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.font--font-Shippori_Mincho {
  font-family: "Shippori Mincho B1", serif;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.6;
}

:where(html:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

:where(figure:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.01rem;
  color: #000;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 47.9375em) {
  body {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}

#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 32rem;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  body {
    min-width: 120rem;
  }
  body #cm-header {
    width: 120rem;
  }
  body #wrapper {
    max-width: 120rem;
  }
}
.w-brall {
  word-break: break-all;
}

/* ---------- START ANCHORLINK ---------- */
a {
  color: #000;
  text-decoration: underline;
  background-color: transparent;
}
a:hover, a:active, a:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  a:hover img {
    opacity: 0.8;
  }
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #000;
}
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/*---------- START HOVER IMG  ----------*/
.ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

/* ----------  START code set ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}

pre,
code,
kbd,
samp,
var,
.font_mono {
  font-size: 1.3rem;
  line-height: 1.6;
}

pre {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  overflow-x: auto;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
}

button,
input[type=submit],
input[type=button] {
  transition: all 0.3s ease;
  font-family: var(--font-yu-gothic);
}

picture {
  display: block;
  line-height: 1.6;
}

figure {
  margin: 0;
  padding: 0;
}

.white-space_pre-wrap {
  display: grid;
  width: 100%;
  white-space: pre-line;
}

/*====================================================================================
2. START COMMON CONTAINER.
====================================================================================*/
.container {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 114rem;
    padding: 0 2rem;
  }
  .container--md {
    max-width: 83rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 1.2rem;
  }
}

/*====================================================================================
3. START COMMON HEADER
====================================================================================*/
.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

#cm-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s;
  z-index: 999;
}
#cm-header a {
  font-weight: 500;
  text-decoration: none !important;
}
#cm-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cm-header .header-inner__logo {
  position: relative;
  width: 39rem;
  z-index: 99;
}
#cm-header .header-inner__right {
  width: calc(100% - 40rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
#cm-header.fixed {
  background: #fff;
  box-shadow: 0 0 5px #000;
  animation: scrolltop 0.8s;
  animation-iteration-count: 1;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
@media only screen and (min-width: 768px) {
  #cm-header .header-inner__logo {
    margin-left: 1%;
  }
  #cm-header .header-inner__right {
    gap: 4.5rem;
  }
  #cm-header .btn-contact__link {
    width: 16rem;
    height: 15rem;
    transition: height 0.2s ease-in-out;
    margin-bottom: -5rem;
  }
  #cm-header.fixed .btn-contact__link {
    height: 10rem;
    transition: height 0.2s ease-in-out;
    margin-bottom: 0;
  }
  #cm-header.fixed .l-menu_contents .gnav .sub-menu .cm-arr:hover:after {
    border-color: var(--color-green);
  }
}
@media only screen and (max-width: 767px) {
  #cm-header a {
    color: #000;
    font-size: 1.6rem;
  }
  #cm-header .header-inner {
    padding: 1rem;
  }
  #cm-header .header-inner__logo {
    width: 60%;
  }
  #cm-header .header-inner__right {
    width: 40%;
  }
  #cm-header .btn-contact__link {
    width: 4.5rem;
    height: 4.5rem;
    padding: 1.2rem;
    border-radius: 0;
  }
  #cm-header .btn-contact__icon {
    line-height: 1;
  }
  #cm-header .btn-contact__txt {
    display: none;
  }
}

@keyframes scrolltop {
  0% {
    transform: translateY(-80px);
    transform-origin: center;
    opacity: 0;
    transition: ease-in-out;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*---------- START HAMBURGER ----------*/
.trigger-menu {
  background: var(--bg-green);
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  z-index: 9999;
}
.trigger-menu span {
  display: block;
  position: absolute;
  width: 2.4rem;
  height: 0.2rem;
  background: #fff;
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.trigger-menu span:nth-child(1) {
  top: 1.5rem;
  transform-origin: left center;
}
.trigger-menu span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left center;
}
.trigger-menu span:nth-child(3) {
  bottom: 1.5rem;
  transform-origin: left center;
}
.trigger-menu.active span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: 0.6rem;
  top: 1.3rem;
}
.trigger-menu.active span:nth-child(2) {
  opacity: 0;
}
.trigger-menu.active span:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: 0.6rem;
  bottom: 1.3rem;
}
@media screen and (min-width: 768px) {
  .trigger-menu {
    display: none;
  }
}

/*---------- START GNAV ----------*/
.l-menu_contents .gnav {
  width: 100%;
}
.l-menu_contents .gnav .cm-arr:after {
  border-color: #000;
}
.l-menu_contents .gnav__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.l-menu_contents .gnav .sub-menu {
  position: relative;
  z-index: 99;
}
.l-menu_contents .gnav .sub-menu__ttl {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  padding-right: 1.8rem;
}
.l-menu_contents .gnav .sub-menu__main {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 20rem;
  z-index: 999;
  padding-top: 1rem !important;
}
.l-menu_contents .gnav .sub-menu__list {
  position: relative;
  width: 100%;
  padding: 0 1.5rem;
}
.l-menu_contents .gnav .sub-menu__item:last-child .sub-menu__link {
  border-bottom: none;
}
.l-menu_contents .gnav .sub-menu__link {
  position: relative;
  display: inline-block;
  background: url("../images/common_img/arr-right-orange.webp") no-repeat center right 1.5rem;
  width: 100%;
  padding: 1.5rem;
  color: #000 !important;
  border-bottom: 1px solid #CBCBCB;
  z-index: 2;
}
.l-menu_contents .gnav .sub-menu__link:before {
  position: absolute;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid #000;
  border-bottom: none;
  border-left: none;
  top: 0.2rem;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .l-menu_contents {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .l-menu_contents .gnav {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
  }
  .l-menu_contents .gnav .sub-menu__ttl:hover {
    color: var(--color-green) !important;
  }
  .l-menu_contents .gnav .sub-menu__ttl:hover:after {
    transform: rotate(-45deg);
    border-color: var(--bg-green);
    top: 0.4rem;
  }
  .l-menu_contents .gnav .sub-menu__list {
    background: #f9f7f4;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 1rem;
  }
  .l-menu_contents .gnav .sub-menu__link:hover {
    color: var(--color-green) !important;
  }
  .l-menu_contents .gnav .sub-menu__link:hover:before {
    border-color: var(--bg-green);
  }
}
@media only screen and (max-width: 767px) {
  .l-menu_contents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: none;
    padding: 6.5rem 1.5rem 10rem;
    overflow: auto;
  }
  .l-menu_contents .gnav {
    position: relative;
    display: block;
    text-align: center;
  }
  .l-menu_contents .gnav .sub-menu__main {
    position: relative;
    padding-top: 0 !important;
  }
  .l-menu_contents .gnav .sub-menu__list {
    padding: 0;
  }
  .l-menu_contents .gnav .sub-menu__ttl {
    display: inline-block;
    width: 100%;
    text-align: left;
    padding: 1.5rem 0 !important;
    font-size: 2rem;
  }
  .l-menu_contents .gnav .sub-menu__ttl:after {
    border-color: #000;
  }
  .l-menu_contents .gnav .sub-menu__ttl.opened:after {
    transform: rotate(-45deg);
  }
  .l-menu_contents .gnav .sub-menu__link {
    text-align: left;
    border-bottom: none;
    padding: 1rem 1.5rem;
  }
  .l-menu_contents .gnav__item {
    width: 100%;
  }
  .l-menu_contents .gnav__link {
    width: 100%;
    padding: 1.5rem 0;
    font-size: 2rem !important;
    text-align: left;
  }
  .l-menu_contents .sp-infor {
    font-size: 1.5rem;
    font-weight: normal !important;
    margin-bottom: 3rem;
  }
  .l-menu_contents .sp-infor a {
    font-size: 1.5rem;
    font-weight: normal !important;
  }
  .l-menu_contents .sp-logo {
    width: 25rem;
    margin-top: 2rem;
  }
  .l-menu_contents.is-visible {
    opacity: 1;
    visibility: visible;
    height: 100vh;
  }
}

.nav-link {
  position: relative;
  text-decoration: none !important;
  z-index: 3;
}
.nav-link:after {
  position: absolute;
  content: "";
  background: #14aa3b;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.5s;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .nav-link:hover {
    color: #14aa3b !important;
  }
  .nav-link:hover:after {
    width: 100%;
  }
}

.btn-link {
  position: relative;
  text-decoration: none !important;
  z-index: 3;
}
.btn-link:before {
  position: absolute;
  content: "";
  background: #14aa3b;
  width: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.5s;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .btn-link:hover {
    color: #fff !important;
  }
  .btn-link:hover:before {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .sp_logo_icon {
    display: inline-block;
  }
  .sp_logo_icon img {
    max-height: 2.2rem;
  }
}
/*====================================================================================
4. START COMMON FOOTER
====================================================================================*/
.f-main {
  width: 100%;
}
.f-main__left {
  margin: 0 auto 2rem;
}
.f-main__dl {
  display: flex;
}
.f-main .f-gnav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.f-main .f-gnav__link {
  position: relative;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.f-main .f-gnav__ttl {
  font-weight: bold;
  padding-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.f-main .f-gnav .f-sub__main {
  margin-bottom: 1rem;
}
.f-main .f-gnav .f-sub__link {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.f-main .f-gnav .f-sub__link:before {
  position: absolute;
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border: 1px solid #000;
  border-bottom: none;
  border-left: none;
  top: 0.2rem;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .f-main {
    display: flex;
    justify-content: space-between;
  }
  .f-main__left {
    width: 34rem;
    margin: 0;
  }
  .f-main__logo {
    margin-bottom: 2rem;
  }
  .f-main .f-gnav {
    width: calc(100% - 34rem);
    justify-content: flex-end;
    gap: 5rem;
  }
  .f-main .f-gnav__link {
    margin-bottom: 1rem;
  }
  .f-main .f-gnav__ttl {
    margin-top: 1rem;
  }
  .f-main .f-sub__main {
    margin-bottom: 2rem;
  }
  .f-main .f-sub__link:hover:before {
    border-color: var(--bg-green);
  }
}
@media only screen and (max-width: 767px) {
  .f-main__left {
    display: flex;
    justify-content: center;
  }
  .f-main__logo {
    margin: 0 auto 1rem;
  }
  .f-main__logo img {
    max-height: 5rem;
  }
  .f-main .f-gnav {
    justify-content: space-between;
  }
  .f-main .f-gnav > ul {
    width: 100%;
  }
  .f-main .f-gnav > ul:last-child {
    margin-top: 2rem;
  }
  .f-main .f-gnav__link {
    margin-bottom: 1rem;
  }
}

.icon-link {
  background: url("../common_img/icon-link.webp") no-repeat center right;
  padding-right: 2rem;
}
.icon-link.logo-link {
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .icon-link.logo-link {
    padding-top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .icon-link.logo-link {
    margin-bottom: 1rem;
  }
}

@media only screen and (min-width: 768px) {
  .btn-icon-link:hover .icon-link {
    background: url("../common_img/icon-link-green.webp") no-repeat center right;
  }
}

.copyright {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .copyright {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .copyright {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
}

#page-up {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 4rem;
  z-index: 999;
}
#page-up a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid var(--bg-green);
  background: var(--bg-green);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 2;
}
#page-up a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s;
  z-index: -1;
}
#page-up a.cm-arr:after {
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-45deg);
  left: 0;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  #page-up {
    bottom: 5rem;
  }
  #page-up a {
    width: 6.5rem;
    height: 6.5rem;
  }
  #page-up a.cm-arr:after {
    width: 1.2rem;
    height: 1.2rem;
  }
  #page-up a:hover:before {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
  }
  #page-up a:hover.cm-arr:after {
    border-color: var(--bg-green);
  }
}

/*====================================================================================
5. START COMMON CSS
====================================================================================*/
/*---------- START fade-up ----------*/
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/*---------- START fade-up ----------*/
#cm-main {
  margin-top: var(--headerH);
}
#cm-main .main-cont {
  padding-bottom: 7rem;
}
@media only screen and (min-width: 768px) {
  #cm-main .main-cont {
    padding-bottom: 15rem;
  }
}

.a-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.inner-txt p + p {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .inner-txt p + p {
    margin-top: 4rem;
  }
}

/*---------- START ICON ZOOM  ----------*/
.icon-zoom {
  position: relative;
  display: block;
  overflow: hidden;
}
.icon-zoom:before {
  position: absolute;
  display: inline-block;
  content: "";
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-image: url("../common_img/lightbox/icon-zoom.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2.2rem 2.2rem;
  background-color: rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 768px) {
  .icon-zoom img {
    transition: transform 0.5s ease;
  }
  .icon-zoom:hover img {
    transform: scale(1.06);
  }
}

/*---------- START PADDING SECTION ----------*/
.sec-cont {
  padding: 3.5rem 0;
}
.sec-cont--lg {
  padding: 4.5rem 0;
}
@media only screen and (min-width: 768px) {
  .sec-cont {
    padding: 7rem 0;
  }
  .sec-cont--lg {
    padding: 9rem 0;
  }
}

/*---------- START SHAP SECTION ----------*/
.shap-white {
  position: relative;
  width: 100%;
  z-index: 2;
}
.shap-white:after {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  z-index: -1;
}
.shap-white__inner {
  background: #fff;
  clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
  padding-bottom: 5rem;
}
@media only screen and (min-width: 768px) {
  .shap-white {
    width: 68%;
  }
  .shap-white__inner {
    padding-bottom: 10rem;
    clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
  }
}

/*---------- START SECTION CONTACT----------*/
.cm-contact {
  background: url("../common_img/contact_bg.webp") no-repeat top center;
  color: #fff;
  padding: 4rem 0 5rem;
  text-align: center;
}
.cm-contact__infor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.cm-contact__infor .btn-contact__link {
  background: #fff;
  border-color: #fff;
  color: var(--color-green) !important;
  font-weight: bold;
  border-radius: 0;
  gap: 2rem;
  height: 6.5rem;
}
.cm-contact__infor .btn-contact__link p {
  display: inline-block;
  width: auto;
  font-size: 1.6rem;
}
.cm-contact__number {
  background: url("../common_img/icon-tel.webp") no-repeat top 1.8rem left;
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff !important;
  line-height: normal;
  background-size: 2rem;
  padding-left: 3rem;
}
@media only screen and (min-width: 768px) {
  .cm-contact {
    padding: 8rem 0 10rem;
  }
  .cm-contact__infor {
    gap: 8rem;
    margin-top: 5rem;
  }
  .cm-contact__infor .btn-contact__link {
    font-size: 2rem;
    width: 46rem;
    height: 10rem;
    gap: 6rem;
  }
  .cm-contact__infor .btn-contact__link p {
    font-size: 2rem;
  }
  .cm-contact__number {
    background-position: top 2.5rem left;
    background-size: 3rem;
    padding-left: 4.5rem;
    font-size: 4.8rem;
  }
  .cm-contact .btn-contact__link:hover {
    color: #fff !important;
  }
  .cm-contact .btn-contact__link:hover .btn-contact__icon {
    background: url("../common_img/icon-mail.webp") no-repeat center left;
    background-size: 2.6rem;
  }
  .cm-contact .btn-contact__link:hover .btn-contact__icon img {
    opacity: 0;
  }
}

/*---------- START BUTTON CONTACT  ----------*/
.btn-contact__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  text-decoration: none;
  background: #000;
  border-radius: 0 0 0 2rem;
  padding: 1.5rem;
  box-sizing: border-box;
  color: #fff !important;
  overflow: hidden;
  z-index: 99;
}
.btn-contact__link p {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1;
  font-size: 1.5rem;
}
.btn-contact__txt {
  margin-top: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .btn-contact__link {
    gap: 1rem;
  }
  .btn-contact__link:hover .btn-contact__icon img {
    opacity: 1;
  }
  .btn-contact__icon img {
    width: 2.6rem;
  }
}

/*---------- START BUTTON  ----------*/
.list-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  gap: 1.5rem;
}
.list-btn .cm-btn__link {
  margin-top: 0;
}
.list-btn.list-small {
  justify-content: center;
  gap: 1rem;
}
.list-btn.list-small .cm-btn {
  width: calc((100% - 1rem) / 2);
}
.list-btn.list-small .cm-btn__link {
  width: 100%;
  min-width: auto;
}
@media only screen and (min-width: 768px) {
  .list-btn {
    margin-top: 5rem;
    gap: 2.5rem;
  }
  .list-btn.list-small {
    gap: 2.5rem;
  }
  .list-btn.list-small .cm-btn {
    width: calc((100% - 7.5rem) / 4);
  }
}

.cm-btn__link {
  position: relative;
  display: inline-block;
  background: #fff;
  border: 2px solid var(--bg-green);
  width: auto;
  max-width: 100%;
  font-weight: bold;
  color: var(--color-green);
  text-decoration: none;
  line-height: 1.6;
  box-sizing: border-box;
  text-align: center;
  z-index: 3;
}
.cm-btn__link.cm-arr:after {
  left: auto;
  transform: rotate(45deg);
}
.cm-btn__link.btn-back.cm-arr:after {
  right: auto !important;
  left: 2rem !important;
  transform: rotate(-135deg) !important;
}
.cm-btn--green {
  background: var(--bg-green);
  color: #fff;
}
.cm-btn--gray {
  background: var(--bg-gray);
  border-color: var(--color-gray);
  color: #fff;
}
.cm-btn--back.cm-arr:after {
  right: auto !important;
  left: 2rem;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 768px) {
  .cm-btn__link {
    min-width: 45rem;
    font-size: 1.8rem;
    margin-top: 5rem;
    padding: 2.6rem 4rem;
  }
  .cm-btn__link.cm-arr:after {
    right: 2rem;
  }
  .cm-btn__link:hover.cm-arr:after {
    border-color: #fff;
  }
  .cm-btn--green:hover {
    color: var(--color-green) !important;
  }
  .cm-btn--green:hover:before {
    background: #fff;
  }
  .cm-btn--green:hover.cm-arr:after {
    border-color: var(--color-green);
  }
  .cm-btn--gray:hover {
    border-color: var(--color-green);
  }
  .cm-btn--sm .cm-btn__link {
    min-width: 30rem;
    padding: 2rem 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .cm-btn__link {
    min-width: 23rem;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    padding: 1.3rem 2rem;
  }
  .cm-btn__link.cm-arr:after {
    right: 1rem;
  }
  .cm-btn--sm .cm-btn__link {
    min-width: 20rem;
    padding: 1rem 2rem;
  }
}

.txt-link {
  position: relative;
  display: inline-block;
  color: #fff;
  padding-right: 2rem;
  text-decoration: none;
  z-index: 3;
}
.txt-link:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.5s;
  z-index: -1;
}
.txt-link--right {
  margin-left: auto;
}
.txt-link.cm-arr:after {
  left: auto;
  right: 0;
  transform: rotate(45deg);
}

.cm-arr {
  position: relative;
}
.cm-arr:after {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid #fff;
  border-bottom: none;
  border-left: none;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(135deg);
  margin: auto;
}
.cm-arr--black:after {
  border-color: #000;
}
.cm-arr--green:after {
  border-color: var(--bg-green);
}
.cm-arr--white:after {
  border-color: #fff;
}

.txt-eng {
  font-family: var(--font-Jost);
}
.txt-eng--lg {
  font-size: 18vw;
  font-weight: 500;
  color: #99e0aa;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .txt-eng--lg {
    font-size: 12.5vw;
  }
}

/*---------- START TITLE  ----------*/
.cm-title01 {
  margin-bottom: 2rem;
}
.cm-title01 span {
  display: block;
  font-weight: 500;
}
.cm-title01 .txt-jp {
  font-size: 3.2rem;
}
.cm-title01 .txt-eng {
  color: var(--color-green);
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .cm-title01 {
    margin-bottom: 4rem;
  }
  .cm-title01 .txt-jp {
    font-size: 4rem;
  }
  .cm-title01 .txt-eng {
    font-size: 2.4rem;
  }
}

/*---------- START TEXT  ----------*/
.c-txt--m {
  font-size: 1.6rem;
  font-weight: 500 !important;
}
.c-txt--ml {
  font-size: 1.8rem;
}
.c-txt--l {
  font-size: 2rem;
  font-weight: 500 !important;
}
.c-txt--lm {
  font-size: 2.2rem;
}
.c-txt--ll {
  font-size: 2.8rem;
}
@media only screen and (min-width: 768px) {
  .c-txt--m {
    font-size: 1.8rem;
  }
  .c-txt--ml {
    font-size: 2rem;
  }
  .c-txt--l {
    font-size: 2.4rem;
  }
  .c-txt--lm {
    font-size: 3rem;
  }
  .c-txt--ll {
    font-size: 4.8rem;
  }
}

/*====================================================================================
5. START COMMON LAYOUT.
====================================================================================*/
.c-width-center {
  display: flex;
  justify-content: center;
}