@charset "UTF-8";
/*
* main.css
*
*/
/* ------------------------
  reset
------------------------ */
html,
body {
  height: 100%;
}

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

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}


textarea {
  overflow: auto;
}

[hidden],
template {
  display: none;
}


main {
  display: block;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

small {
  font-size: 75%;
}

textarea {
  resize: vertical;
}


iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  border: 0; 
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit; 
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="submit"] {
  cursor: pointer; 

  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0; 
  border: 0;
}

input {
  line-height: normal;
}

ol,
ul {
  list-style: none;
}

select {
     -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

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

/* ------------------------
  Base Settings
------------------------ */
html {
  font-size: 62.5%;
}

:root {
  --cyo-color-white: #fff;
  --cyo-color-black: #22272a;
  --cyo-color-dark-navy: #2c363c;
  --cyo-color-green: #7ab532;
  --cyo-color-dark-green: #4a8a20;
  --cyo-color-light-gray: #eef6e2;
  --cyo-color-gray: #dde4ef;
  --cyo-color-accent-red: #ff7555;
  --cyo-color-accent-orange: #ffa210;
  --cyo-color-accent-yellow: #ffc710;
  --cyo-color-support-light-blue: #3da2e0;
  --cyo-color-support-dark-blue: #8cb840;
  --cyo-color-support-light-green: #6fa538;
  --cyo-color-support-dark-green: #55922e;
  --cyo-color-support-purple: #6582c5;
  --cyo-color-support-orange: #feb41c;
  --cyo-color-support-yellow: #ffd40c;
  --cyo-color-support-red: #e64464;
  --cyo-color-support-green: #619450;
  --cyo-color-support-brown: #553725;
  --cyo-color-support-navy: #3a7018;
  --cyo-color-support-black: #22262c;
}

body {
  background-color: #fff;
  letter-spacing: 0.16em; 
  word-wrap: break-word;
  color: #2c363c;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic W4 JIS2004", Meiryo, YuGothic, sans-serif;
  line-height: 1.9;

  -webkit-font-smoothing: antialiased;
          font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

a {
  text-decoration: underline; 
  color: #7ab532;
}
a:visited {
  color: #7ab532;
}
a:hover {
  text-decoration: none; 
  color: #7ab532;
}
a:active {
  text-decoration: none; 
  color: #7ab532;
}

::-moz-selection {
  background-color: #5a9a28;
  color: #fff;
  text-shadow: none;
}

::selection {
  background-color: #5a9a28;
  color: #fff;
  text-shadow: none;
}

/* --------------------------------
   button
-------------------------------- */
.c-btn02 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  padding: 0 20px;
  border: none;
  border-radius: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 230px;
  min-height: 44px;
  -webkit-transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1); 
  background-color: var(--btn-color);
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.005em;
  color: #fff;
  -webkit-box-shadow: 4px 4px 20px 2px color-mix(in srgb, var(--btn-color) 30%, transparent);
          box-shadow: 4px 4px 20px 2px color-mix(in srgb, var(--btn-color) 30%, transparent);
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;

  --btn-color: #7ab532;
  --btn-hover-color: #55922e;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-btn02 {
    padding: 0px 20px;
    border-radius: 44px;
    min-width: 260px;
    height: auto;
    min-height: 50px;
    -webkit-box-shadow: 4px 4px 20px 2px color-mix(in srgb, var(--btn-color) 30%, transparent);
            box-shadow: 4px 4px 20px 2px color-mix(in srgb, var(--btn-color) 30%, transparent); 
    font-size: 1.6rem;
  }
}
.c-btn02::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 1.5rem;
  height: 1.5rem; 
  -webkit-transition-duration: 0.3s; 
          transition-duration: 0.3s;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 768px) {
  .c-btn02::before {
    right: 20px;
    width: 1.8rem;
    height: 1.8rem;
  }
}
.c-btn02.-lg {
  min-width: 260px;
  min-height: 60px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .c-btn02.-lg {
    min-width: 500px;
    min-height: 88px;
    font-size: 2.2rem;
  }
}
.c-btn02.-lg::before {
  right: 17px;
}
@media (min-width: 768px) {
  .c-btn02.-lg::before {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .c-btn02.-md {
    min-width: 340px;
    min-height: 60px;
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .c-btn02.-sm {
    padding-left: 12px; 
    min-width: 180px;
    min-height: 50px;
    font-size: 1.6rem;
  }
}
.c-btn02.-sm::before {
  right: 16px;
}
.c-btn02.change-color {
  --btn-color: #ff7555;
  --btn-hover-color: #e55a3a
  ;
}
.c-btn02.c-arw02::before {
  background-image: url(../img/common/icon_arw_r_lg.svg);
  background-size: 15px 10.83px;
}
@media (min-width: 768px) {
  .c-btn02.c-arw02::before {
    background-size: 18px 13px;
  }
}
.c-btn02:hover {
  background-color: var(--btn-hover-color);
  color: #fff;
}
.c-btn02:visited {
  color: #fff;
}

/* ------------------------
  utilities Classes
------------------------ */
.u-hidden {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  .u-hidden-up-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}

/* ------------------------
  header
------------------------ */
.c-arw_gnav {
  display: block;
  position: relative;
  padding-left: 20px;
  -webkit-transition: 0.3s color cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s color cubic-bezier(0, 0, 0.58, 1); 
  color: #262c30;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .c-arw_gnav:hover.c-arw_gnav {
    color: #55922e;
  }
}
.c-arw_gnav::before,
.c-arw_gnav::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 15px;
  height: 11px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%); 
  background-repeat: no-repeat;
}
@media screen and (max-width: 1023px) {
  .c-arw_gnav::before,
  .c-arw_gnav::after {
    right: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .c-arw_gnav::before,
  .c-arw_gnav::after {
    right: auto;
    left: 0;
    width: 12px;
    height: 8px;
  }
}
.c-arw_gnav::before {
  background-image: url(../img/common/icon_arw_r_ov_gnav.svg);
  background-size: 15px 11px;
}
@media screen and (min-width: 1024px) {
  .c-arw_gnav::before {
    background-size: 12px 8px;
  }
}
.c-arw_gnav::after {
  background-image: url(../img/common/icon_arw_r_ov.svg);
  background-size: 15px 11px;
}
@media screen and (min-width: 1024px) {
  .c-arw_gnav::after {
    -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1) !important;
    transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1) !important; 
    background-size: 12px 8px;
  }
}
@media screen and (min-width: 1024px) {
  .c-arw_gnav:hover::after {
    opacity: 0;
  }
}

.l-header-lg {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s transform cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1); 
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 1023px) {
  .l-header-lg {
    visibility: hidden; 
    opacity: 0;
  }
}
.l-header-lg.is-activeHeader,
.l-header-lg.is-seachActive,
.l-header-lg:hover {
  background-color: #fff;
}
.l-header-lg.is-activeHeader .l-header_h > a::before,
.l-header-lg.is-seachActive .l-header_h > a::before,
.l-header-lg:hover .l-header_h > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/logo-sec.png);
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: contain;

  -webkit-box-flex: 0;

      -ms-flex: 0 0 260px;

          flex: 0 0 260px;
}
@media screen and (max-width: 1400px) {
  .l-header-lg.is-activeHeader .l-header_h > a::before,
  .l-header-lg.is-seachActive .l-header_h > a::before,
  .l-header-lg:hover .l-header_h > a::before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 210px;
            flex: 0 0 210px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header-lg.is-activeHeader .l-header_h > a::before,
  .l-header-lg.is-seachActive .l-header_h > a::before,
  .l-header-lg:hover .l-header_h > a::before {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}
.l-header-lg.is-activeHeader .l-gnav_listItem_link,
.l-header-lg.is-seachActive .l-gnav_listItem_link,
.l-header-lg:hover .l-gnav_listItem_link {
  color: #262c30;
}
.l-header-lg.is-hidden {
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
}
.l-header-lg.is-active {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.l-header-lg .l-header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); 

  -webkit-box-align: center; 

      -ms-flex-align: center; 

          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header-lg .l-header_h {
  position: relative;
  z-index: 2;
  margin-top: -2px;
  margin-right: 20px; 
  width: 260px;

  -webkit-box-flex: 0;

      -ms-flex: 0 0 260px;

          flex: 0 0 260px;
}
@media screen and (max-width: 1400px) {
  .l-header-lg .l-header_h {
    width: 210px;

    -webkit-box-flex: 0;

        -ms-flex: 0 0 210px;

            flex: 0 0 210px;
  }
}
@media screen and (max-width: 1160px) {
  .l-header-lg .l-header_h {
    margin-right: 10px; 
    width: 150px;

    -webkit-box-flex: 0;

        -ms-flex: 0 0 150px;

            flex: 0 0 150px;
  }
}
.l-header-lg .l-header_h a {
  display: block;
}
.l-header-lg .l-gnav_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1440px) {
  .l-header-lg .l-gnav_inner {
    gap: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .l-header-lg .l-gnav_inner {
    gap: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header-lg .l-gnav_inner {
    gap: 10px;
  }
}
.l-header-lg .l-gnav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 104px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 30px;
}
@media screen and (max-width: 1440px) {
  .l-header-lg .l-gnav_list {
    gap: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .l-header-lg .l-gnav_list {
    gap: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .l-header-lg .l-gnav_list {
    gap: 10px;
  }
}
.l-header-lg .l-gnav_listItem {
  height: 100%;
}
.l-header-lg .l-gnav_listItem.is-current .l-gnav_listItem_link {
  color: #7ab532;
}
.l-header-lg .l-gnav_listItem.is-current .l-gnav_listItem_link::after {
  width: 100%;
}
.l-header-lg .l-gnav_listItem.is-current span.l-gnav_listItem_link::before {
  visibility: visible;
  opacity: 1;
  border-color: transparent transparent #fff transparent; 
  -webkit-transform: translate(-50%, 0) rotate(45deg); 
      -ms-transform: translate(-50%, 0) rotate(45deg); 
          transform: translate(-50%, 0) rotate(45deg);
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.l-header-lg .l-gnav_listItem > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  text-decoration: none;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;
}
.l-header-lg .l-gnav_listItem > a > span {
  height: 100%;
}
.l-header-lg .l-gnav_listItem_link {
  display: inline-block;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: 0.3s color cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s color cubic-bezier(0, 0, 0.58, 1);
  white-space: nowrap; 
  text-decoration: none;
  color: #fff;
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 1400px) {
  .l-header-lg .l-gnav_listItem_link {
    font-size: 1.45rem;
  }
}
@media screen and (max-width: 1160px) {
  .l-header-lg .l-gnav_listItem_link {
    font-size: 1.3rem;
  }
}
.l-header-lg .l-gnav_listItem_link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 4px;
  -webkit-transition: 0.3s width cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s width cubic-bezier(0, 0, 0.58, 1); 
  -webkit-transform: translate(-50%, 0); 
      -ms-transform: translate(-50%, 0); 
          transform: translate(-50%, 0);
  background: #7ab532;
}
.l-header-lg span.l-gnav_listItem_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1100px) {
  .l-header-lg span.l-gnav_listItem_link {
    gap: 4px;
  }
}
.l-header-lg span.l-gnav_listItem_link::before {
  content: "";
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: -42px;
  left: 50%;
  border-width: 0 12px 12px 12px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  width: 0;
  height: 0;
  cursor: auto;
  -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1), 0.3s transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1), 0.3s transform cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1); 
  -webkit-transform: translate(-50%, 0); 
      -ms-transform: translate(-50%, 0); 
          transform: translate(-50%, 0);
}
.l-header-lg .l-gnav_list_icon {
  display: inline-block;
  position: relative;
  border-radius: 999px; 
  width: 12px;
  height: 12px;
  background-color: #7ab532;
}
.l-header-lg .l-gnav_list_icon::before,
.l-header-lg .l-gnav_list_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px; 
  width: 6px;
  height: 1.2px;
  background-color: #fff;

  translate: -50% -50%;
}
.l-header-lg .l-gnav_list_icon::after {
  -webkit-transition: scale 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: scale 0.3s cubic-bezier(0, 0, 0.58, 1); 
  -webkit-transform-origin: center; 
      -ms-transform-origin: center; 
          transform-origin: center;

  rotate: 90deg;
  scale: 1;
}
.is-current .l-header-lg .l-gnav_list_icon::after {
  scale: 0;
}
.l-header-lg .l-gnav_listItem.is-current .l-gnav_list_icon::after {
  scale: 1 0;
}
.l-header-lg:not(.is-activeHeader):not(.is-active):not(:hover) .l-gnav_list_icon {
  background-color: #fff;
}
.l-header-lg:not(.is-activeHeader):not(.is-active):not(:hover) .l-gnav_list_icon::before,
.l-header-lg:not(.is-activeHeader):not(.is-active):not(:hover) .l-gnav_list_icon::after {
  background-color: #7ab532;
}
.l-header-lg.is-seachActive .l-gnav_list {
  visibility: hidden; 
  opacity: 0;
}
.l-header-lg.is-seachActive .l-gnav_search_trigger {
  visibility: hidden; 
  opacity: 0;
}
.l-header-lg .l-gnav_form label {
  position: relative;
}
.l-header-lg .l-gnav_form label input::-webkit-input-placeholder {
  background-color: transparent !important;
}
.l-header-lg .l-gnav_form label input::-moz-placeholder {
  background-color: transparent !important;
}
.l-header-lg .l-gnav_form label input::-ms-input-placeholder {
  background-color: transparent !important;
}
.l-header-lg .l-gnav_form label input::placeholder {
  background-color: transparent !important;
}
.l-header-lg .l-gnav_form label input:focus::-webkit-input-placeholder {
  color: transparent !important;
}
.l-header-lg .l-gnav_form label input:focus::-moz-placeholder {
  color: transparent !important;
}
.l-header-lg .l-gnav_form label input:focus::-ms-input-placeholder {
  color: transparent !important;
}
.l-header-lg .l-gnav_form label input:focus::placeholder {
  color: transparent !important;
}
.l-header-lg .l-gnav_form input,
.l-header-lg .l-gnav_form button {
  border: none;
}
.l-header-lg .l-gnav_btn {
  width: 180px;
  height: 50px; 

  -webkit-box-flex: 0; 

      -ms-flex: 0 0 180px; 

          flex: 0 0 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1400px) {
  .l-header-lg .l-gnav_btn {
    width: 144px;
    height: 40px; 

    -ms-flex-preferred-size: 144px; 

        flex-basis: 144px;
  }
}
.l-header-lg .l-gnav_btn a {
  width: 180px;
}
@media screen and (max-width: 1400px) {
  .l-header-lg .l-gnav_btn a {
    width: 144px;
    height: 40px;
  }
  .l-header-lg .l-gnav_btn a::before {
    width: 13px;
    height: 10px;
    background-size: 13px 10px;
  }
}
.l-header-lg .l-gnav_btn a span {
  padding-right: 10px;
}
@media screen and (max-width: 1400px) {
  .l-header-lg .l-gnav_btn a span {
    font-size: 1.3rem;
  }
}
.l-header-lg .l-gnav_child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 50%;
  padding-top: 144px;
  width: calc(100% - 80px);
  -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1), 0.3s transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1), 0.3s transform cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1); 
  -webkit-transform: translateX(-50%); 
      -ms-transform: translateX(-50%); 
          transform: translateX(-50%);
}
.l-header-lg .l-gnav_child[hidden] {
  display: block;
}
.l-header-lg .is-current .l-gnav_child {
  visibility: visible; 
  opacity: 1;
}
.l-header-lg .l-gnav_child_contents {
  overflow: hidden; 
  border-radius: 8px;
}
.l-header-lg .c-arw_gnav {
  font-size: 1.6rem;
}
.l-header-lg .l-gnav_child_02 .l-gnav_child_contents {
  background-color: #fff;
}

.l-mask_bg {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 200vw;
  height: 200vh;
  -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1); 
  background: rgba(0, 0, 0, 0.2);
}

.is-active.l-mask_bg {
  visibility: visible;
  opacity: 1;
}

.l-header-sm {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.3s all cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s all cubic-bezier(0, 0, 0.58, 1);
}
@media screen and (min-width: 1024px) {
  .l-header-sm {
    visibility: hidden; 
    opacity: 0;
  }
}
.l-header-sm.is-activeHeader .l-header_inner,
.l-header-sm:hover .l-header_inner {
  background-color: #fff;
}
.l-header-sm.is-activeHeader .l-header_h a::before,
.l-header-sm:hover .l-header_h a::before {
  content: "";
}
.l-header-sm.is-hidden {
  -webkit-transform: translate(0, -100%);
      -ms-transform: translate(0, -100%);
          transform: translate(0, -100%);
}
.l-header-sm.is-opened {
  height: 100%;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0); 
  background-color: transparent;
}
.l-header-sm.is-active {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.l-header-sm .l-header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 12px 20px;
  height: 62px;
  -webkit-transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s all cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s all cubic-bezier(0, 0, 0.58, 1); 

  -webkit-box-align: center; 

      -ms-flex-align: center; 

          align-items: center;
}
.l-header-sm .l-header_inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0 20px;
  width: calc(100% - 40px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.l-header-sm .l-header_h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 135px;

  -ms-flex-preferred-size: 135px;

      flex-basis: 135px;
}
.l-header-sm .l-header_h a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}
.l-header-sm .l-header_h a img {
  display: block;
}
.l-header-sm .l-header_h a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/logo-sec.png); 
  background-size: 135px auto;
}
.l-header-sm .l-header_btns {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.l-header-sm .l-header_btn,
.l-header-sm .l-gnav_btn {
  display: block;
  position: relative;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  -webkit-box-shadow: 2px 5px 10px 0px rgba(14, 117, 173, 0.4);
          box-shadow: 2px 5px 10px 0px rgba(14, 117, 173, 0.4);
}
.l-header-sm .l-header_btn {
  background: #fff;
}
.l-header-sm .l-line {
  display: inline-block;
  position: absolute;
  left: 50%;
  border-radius: 2px;
  width: 17px;
  height: 3px;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0); 
  background: #1992d4;
}
.l-header-sm .l-line_01 {
  top: 11px;
}
.l-header-sm .l-line_02 {
  top: 17px;
}
.l-header-sm .l-line_03 {
  top: 23px;
}
.l-header-sm .l-gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s transform cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1); 
  -webkit-transform: translate(100%, 0); 
      -ms-transform: translate(100%, 0); 
          transform: translate(100%, 0);
}
.l-header-sm .l-gnav .l-gnav_btn {
  background: #1992d4;
}
.l-header-sm .l-gnav .l-line {
  background: #fff;
}
.l-header-sm .l-gnav .l-line_01 {
  -webkit-transform: translate(-50%, 6px) rotate(45deg);
      -ms-transform: translate(-50%, 6px) rotate(45deg);
          transform: translate(-50%, 6px) rotate(45deg);
}
.l-header-sm .l-gnav .l-line_02 {
  opacity: 0;
}
.l-header-sm .l-gnav .l-line_03 {
  -webkit-transform: translate(-50%, -6px) rotate(135deg);
      -ms-transform: translate(-50%, -6px) rotate(135deg);
          transform: translate(-50%, -6px) rotate(135deg);
}
.l-header-sm.is-opened .l-gnav {
  overflow: scroll;
  -webkit-transform: translate(0, 0) !important;
      -ms-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}
.l-header-sm .l-gnav_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(203, 208, 215, 0.3); 
  background-color: #fff;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header-sm .l-gnav_h {
  width: 135px;
}
.l-header-sm .l-gnav_sitemap {
  background: #fff;
}
.l-header-sm .l-gnav_sitemap .c-arw-lg::before {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%); 
  background-image: url(../img/common/icon_arw_r_lg_ov.svg);
}
.l-header-sm .l-gnav_sitemap_h {
  display: block;
  padding: 22px 20px;
  border-top: unset;
  border-right: unset;
  border-bottom: 1px solid rgba(203, 208, 215, 0.3);
  border-left: unset;
  width: 100%;
  background-color: unset;
  text-align: left; 
  text-decoration: none;
  color: #262c30;
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}
.l-header-sm .is-active .l-gnav_sitemap_h {
  background: #7ab532;
  color: #fff;
}
.l-header-sm .is-active dt.l-gnav_sitemap_listItem {
  background: #d6e8ff;
}
.l-header-sm .is-active dd.l-gnav_sitemap_listItem {
  background: #f0f7e8;
}
.l-header-sm .is-active .l-gnav_sitemap_list {
  background: #f0f7e8;
}
.l-header-sm .is-active .c-arw-lg::before {
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%); 
  background-image: url(../img/common/icon_arw_r_lg_ov.svg);
}
.l-header-sm .l-gnav_sitemap_list {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: height 0.3s cubic-bezier(0, 0, 0.58, 1);
}
.l-header-sm .l-gnav_sitemap_list[hidden] {
  display: block;
}
.l-header-sm .l-gnav_sitemap_list dt.l-gnav_sitemap_listItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 22px 20px 22px 20px;
  text-decoration: none; 

  -webkit-box-align: center; 

      -ms-flex-align: center; 

          align-items: center;
  gap: 8px;
}
.l-header-sm .l-gnav_sitemap_list dt.l-gnav_sitemap_listItem::before {
  content: "";
  position: relative;
  left: 0;
}
.l-header-sm .l-gnav_sitemap_list dd.l-gnav_sitemap_listItem,
.l-header-sm .l-gnav_sitemap_list li.l-gnav_sitemap_listItem {
  margin: 0 20px;
}
.l-header-sm .l-gnav_sitemap_listItem,
.l-header-sm .l-gnav_sitemap_link {
  overflow: hidden;
  position: relative;
  color: #000; 
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}
.l-header-sm .l-gnav_sitemap_listItem a,
.l-header-sm .l-gnav_sitemap_link a {
  display: block;
  padding: 22px 25px 22px 23px;
  height: 100%; 
  text-decoration: none;
  color: #262c30;
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}
.l-header-sm .l-gnav_sitemap_listItem a > span,
.l-header-sm .l-gnav_sitemap_link a > span {
  height: 100%;
  word-break: keep-all;

  overflow-wrap: anywhere;
}
.l-header-sm .l-gnav_sitemap_listItem a > span .__sm,
.l-header-sm .l-gnav_sitemap_link a > span .__sm {
  font-size: 1.2rem;
}
.l-header-sm .l-gnav_sitemap_listItem a.c-arw_gnav::before,
.l-header-sm .l-gnav_sitemap_link a.c-arw_gnav::before {
  right: 15px;
}
.l-header-sm .l-gnav_sitemap_link {
  border-bottom: 1px solid rgba(203, 208, 215, 0.3);
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-weight: bold;
}
.l-header-sm .l-gnav_sitemap_link a {
  padding: 22px 35px 22px 20px;
}
.l-header-sm .l-gnav_sitemap_link a.c-arw-lg::before {
  right: 35px;
}
.l-header-sm .l-gnav_sitemap_listItem:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: url(../img/common/gnav_boder_sm.png);
  background-repeat: repeat-x;
  background-size: 4px 1px;
}
.l-header-sm .l-gnav_sitemap_inner:nth-child(2) .l-gnav_sitemap_list:nth-of-type(2) .l-gnav_sitemap_listItem:first-child {
  border-top: 1px solid #dee6ef;
}
.l-header-sm .l-gnav_sitemap_inner:nth-child(2) ul.l-gnav_sitemap_list {
  border-top: 1px solid #dee6ef; 
  background: #d6e8ff;
}
.l-header-sm .l-gnav_sitemap_inner:nth-child(2) ul.l-gnav_sitemap_list .c-arw-lg::before {
  right: 15px;
}
.l-header-sm .l-gnav_cvbtn {
  padding: 24px 0 24px;
  border-bottom: 1px solid rgba(203, 208, 215, 0.3);
  background: #fff;
  text-align: center;
}
.l-header-sm .l-gnav_cvbtn a {
  width: 260px;
  height: 60px;
}
.l-header-sm .l-gnav_cvbtn a span {
  font-size: 1.4rem;
}
.l-header-sm .l-gnav_bg {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s visibility cubic-bezier(0, 0, 0.58, 1); 
  background: rgba(0, 0, 0, 0.2);
}
.l-header-sm.is-opened .l-gnav_bg {
  visibility: visible; 
  opacity: 1;
}

/* ------------------------
  footer
------------------------ */
.l-footer a:visited {
  color: #fff;
}

.footer_circles {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.footer_circles .c-circle {
  position: absolute;
  border-style: solid;
  border-color: transparent;
  border-radius: 0;
  background-image: url(../img/common/logomark.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-origin: border-box;
  background-clip: border-box;
  opacity: 0.05;
}
.footer_circles .circle_01 {
  top: -212px;
  left: -226px;
  border-width: 95px; 
  width: 392px;
  height: 392px;
}
@media (min-width: 768px) {
  .footer_circles .circle_01 {
    top: -420px;
    left: -436px;
    border-width: 190px; 
    width: 785px;
    height: 785px;
  }
}
.footer_circles .circle_02 {
  bottom: -106px;
  left: -110px;
  border-width: 50px; 
  width: 208px;
  height: 208px;
}
@media (min-width: 768px) {
  .footer_circles .circle_02 {
    top: auto;
    bottom: -232px;
    left: -168px;
    border-width: 100px; 
    width: 416px;
    height: 416px;
  }
}
.footer_circles .circle_03 {
  top: 263px;
  right: -302px;
  border-width: 110px; 
  width: 452px;
  height: 452px;
}
@media (min-width: 768px) {
  .footer_circles .circle_03 {
    top: 252px;
    right: -800px;
    border-width: 320px; 
    width: 1346px;
    height: 1346px;
  }
}

.l-footer_copyright {
  margin: 24px 0 0;
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif; 
  font-size: 1rem;
}
@media (min-width: 768px) {
  .l-footer_copyright {
    margin: 0;
    text-align: end; 
    font-size: 1.2rem;
  }
}

/* Slider */
.slick-slider {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  display: block;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto; 
  margin-left: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none; 
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  border: 1px solid transparent; 
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 50%;
  padding: 0;
  border: none;
  outline: none; 
  width: 20px;
  height: 20px;
  cursor: pointer;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  opacity: 0.75;
  color: white;
  font-family: "slick";
  font-size: 20px;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  right: -25px; 
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  right: auto; 
  left: -25px;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  display: block;
  position: absolute;
  bottom: -25px;
  margin: 0;
  padding: 0;
  width: 100%; 
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  position: relative;
  margin: 0 5px;
  padding: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  padding: 5px;
  border: 0;
  outline: none;
  width: 20px;
  height: 20px;
  cursor: pointer; 
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  content: "•";
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  text-align: center;
  color: black;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75; 
  color: black;
}

/* --------------------------------
   ページ共通
-------------------------------- */
.loading {
  width: 26px;
  height: 26px;
  /* アニメーション */
  -webkit-animation: sprite-sm 1.1s steps(8, start) infinite;
          animation: sprite-sm 1.1s steps(8, start) infinite; 
  background: url(../img/common/bg_loding.png);
  background-repeat: repeat;
  background-position: 0 0;
  background-size: 26px 208px;
}
@media (min-width: 768px) {
  .loading {
    width: 38px;
    height: 38px;
    -webkit-animation: sprite-lg 1.1s steps(8, start) infinite;
            animation: sprite-lg 1.1s steps(8, start) infinite; 
    background-size: 38px 304px;
  }
}

@-webkit-keyframes sprite-sm {
  0% {
    background-position: 0 208px;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes sprite-sm {
  0% {
    background-position: 0 208px;
  }
  100% {
    background-position: 0 0;
  }
}

@-webkit-keyframes sprite-lg {
  0% {
    background-position: 0 304px;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes sprite-lg {
  0% {
    background-position: 0 304px;
  }
  100% {
    background-position: 0 0;
  }
}

.c-section_inner {
  position: relative;
  z-index: 2;
  margin: 0 20px;
}
@media (min-width: 768px) {
  .c-section_inner {
    margin: auto;
    padding: 0 20px; 
    max-width: 1160px;
  }
}

.l-main {
  overflow: hidden; 
  position: relative;
  background-repeat: repeat;
  background-position: 50% 20px;
  background-size: 40px 40px;
}

.c-bg_gradation {
  position: relative;
  background-image: linear-gradient(130deg, #55922e 0%, #6fa538 25%, #8cb840 45%, #a9c84a 65%, #c0d84a 100%);
}
.c-bg_gradation::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
  background-position: 50% 10px;
  background-size: 40px 40px;

  mix-blend-mode: overlay;
}

.is-scrollReady {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.6s opacity cubic-bezier(0, 0, 0.58, 1), 0.6s visibility cubic-bezier(0, 0, 0.58, 1), 0.6s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.6s opacity cubic-bezier(0, 0, 0.58, 1), 0.6s visibility cubic-bezier(0, 0, 0.58, 1), 0.6s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.6s opacity cubic-bezier(0, 0, 0.58, 1), 0.6s visibility cubic-bezier(0, 0, 0.58, 1), 0.6s transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.6s opacity cubic-bezier(0, 0, 0.58, 1), 0.6s visibility cubic-bezier(0, 0, 0.58, 1), 0.6s transform cubic-bezier(0, 0, 0.58, 1), 0.6s -webkit-transform cubic-bezier(0, 0, 0.58, 1); 
  -webkit-transform: translate(0, 30px); 
      -ms-transform: translate(0, 30px); 
          transform: translate(0, 30px);
}
.is-scrollReady.is-scrollAction {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.c-swichContent {
  display: none;
}
.c-swichContent.is-current {
  display: block;
}

/* ------------------------
  Components
------------------------ */
body {
  min-width: 320px;
}
@media (min-width: 768px) {
  body {
    min-width: 1024px;
  }
}

.c-btn {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  overflow: hidden;
  position: relative;
  margin: auto;
  border-radius: 22px;
  width: 225px;
  height: 44px;
  -webkit-transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-box-shadow cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-box-shadow cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s box-shadow cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s box-shadow cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-box-shadow cubic-bezier(0, 0, 0.58, 1); 
  background-color: #7ab532;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: 3px 9px 20px 0px rgba(25, 146, 212, 0.3);
          box-shadow: 3px 9px 20px 0px rgba(25, 146, 212, 0.3);
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-weight: bold;
  line-height: 1.25;

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-btn {
    border-radius: 30px; 
    width: 300px;
    height: 60px;
  }
}
.c-btn span {
  position: relative;
  -webkit-transition: 0.3s color cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s color cubic-bezier(0, 0, 0.58, 1); 
  color: #fff;
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .c-btn span {
    font-size: 1.8rem;
  }
}
.c-btn.c-arw-lg::before {
  right: 12px;
}
@media (min-width: 768px) {
  .c-btn.c-arw-lg::before {
    right: 17px; 
    left: auto;
  }
}
.c-btn:hover {
  background-color: #55922e;
}
.c-btn.-lg {
  border-radius: 30px; 
  width: 260px;
  height: 60px;
}
@media (min-width: 768px) {
  .c-btn.-lg {
    border-radius: 44px; 
    width: 500px;
    height: 88px;
  }
}
@media (min-width: 768px) {
  .c-btn.-lg span {
    font-size: 2.2rem;
  }
}
.c-btn.-lg.c-arw-lg::before {
  right: 20px;
}

.c-btn-cv {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: auto;
  border-radius: 30px;
  width: 260px;
  height: 60px;
  -webkit-transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-box-shadow cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-box-shadow cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s box-shadow cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-color cubic-bezier(0, 0, 0.58, 1), 0.3s box-shadow cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-box-shadow cubic-bezier(0, 0, 0.58, 1); 
  background-color: #ff7555;
  text-align: center;
  text-decoration: none;
  color: #fff;
  -webkit-box-shadow: 3px 9px 20px 0px rgba(255, 117, 85, 0.3);
          box-shadow: 3px 9px 20px 0px rgba(255, 117, 85, 0.3);
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-weight: bold;
  line-height: 1.25;

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .c-btn-cv {
    width: 194px;
    height: 50px;
  }
}
.c-btn-cv span {
  position: relative;
  -webkit-transition: 0.3s color cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s color cubic-bezier(0, 0, 0.58, 1); 
  color: #fff;
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .c-btn-cv span {
    font-size: 1.6rem;
  }
}
.c-btn-cv.c-arw-lg::before {
  right: 12px;
}
@media (min-width: 768px) {
  .c-btn-cv.c-arw-lg::before {
    right: 17px;
    left: auto;
    -webkit-transition: 0.3s background-image cubic-bezier(0, 0, 0.58, 1);
    transition: 0.3s background-image cubic-bezier(0, 0, 0.58, 1);
    background-size: 18px 13px;
  }
}
.c-btn-cv:hover {
  background-color: #e55a3a;
}
@media (min-width: 768px) {
  .c-btn-cv.-lg {
    border-radius: 44px; 
    width: 500px;
    height: 88px;
  }
}
@media (min-width: 768px) {
  .c-btn-cv.-lg span {
    font-size: 2.2rem;
  }
}
.c-btn-cv.-lg .c-arw-lg::before {
  right: 20px;
}

.c-arw-lg {
  display: block;
  position: relative;
}
.c-arw-lg::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 15px;
  height: 11px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%); 
  background-image: url(../img/common/icon_arw_r_lg.svg);
  background-repeat: no-repeat;
  background-size: 15px 11px;
}
@media (min-width: 768px) {
  .c-arw-lg::before {
    width: 18px;
    height: 13px;
    background-size: 18px 13px;
  }
}

@-moz-document url-prefix() {
}

.c-arw-card {
  position: relative;
}
.c-arw-card::before {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  -webkit-transition: 0.3s background-image cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-image cubic-bezier(0, 0, 0.58, 1); 
  background-image: url(../img/common/icon_txtlink.svg);
  background-repeat: no-repeat;
  background-size: 17px;
  -webkit-box-shadow: 2px 5px 14px 0px rgba(25, 146, 212, 0.25);
          box-shadow: 2px 5px 14px 0px rgba(25, 146, 212, 0.25);
}
@media (min-width: 768px) {
  .c-arw-card::before {
    width: 24px;
    height: 24px;
    background-size: 24px;
    -webkit-box-shadow: 6px 14px 28px 0px rgba(25, 146, 212, 0.25);
            box-shadow: 6px 14px 28px 0px rgba(25, 146, 212, 0.25);
  }
}

.c-win-card {
  position: relative;
}
.c-win-card::before {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  -webkit-transition: 0.3s background-image cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s background-image cubic-bezier(0, 0, 0.58, 1); 
  background-image: url(../img/common/icon_win_circle.svg);
  background-repeat: no-repeat;
  background-size: 17px;
  -webkit-box-shadow: 2px 5px 14px 0px rgba(25, 146, 212, 0.25);
          box-shadow: 2px 5px 14px 0px rgba(25, 146, 212, 0.25);
}
@media (min-width: 768px) {
  .c-win-card::before {
    width: 24px;
    height: 24px;
    background-size: 24px;
    -webkit-box-shadow: 6px 14px 28px 0px rgba(25, 146, 212, 0.25);
            box-shadow: 6px 14px 28px 0px rgba(25, 146, 212, 0.25);
  }
}

/* ------------------------
  c-headerDecoration
------------------------ */
.c-headerDecoration {
  display: inline-block;
  position: relative;
}
.c-headerDecoration::before,
.c-headerDecoration::after {
  content: "";
  position: absolute;
  bottom: 8px;
  margin: auto;
  width: 26px;
  height: 48px;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .c-headerDecoration::before,
  .c-headerDecoration::after {
    top: 8px;
    width: 22px;
    height: 32px;
  }
}
.c-headerDecoration::before {
  left: -38px;
  background-image: url(../img/common/header_deco_left.png);
  background-size: 26px 48px;
}
@media (min-width: 768px) {
  .c-headerDecoration::before {
    left: -46px;
    background-size: 22px 32px;
  }
}
.c-headerDecoration::after {
  right: -38px;
  background-image: url(../img/common/header_deco_right.png);
  background-repeat: no-repeat;
  background-size: 26px 48px;
}
@media (min-width: 768px) {
  .c-headerDecoration::after {
    right: -46px;
    background-repeat: no-repeat;
    background-size: 22px 32px;
  }
}
.c-headerDecoration.__bottom::before,
.c-headerDecoration.__bottom::after {
  top: auto; 
  bottom: 2rem;
}
.c-headerDecoration.__sm::before,
.c-headerDecoration.__sm::after {
  top: 50%;
  bottom: auto;
  width: 16px;
  height: 23px; 
  background-size: cover;

  translate: 0 -50%;
}
@media (min-width: 768px) {
  .c-headerDecoration.__sm::before,
  .c-headerDecoration.__sm::after {
    width: 25px;
    height: 35.23px;
  }
}
.c-headerDecoration.__sm::before {
  left: -22.11px;
}
@media (min-width: 768px) {
  .c-headerDecoration.__sm::before {
    left: -45.73px;
  }
}
.c-headerDecoration.__sm::after {
  right: -22.11px;
}
@media (min-width: 768px) {
  .c-headerDecoration.__sm::after {
    right: -45.73px;
  }
}

/* ------------------------
  c-card
------------------------ */

.c-card {
  position: relative;
}
@media (min-width: 768px) {
  .c-card {
    -webkit-box-sizing: content-box;
            box-sizing: content-box; 
    padding: 0 23px;
    width: 33.333% !important;
    max-width: 342px;
  }
}
.c-card a {
  display: block;
  border-radius: 8px;
  height: 100%;
  background-color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 5px 8px 15px 0px rgba(25, 146, 212, 0.18);
          box-shadow: 5px 8px 15px 0px rgba(25, 146, 212, 0.18);
}
@media (min-width: 768px) {
  .c-card a {
    -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1);
    transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1); 
    -webkit-box-shadow: 10px 16px 20px 0px rgba(25, 146, 212, 0.18); 
            box-shadow: 10px 16px 20px 0px rgba(25, 146, 212, 0.18);
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none) {
  .c-card a {
    -webkit-transition: none;
    transition: none;
  }
}
@media (min-width: 768px) {
  .c-card a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: 0px solid #b0dcf8;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s border cubic-bezier(0, 0, 0.58, 1);
    transition: 0.3s border cubic-bezier(0, 0, 0.58, 1);
  }
  .c-card a:hover {
    opacity: 0.7;
  }
  .c-card a:hover::after {
    border-width: 6px;
  }
}
.c-card a.c-arw-card::before,
.c-card a.c-win-card::before {
  right: 26px; 
  bottom: 24px;
}
@media (min-width: 768px) {
  .c-card a.c-arw-card::before,
  .c-card a.c-win-card::before {
    right: 37px; 
    bottom: 35px;
  }
}
.c-card a.__sm {
  margin: 0;
  padding: 0;
}

.c-card_img {
  overflow: hidden; 
  position: relative;
  border-radius: 8px 8px 0 0;
  width: 100%;
}
.c-card_img img {
  width: 100%;
  height: 210px;
  font-family: "object-fit: cover;"; 

  -o-object-fit: cover; 

     object-fit: cover;
}
@media (min-width: 768px) {
  .c-card_img img {
    height: 230px;
  }
}

/* ------------------------
  c-slide
------------------------ */
/* ================
// （親要素にmax-width: 1164px;を指定）
// .c-section_inner {
//   margin: auto;

//   @include breakpoint-up(md) {
//     margin: auto;
//     max-width: 1164px;
//     padding: 0;
//   }
// }
================ */
.c-slide {
  display: block;
  margin: 0 !important;
}
@media (min-width: 768px) {
  .c-slide {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-slide .c-card {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .c-slide .c-card {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  .c-slide .c-card {
    -webkit-box-sizing: content-box;
            box-sizing: content-box; 
    width: 100% !important;
    max-width: 342px;
  }
}
.c-slide .slick-list {
  padding: 0 !important;
}
@media (min-width: 768px) {
  .c-slide .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
  }
}
.c-slide .slick-dots {
  right: 0;
  bottom: -6px;
  left: 0;
  margin: auto; 
  max-width: 65%;
}
.c-slide .slick-dots li {
  margin: 0 6px;
  border-radius: 50%; 
  width: 13px;
  height: 13px;
}
.c-slide .slick-dots li button {
  border-radius: 50%; 
  width: 13px;
  height: 13px;
}
.c-slide .slick-dots li button::before {
  content: "";
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #3da2e0; 
  border-radius: 50%;
  width: 13px;
  height: 13px;
  background: #fff;
}
@media (min-width: 768px) {
  .c-slide .slick-dots li button:hover::before {
    opacity: 0.75;
  }
}
.c-slide .slick-dots li.slick-active {
  -webkit-transform: scale(1.31);
      -ms-transform: scale(1.31);
          transform: scale(1.31);
}
.c-slide .slick-dots li.slick-active button::before {
  border-color: #fff;
  background: #3da2e0;
}
.c-slide .slick-arrow {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  .c-slide .slick-arrow {
    z-index: 1;
    margin-top: -30px; 
    width: 90px;
    height: 90px;
  }
  .c-slide .slick-arrow::before {
    content: "";
    display: block;
    opacity: 1; 
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .c-slide .slick-prev {
    z-index: 1; 
    top: auto;
    bottom: -22px;
    left: 20px;
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 768px) {
  .c-slide .slick-prev {
    left: -80px; 
    width: 90px;
    height: 90px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1340px) {
  .c-slide .slick-prev {
    top: 100%;
    left: 0;
  }
}
.c-slide .slick-prev::before,
.c-slide .slick-prev::after {
  content: "";
  display: block;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1);
}
.c-slide .slick-prev::before {
  background: url(../img/common/slide_btn_prev_blue_ov.png) no-repeat 0 0;
  background-size: 45px 45px;
}
@media (min-width: 768px) {
  .c-slide .slick-prev::before {
    background-size: 90px;
  }
}
.c-slide .slick-prev::after {
  background: url(../img/common/slide_btn_prev_blue.png) no-repeat 0 0;
  background-size: 45px 45px;
}
@media (min-width: 768px) {
  .c-slide .slick-prev::after {
    -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1);
    transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1); 
    background-size: 90px;
  }
}
@media (min-width: 768px) {
  .c-slide .slick-prev:hover::after {
    opacity: 0;
  }
}
@media (max-width: 767.98px) {
  .c-slide .slick-next {
    z-index: 1; 
    top: auto;
    right: 20px;
    bottom: -22px;
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 768px) {
  .c-slide .slick-next {
    right: -80px; 
    width: 90px;
    height: 90px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1340px) {
  .c-slide .slick-next {
    top: 100%;
    right: 0;
  }
}
.c-slide .slick-next::before,
.c-slide .slick-next::after {
  content: "";
  display: block;
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1);
}
.c-slide .slick-next::before {
  background: url(../img/common/slide_btn_next_blue_ov.png) no-repeat 0 0;
  background-size: 45px 45px;
}
@media (min-width: 768px) {
  .c-slide .slick-next::before {
    background-size: 90px;
  }
}
.c-slide .slick-next::after {
  background: url(../img/common/slide_btn_next_blue.png) no-repeat 0 0;
  background-size: 45px 45px;
}
@media (min-width: 768px) {
  .c-slide .slick-next::after {
    background-size: 90px;
  }
}
@media (min-width: 768px) {
  .c-slide .slick-next:hover::after {
    opacity: 0;
  }
}

/* ------------------------
  c-breadcrumb
------------------------ */

/* ------------------------
  c-sect_h
------------------------ */

/* ------------------------
  c-layout
------------------------ */

/* ------------------------
  c-setSlider　サムネイル付きスライダー
------------------------ */

.c-setSlider_main {
  display: block;
  margin: 0 !important;
  padding-bottom: 60px;
  -webkit-box-shadow: 9px 15px 30px 0px rgba(25, 146, 212, 0.18);
          box-shadow: 9px 15px 30px 0px rgba(25, 146, 212, 0.18);
}
@media (min-width: 768px) {
  .c-setSlider_main {
    padding: 0;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 1px 8px 18px 0px rgba(25, 146, 212, 0.2);
            box-shadow: 1px 8px 18px 0px rgba(25, 146, 212, 0.2); 

    -webkit-box-pack: center; 

        -ms-flex-pack: center; 

            justify-content: center;
  }
}
.c-setSlider_main .slick-list {
  padding: 0 !important;
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-list {
    border: 2px solid #fff;
    border-radius: 8px;
  }
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;
  }
}
.c-setSlider_main .slick-dots {
  bottom: 15px;
}
.c-setSlider_main .slick-dots li {
  margin: 0 6px;
  border-radius: 50%; 
  width: 13px;
  height: 13px;
}
.c-setSlider_main .slick-dots li button {
  border-radius: 50%; 
  width: 13px;
  height: 13px;
}
.c-setSlider_main .slick-dots li button::before {
  content: "";
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #3da2e0; 
  border-radius: 50%;
  width: 13px;
  height: 13px;
  background: #fff;
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-dots li button:hover::before {
    opacity: 0.75;
  }
}
.c-setSlider_main .slick-dots li.slick-active {
  -webkit-transform: scale(1.31);
      -ms-transform: scale(1.31);
          transform: scale(1.31);
}
.c-setSlider_main .slick-dots li.slick-active button::before {
  border-color: #fff;
  background: #3da2e0;
}
.c-setSlider_main .slick-arrow {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-arrow {
    z-index: 1;
    margin-top: -30px; 
    width: 90px;
    height: 90px;
  }
  .c-setSlider_main .slick-arrow::before {
    content: "";
    display: block;
    opacity: 1; 
    width: 100%;
    height: 100%;
  }
  .c-setSlider_main .slick-arrow:hover::before {
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  .c-setSlider_main .slick-prev {
    z-index: 1; 
    top: auto;
    bottom: 0;
    left: 20px;
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-prev {
    left: -100px; 
    width: 90px;
    height: 90px;
  }
}
.c-setSlider_main .slick-prev::before,
.c-setSlider_main .slick-prev::after {
  content: "";
  display: block;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-setSlider_main .slick-prev::before {
  background: url(../img/common/slide_btn_prev_blue_ov.png) no-repeat 0 0;
  background-size: 45px 45px;
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-prev::before {
    background-size: 90px;
  }
}
.c-setSlider_main .slick-prev::after {
  background: url(../img/common/slide_btn_prev_blue.png) no-repeat 0 0;
  background-size: 45px 45px;
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-prev::after {
    -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1);
    transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1); 
    background-size: 90px;
  }
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-prev:hover::after {
    opacity: 0;
  }
}
@media (max-width: 767.98px) {
  .c-setSlider_main .slick-next {
    z-index: 1; 
    top: auto;
    right: 20px;
    bottom: 0;
    width: 45px;
    height: 45px;
  }
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-next {
    right: -100px;
  }
}
.c-setSlider_main .slick-next::before,
.c-setSlider_main .slick-next::after {
  content: "";
  display: block;
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.c-setSlider_main .slick-next::before {
  background: url(../img/common/slide_btn_next_blue_ov.png) no-repeat 0 0;
  background-size: 45px 45px;
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-next::before {
    background-size: 90px;
  }
}
.c-setSlider_main .slick-next::after {
  background: url(../img/common/slide_btn_next_blue.png) no-repeat 0 0;
  background-size: 45px 45px;
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-next::after {
    -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1);
    transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1); 
    background-size: 90px;
  }
}
@media (min-width: 768px) {
  .c-setSlider_main .slick-next:hover::after {
    opacity: 0;
  }
}

@media (max-width: 767.98px) {
  .c-setSlider_thumb {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .c-setSlider_thumb img {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .c-setSlider_thumb .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translate(0, 0) !important;
        -ms-transform: translate(0, 0) !important;
            transform: translate(0, 0) !important; 

    -webkit-box-pack: center; 

        -ms-flex-pack: center; 

            justify-content: center;
  }
}

/* --------------------------------
   c-pageCurrent
-------------------------------- */

/* --------------------------------
   c-pageTab
-------------------------------- */

/* --------------------------------
   c-pricelinks
-------------------------------- */

/* --------------------------------
   c-accordion
-------------------------------- */

.c-accordionHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 26px;
  min-height: 67px;
  cursor: pointer; 

  -webkit-box-align: center; 

      -ms-flex-align: center; 

          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 768px) {
  .c-accordionHeader {
    padding: 26px 30px 26px 45px;
  }
}
.c-accordionHeader:hover {
  background-color: #55922e;
}
.c-accordionHeader:hover .c-accordionHeader_sub_plusIcon::before,
.c-accordionHeader:hover .c-accordionHeader_sub_plusIcon::after {
  background: #55922e;
}
.is-opened .c-accordionHeader {
  background-color: #55922e;
}
.is-opened .c-accordionHeader .c-accordionHeader_sub_plusIcon::before,
.is-opened .c-accordionHeader .c-accordionHeader_sub_plusIcon::after {
  background: #55922e;
}

.c-accordionHeader_sub_plusIcon {
  font-family: "NOW-GE", sans-serif;
  font-weight: bold;

  -ms-font-feature-settings: "normal";
}
.c-accordionHeader_sub_plusIcon::before,
.c-accordionHeader_sub_plusIcon::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  border-radius: 2px;
  -webkit-transform: translate(0, -50%) scale(1);
      -ms-transform: translate(0, -50%) scale(1);
          transform: translate(0, -50%) scale(1); 
  background: #fff;
}
.c-accordionHeader_sub_plusIcon::before {
  right: 9px;
  width: 10px;
  height: 2px;
}
@media (min-width: 768px) {
  .c-accordionHeader_sub_plusIcon::before {
    right: 12px;
    width: 15px;
    height: 3px;
  }
}
.c-accordionHeader_sub_plusIcon::after {
  right: 13px;
  width: 2px;
  height: 10px;
  -webkit-transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s transform cubic-bezier(0, 0, 0.58, 1), 0.3s opacity cubic-bezier(0, 0, 0.58, 1);
  transition: 0.3s transform cubic-bezier(0, 0, 0.58, 1), 0.3s opacity cubic-bezier(0, 0, 0.58, 1), 0.3s -webkit-transform cubic-bezier(0, 0, 0.58, 1);
}
@media (min-width: 768px) {
  .c-accordionHeader_sub_plusIcon::after {
    right: 18px;
    width: 3px;
    height: 15px;
  }
}
.is-opened .c-accordionHeader_sub_plusIcon::after {
  opacity: 0;
  -webkit-transform: translate(0, -50%) scale(0);
      -ms-transform: translate(0, -50%) scale(0);
          transform: translate(0, -50%) scale(0);
}

.c-accordionBody {
  display: none;
  background: #f0f7e8;
}
.is-opened .c-accordionBody {
  display: block !important;
}

/* --------------------------------
   c-pageContainer
-------------------------------- */

/* --------------------------------
   c-bracketsHeader
-------------------------------- */

.c-balloon {
  position: absolute;
  top: var(--y-position);
  left: var(--x-position);
  width: 27.4359vw;

  --x-position: -3.33333vw;
  --y-position: -4.35897vw;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .c-balloon {
    width: 180px; 

    --x-position: -30px;
    --y-position: -54px;
  }
}

/* --------------------------------
  faq
-------------------------------- */
.faq {
  padding-block: 80px;
}
@media (min-width: 768px) {
  .faq {
    padding-block: 120px;
  }
}

/* --------------------------------
   CTA
-------------------------------- */
.c-cta {
  position: relative;
}
.c-cta a:hover {
  color: #fff;
}

.c-cta_bg {
  overflow: hidden; 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100%  - 196px);
}
@media (min-width: 768px) {
  .c-cta_bg {
    height: 480px;
  }
}
.c-cta_bg.c-bg_gradation {
  background-image: -webkit-gradient(linear, left top, right top, from(#c0d84a), color-stop(35%, #a9c84a), color-stop(55%, #8cb840), color-stop(75%, #6fa538), to(#55922e));
  background-image: linear-gradient(90deg, #c0d84a 0%, #a9c84a 35%, #8cb840 55%, #6fa538 75%, #55922e 100%);
}
.c-cta_bg span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  border: solid calc(var(--cta-circle-width) / 4) transparent;
  border-color: transparent;
  border-radius: 0;
  width: var(--cta-circle-width);
  background-image: url(../img/common/logomark.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-origin: border-box;
  background-clip: border-box;
  opacity: 0.12;

  --cta-circle-width: 100px;
  aspect-ratio: 1;
}
.c-cta_bg span:nth-of-type(1) {
  top: -85px;
  left: -125px; 

  --cta-circle-width: 250px;
}
@media (min-width: 768px) {
  .c-cta_bg span:nth-of-type(1) {
    top: -60px;
    left: 32px; 

    --cta-circle-width: 380px;
  }
}
.c-cta_bg span:nth-of-type(2) {
  top: 15px;
  right: 99px; 

  --cta-circle-width: 61px;
}
@media (min-width: 768px) {
  .c-cta_bg span:nth-of-type(2) {
    top: auto;
    right: auto; 
    bottom: -43px;
    left: 27px;

    --cta-circle-width: 100px;
  }
}
.c-cta_bg span:nth-of-type(3) {
  display: none;
}
@media (min-width: 768px) {
  .c-cta_bg span:nth-of-type(3) {
    display: block;
    bottom: -43px;
    left: 337px; 

    --cta-circle-width: 170px;
  }
}
.c-cta_bg span:nth-of-type(4) {
  right: -100px; 
  bottom: 332px;

  --cta-circle-width: 200px;
}
@media (min-width: 768px) {
  .c-cta_bg span:nth-of-type(4) {
    top: 153px;
    right: 167px;
    bottom: auto; 

    --cta-circle-width: 130px;
  }
}
.c-cta_bg span:nth-of-type(5) {
  bottom: -95px; 
  left: -125px;

  --cta-circle-width: 320px;
}
@media (min-width: 768px) {
  .c-cta_bg span:nth-of-type(5) {
    right: -125px;
    bottom: -115px;
    left: auto; 

    --cta-circle-width: 350px;
  }
}

.c-cta_inner {
  position: relative;
  z-index: 1; 
  margin: auto;
  padding: 32px 20px 80px;
}
@media (min-width: 768px) {
  .c-cta_inner {
    padding: 92px 20px 100px;
    max-width: 1160px;
  }
}

.c-cta_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;

  gap: 27px;
}
@media (min-width: 768px) {
  .c-cta_box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 100px;
  }
}

.c-cta_box_img {
  padding: 0 14px;
}
@media (min-width: 768px) {
  .c-cta_box_img {
    margin-left: 20px;
    padding: 0;
    width: 500px;
  }
}
.c-cta_box_img img {
  width: 100%;
}

.c-cta_box_txts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;

  gap: 15px;
}
@media (min-width: 768px) {
  .c-cta_box_txts {
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .c-cta_box_txts .c-btn02 {
    margin: 0 auto;
  }
}

.c-cta_box_h {
  text-align: center; 
  color: #fff;
  font-family: "NOW-GE", sans-serif;
  font-size: 2.4rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .c-cta_box_h {
    text-align: start; 
    font-size: 4rem;
    line-height: 1.3;
  }
}
.c-cta_box_h .__lg {
  letter-spacing: -0.003em;
  font-family: "Hiragino Kaku Gothic W7 JIS2004", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YuGothic, sans-serif;
  font-family: "Montserrat", sans-serif; 
  font-size: 4.5rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .c-cta_box_h .__lg {
    font-size: 6.8rem;
  }
}
.c-cta_box_h .add-dot__char {
  display: inline-block; 
  position: relative;
}
.c-cta_box_h .add-dot__char::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.2rem;
  left: 50%;
  border-radius: 50%; 
  width: 0.2rem;
  height: 0.2rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
}
@media (min-width: 768px) {
  .c-cta_box_h .add-dot__char::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
@media (min-width: 768px) {
  .c-cta_box_h .c-btn02 {
    margin-left: 0;
  }
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* --------------------------------
   210119 pageSection_expirationNotice
-------------------------------- */

/* --------------------------------
   240530 annotation
-------------------------------- */

/* ---------------------------
20240723 record9045-ajner
--------------------------- */
/* ====================================================================
   ハンバーガーメニュー：親項目（.l-gnav_sitemap_h）を [リンク + 開閉ボタン] に分割するための追加スタイル
   旧構造（<button class="l-gnav_sitemap_h">…</button>）はそのまま動作します
   新構造（<div class="l-gnav_sitemap_h"> + <a class="l-gnav_sitemap_h_link"> + <button class="l-gnav_sitemap_toggle">）に対応
   ==================================================================== */
.l-header-sm .l-gnav_sitemap_h:has(.l-gnav_sitemap_h_link) {
  display: flex;
  align-items: stretch;
  padding: 0;
}
.l-header-sm .l-gnav_sitemap_h_link {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
}
.l-header-sm .l-gnav_sitemap_toggle {
  flex: 0 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--cyo-color-green);
}
.l-header-sm .l-gnav_sitemap_toggle .l-gnav_sitemap_icon {
  position: static;
  transform: none;
  font-size: 1.9rem;
}
/* アクティブ（展開）時の白文字化を新構造にも適用 */
.l-header-sm .is-active .l-gnav_sitemap_h_link .l-gnav_sitemap_h_title,
.l-header-sm .is-active .l-gnav_sitemap_h_link .l-gnav_sitemap_h_desc {
  color: #fff;
}
.l-header-sm .is-active .l-gnav_sitemap_toggle {
  color: #fff;
}
/* お役立ち情報（.l-gnav_sitemap_link）のアイコン位置を、新アコーディオンの＋アイコン位置（中心が右から 35px）に揃える */
.l-header-sm .l-gnav_sitemap_link .l-gnav_sitemap_icon {
  right: 25px;
}

/* ハンバーガーメニュー（.l-header-sm）を追従 CTA（z:5000）より前面に */
.l-header-sm {
  z-index: 6000;
}

/* ハンバーガーメニュー展開時：上部（ロゴ・✖️・無料お試し）と下部ユーティリティを固定し、
   中央のサイトマップのみスクロール可能に */
.l-header-sm.is-opened .l-gnav {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.l-header-sm.is-opened .l-gnav > .l-gnav_inner,
.l-header-sm.is-opened .l-gnav > .l-gnav_cvbtn_lead,
.l-header-sm.is-opened .l-gnav > .l-gnav_cvbtn,
.l-header-sm.is-opened .l-gnav > .l-gnav_sitemap_utility {
  flex: 0 0 auto;
}
.l-header-sm.is-opened .l-gnav > .l-gnav_sitemap {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
}
