@charset "UTF-8";
html {
  /* visibility: hidden; */
}

html.wf-active,
html.loading-delay {
  /* visibility: visible; */
}

/** Vendors */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

q:before, q:after {
  content: '';
  content: none;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button, input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

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

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

textarea {
  overflow: auto;
  vertical-align: top;
}

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

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

input[type="checkbox"], input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/** Abstracts */
.montserrat {
  font-family: 'Montserrat', sans-serif;
}

.sans-serif {
  font-family: 'Noto Sans JP', sans-serif;
}

.serif {
  font-family: 'Noto Serif JP', serif;
}

.shuei {
  /* font-family: dnp-shuei-mgothic-std, sans-serif; */
  font-weight: 400;
  font-style: normal;
}

.shuei-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.gothic {
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: bold;
  font-style: normal;
}

.avantgarde {
  font-family: 'ITC Avant Garde Pro Md', sans-serif;
  font-weight: 500;
  font-style: normal;
}

/** Base */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
}

:focus, :checked, :active, :link, :visited {
  color: inherit;
}

body, html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative;
  }
}

html {
  /* visibility: hidden; */
}

html.wf-active,
html.loading-delay {
  visibility: visible;
}

img, svg {
  height: auto;
  width: 100%;
}

.lazy {
  background-image: none;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.bg-blue {
  background-color: #00B9DC;
}

.bg-grey {
  background-color: #F2EFEE;
}

.bg-darkgrey {
  background-color: #DCE4EA;
}

.bold {
  font-weight: bold;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .sp--flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .sp--align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.ls-2 {
  letter-spacing: 2px;
}

.ls-3 {
  letter-spacing: 3px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-140 {
  padding-bottom: 140px;
}

body, html, div {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #221815;
}

p, span, li, strong, dl, dt, dd, th, td, a, time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: inherit;
  font-size: 16px;
}

a {
  text-decoration: none;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #221815;
}

h2 {
  text-align: center;
  display: block;
  position: relative;
  font-size: 31px;
}

h2 span {
  font-size: 32px;
  letter-spacing: 4px;
}

h2::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 46px;
  left: 50%;
  top: auto;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #333;
}

/** Layout */
.header {
  padding: 0 2vw 0;
  top: 0;
  left: 0;
  background: transparent;
  width: 100%;
  z-index: 60;
  height: calc(143 * 100vw / 750);
  min-height: 50px;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 80;
  background: #FFF;
}

@media screen and (min-width: 769px) {
  .header {
    height: 110px;
  }
}

.logo {
  max-width: 63px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .logo {
    max-width: calc(63 * 100vw / 750);
  }
}

.splash {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  overflow: hidden;
  opacity: 1;
  z-index: 999;
  -webkit-transition: all 2s ease-in;
  transition: all 2s ease-in;
}

.splash__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  max-width: 63px;
  width: 100%;
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

.splash__logo picture {
  display: block;
}

.splash.loaded {
  opacity: 0;
}

.splash.loaded .splash__logo {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .hamburger {
    height: 20px;
    position: relative;
    width: 50px;
    z-index: 20;
    margin-top: -10px;
    cursor: pointer;
  }
}

@media screen and (max-width: 575px) {
  .hamburger {
    width: 30px;
  }
}

@media screen and (max-width: 768px) {
  .hamburger span {
    background: #FF001D;
    height: 5px;
    left: 0;
    position: absolute;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%;
    top: -10px;
  }
}

@media screen and (max-width: 575px) {
  .hamburger span {
    height: 4px;
    top: 0;
    height: 3px;
  }
}

@media screen and (max-width: 768px) {
  .hamburger span:first-child {
    -webkit-animation: cross-reverse 0.4s ease forwards;
            animation: cross-reverse 0.4s ease forwards;
    -webkit-animation: none;
            animation: none;
  }
}

@media screen and (max-width: 768px) {
  .hamburger span:nth-child(2) {
    top: 4px;
    -webkit-animation: cross-second-reverse 0.4s ease forwards;
            animation: cross-second-reverse 0.4s ease forwards;
    -webkit-animation: none;
            animation: none;
  }
}

@media screen and (max-width: 575px) {
  .hamburger span:nth-child(2) {
    top: 9px;
  }
}

@media screen and (max-width: 768px) {
  .hamburger span:nth-child(3) {
    top: 18px;
    -webkit-animation: cross-second-reverse 0.4s ease forwards;
            animation: cross-second-reverse 0.4s ease forwards;
    -webkit-animation: none;
            animation: none;
  }
}

@media screen and (max-width: 768px) {
  .nav-is-open .hamburger span:first-child {
    -webkit-animation: cross 0.4s ease forwards;
            animation: cross 0.4s ease forwards;
    -webkit-animation: none;
            animation: none;
    -webkit-transform: rotate(45deg) translate(7px, 5px);
            transform: rotate(45deg) translate(7px, 5px);
  }
}

@media screen and (max-width: 768px) {
  .nav-is-open .hamburger span:nth-child(2) {
    top: -1px;
    -webkit-animation: cross-second 0.4s ease forwards;
            animation: cross-second 0.4s ease forwards;
    -webkit-animation: none;
            animation: none;
    -webkit-transform: rotate(-45deg) translate(0px, 0px);
            transform: rotate(-45deg) translate(0px, 0px);
  }
}

@media screen and (max-width: 575px) {
  .nav-is-open .hamburger span:nth-child(2) {
    top: 9px;
  }
}

@media screen and (max-width: 768px) {
  .nav-is-open .hamburger span:nth-child(3) {
    opacity: 0;
    -webkit-animation: cross-second 0.4s ease forwards;
            animation: cross-second 0.4s ease forwards;
    -webkit-animation: none;
            animation: none;
    -webkit-transform: rotate(-45deg) translate(0px, 0px);
            transform: rotate(-45deg) translate(0px, 0px);
  }
}

.nav-is-open .gnav {
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-is-open .gnav {
  height: 100vh;
}

@media screen and (max-width: 768px) {
  .gnav {
    background-color: #FFF;
    -webkit-box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.15);
            box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.15);
    left: 100vw;
    height: 100vh;
    margin-top: calc(143 * 100vw / 750);
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 100%;
    z-index: 15;
    color: #000;
  }
}

@media screen and (max-width: 768px) {
  .gnav li.submenu-item {
    border-bottom: 1px solid #39384A;
  }
}

@media screen and (max-width: 768px) {
  .gnav li.submenu-item a {
    padding: 15px 10px;
    display: block;
    font-weight: bold;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .gnav li.submenu-item a:hover::after {
    content: none;
  }
}

.menu {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 15px;
  font-size: 18px;
  gap: 15px;
}

@media screen and (min-width: 1200px) {
  .menu {
    gap: 20px;
    margin-left: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .menu {
    gap: 30px;
    margin-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.menu .submenu-item {
  list-style-type: none;
}

.menu .submenu-item a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  font-size: 18px;
}

@media screen and (min-width: 1000px) {
  .menu .submenu-item a {
    font-size: 19px;
  }
}

@media screen and (min-width: 751px) and (max-width: 850px) {
  .menu .submenu-item a {
    font-size: 15px;
  }
}

.menu .submenu-item a::after {
  content: "";
  background: #FF001D;
  height: 2px;
  width: 0;
  left: 0;
  bottom: -10px;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu .submenu-item a:hover {
  color: #FF001D;
}

.menu .submenu-item a:hover::after {
  content: "";
  width: 100%;
}

.menu .submenu-item .active {
  color: #FF001D;
}

.menu .submenu-item .active::after {
  content: "";
  width: 100%;
  background: #FF001D;
  height: 2px;
  left: 0;
  bottom: -10px;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .menu .submenu-item .active::after {
    content: none;
  }
}

@-webkit-keyframes cross {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(5px) rotateZ(45deg);
            transform: translateY(5px) rotateZ(45deg);
  }
}

@keyframes cross {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(5px) rotateZ(45deg);
            transform: translateY(5px) rotateZ(45deg);
  }
}

@-webkit-keyframes cross-second {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-9px);
            transform: translateY(-9px);
  }
  100% {
    -webkit-transform: translateY(-9px) rotateZ(-45deg);
            transform: translateY(-9px) rotateZ(-45deg);
  }
}

@keyframes cross-second {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-9px);
            transform: translateY(-9px);
  }
  100% {
    -webkit-transform: translateY(-9px) rotateZ(-45deg);
            transform: translateY(-9px) rotateZ(-45deg);
  }
}

@-webkit-keyframes cross-reverse {
  0% {
    -webkit-transform: translateY(5px) rotateZ(45deg);
            transform: translateY(5px) rotateZ(45deg);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes cross-reverse {
  0% {
    -webkit-transform: translateY(5px) rotateZ(45deg);
            transform: translateY(5px) rotateZ(45deg);
  }
  50% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes cross-second-reverse {
  0% {
    -webkit-transform: translateY(-5px) rotateZ(-45deg);
            transform: translateY(-5px) rotateZ(-45deg);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes cross-second-reverse {
  0% {
    -webkit-transform: translateY(-5px) rotateZ(-45deg);
            transform: translateY(-5px) rotateZ(-45deg);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#main {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  #main {
    margin-top: calc(80 * 100vw / 850);
  }
}

.main-inner-page {
  background: #39384A no-repeat;
  background-size: cover;
  position: relative;
  height: 150px;
}

@media screen and (min-width: 769px) {
  .main-inner-page {
    background: #39384A no-repeat;
    background-size: cover;
    height: 300px;
  }
}

.main-inner-page::after {
  content: "";
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 5;
}

.main-text-page {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 50px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .main-text-page {
    font-size: 25px;
  }
}

.main-content {
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  .main-content {
    margin-top: 20px;
  }
}

.sec-page-title {
  padding: 65px 0 0;
  margin: 0 0 45px;
  background: url(../images/common/gradient_ttl.png) repeat-x;
  background-size: auto;
}

#btnToTop {
  position: fixed;
  top: auto;
  left: auto;
  bottom: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: #00B9DC;
  display: none;
}

.footer {
  padding: 40px 0 55px;
}

@media screen and (max-width: 1199px) {
  .footer {
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    position: static;
    padding-bottom: calc(55 * 100vw / 750);
    padding-top: calc(75 * 100vw / 750);
  }
}

.footer-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 75px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1199px) {
  .footer-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.footer-main .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
}

@media screen and (max-width: 768px) {
  .footer-main .left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(35 * 100vw / 750);
  }
}

.footer-main .left-in {
  width: 63px;
  height: 78px;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-main .left-in:hover {
  opacity: 0.75;
}

.footer-main .right-in h5 {
  font-size: 20px;
  line-height: 24px;
}

@media screen and (max-width: 768px) {
  .footer-main .right-in h5 {
    text-align: center;
  }
}
@media screen and (max-width: 585px) {
  .footer-main .right-in h5 {
    font-size: 18px;
  }
}

.footer-main .right-in h5 span {
  font-size: 30px;
  line-height: 36px;
}
@media screen and (max-width: 585px) {
  .footer-main .right-in h5 span {
    font-size: 27px;
  }
}

.footer-main .right-in h5 strong {
  font-size: 17px;
  line-height: 20px;
}

.footer-main .right-in a {
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
}

.footer-main .right-in a:hover {
  color: #FF001D;
}

.footer-main .right-in p {
  font-size: 12px;
  line-height: 16px;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .footer-main .right-in p {
    text-align: center;
  }
}

.footer-main .right-in p.has-before::before {
  content: none;
  /* content: url(../images/common/logo_copyright.png);
  height: 36px;
  width: 36px;
  display: inline-block;
  -webkit-transform: translate(-10px, 10px);
          transform: translate(-10px, 10px); */
}

.footer-main .right .footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.footer-main .right .footer-menu a {
  font-size: 16px;
  line-height: 35px;
  position: relative;
}

.footer-main .right .footer-menu a::after {
  content: "";
  background: #FF001D;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-main .right .footer-menu a:hover {
  color: #FF001D;
}

.footer-main .right .footer-menu a:hover::after {
  content: "";
  width: 100%;
}

.footer-main .right .footer-menu a.active {
  color: #FF001D;
}

.footer-main .right .footer-menu a.active::after {
  content: "";
  background: #FF001D;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-main .right .footer-button {
  display: block;
  height: 35px;
  width: 190px;
  border: 1px solid #000;
  margin-left: auto;
  margin-top: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1199px) {
  .footer-main .right .footer-button {
    position: absolute;
    top: 20px;
    left: auto;
    right: 20px;
  }
}

.footer-main .right .footer-button span {
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer-main .right .footer-button span::after {
  content: url(../images/icons/chevron_round_red.svg);
  height: 15px;
  width: 15px;
  display: inline-block;
  -webkit-transform: translate(6px, 2px);
          transform: translate(6px, 2px);
}

.footer-main .right .footer-button:hover {
  background: #FF001D;
  border: 1px solid #FF001D;
}

.footer-main .right .footer-button:hover span {
  color: #fff;
}

.footer-main .right .footer-button:hover span::after {
  content: url(../images/icons/chevron_round_red_hover.svg);
  height: 15px;
  width: 15px;
  display: inline-block;
  -webkit-transform: translate(6px, 2px);
          transform: translate(6px, 2px);
}

.footer-main .right p {
  text-align: right;
  margin-top: 22px;
  line-height: 14px;
  font-size: 9px;
}

.footer-main .right p::before {
  content: none;
  /* content: url(../images/common/logo_copyright.png);
  height: 36px;
  width: 36px;
  display: inline-block;
  -webkit-transform: translate(-10px, 10px);
          transform: translate(-10px, 10px); */
}

.footer-main .right p a {
  font-size: 12px;
  line-height: 16px;
  text-decoration: underline;
}

.footer-main .right p a:hover {
  color: #FF001D;
}

/** Components */
/**
*
* RADIO BUTTONS
*
*/
input[type='radio']:after {
  content: '';
  width: 15px;
  height: 15px;
  top: -8px;
  left: -1px;
  position: relative;
  background-color: #fff;
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

input[type='radio']:checked:after {
  content: '';
  width: 15px;
  height: 15px;
  top: -8px;
  left: -1px;
  position: relative;
  background-color: grey;
  display: inline-block;
  visibility: visible;
  border: 2px solid white;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
}

/**
*
* STANDARD BUTTONS
*
*/
.btn-red {
  background: #FF001D;
  border: 1px solid #FF001D;
  border-radius: 5px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-red span {
  color: #fff;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .btn-red {
    background: #FF001D;
    border: 1px solid #FF001D;
  }
}

.btn-red:hover {
  background: #fff;
  border: 1px solid #FF001D;
}

.btn-red:hover span {
  color: #FF001D;
}

@media screen and (max-width: 768px) {
  .btn-red:hover {
    border: 1px solid #FF001D;
  }
  .btn-red:hover span {
    color: #FF001D;
  }
}

.btn-blue {
  background: #00B9DC;
  border: 1px solid #00B9DC;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 222px;
  height: 35px;
}

.btn-blue span {
  color: #fff;
  font-size: 18px;
}

.btn-blue:hover {
  background: #fff;
  border: 1px solid #00B9DC;
}

.btn-blue:hover span {
  color: #00B9DC;
}

@media screen and (max-width: 768px) {
  .btn-blue {
    background: #00b8db;
    border: 1px solid #00b8db;
  }
  .btn-blue:hover {
    border: 1px solid #00b8db;
  }
  .btn-blue:hover span {
    color: #00b8db;
  }
}

.btn-bg {
  background: url(../images/common/btn_02.png) no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .btn-bg {
    background: url(../images/common/btn_02.png) no-repeat;
    background-size: cover;
  }
}

.btn-bg:hover {
  background: url(../images/common/btn_02_hover.png) no-repeat;
  background-size: cover;
}

.btn-pickup {
  background: url(../images/top/btn_top_middle.png) no-repeat;
  background-size: cover;
  border: 1px solid #DCE4EA;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-pickup:hover {
  background: url(../images/top/btn_top_middle_hover.png) no-repeat;
  background-size: cover;
  border: 1px solid #FF001D;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .btn-pickup {
    background: url(../images/top/btn_top_middle.png) no-repeat;
    background-size: contain;
  }
  .btn-pickup:hover {
    background: url(../images/top/btn_top_middle_sp_hover.png) no-repeat;
    background-size: contain;
    border: none;
    border-radius: 5px;
  }
}

.breadcrumb {
  background: none;
  padding: 0 10px;
}

@media screen and (min-width: 769px) {
  .breadcrumb {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
}

.breadcrumb-ctn {
  margin-bottom: 10px;
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .breadcrumb-ctn {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.breadcrumb span {
  color: #666;
  font-size: 14px;
}

.breadcrumb a {
  text-decoration: underline;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.breadcrumb a::after {
  display: inline-block;
  margin: 0 10px;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb a span {
  color: #333;
  font-size: 14px;
  text-decoration: underline;
  text-decoration: none;
}

.is-move {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.is-move-1 {
  -webkit-transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, -webkit-transform 0.7s ease-out;
}

.is-move-2 {
  -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.is-move-3 {
  -webkit-transition: opacity 1.1s ease-out, -webkit-transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, -webkit-transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, transform 1.1s ease-out, -webkit-transform 1.1s ease-out;
}

.is-move-4 {
  -webkit-transition: opacity 1.3s ease-out, -webkit-transform 1.3s ease-out;
  transition: opacity 1.3s ease-out, -webkit-transform 1.3s ease-out;
  transition: opacity 1.3s ease-out, transform 1.3s ease-out;
  transition: opacity 1.3s ease-out, transform 1.3s ease-out, -webkit-transform 1.3s ease-out;
}

.is-move-5 {
  -webkit-transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out, -webkit-transform 1.5s ease-out;
}

.is-move-6 {
  -webkit-transition: opacity 1.1s ease-out, -webkit-transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, -webkit-transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, transform 1.1s ease-out, -webkit-transform 1.1s ease-out;
}

.is-move-7 {
  -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.is-move-8 {
  -webkit-transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, -webkit-transform 0.7s ease-out;
}

.is-move-9 {
  -webkit-transition: opacity 1.9s ease-out, -webkit-transform 1.9s ease-out;
  transition: opacity 1.9s ease-out, -webkit-transform 1.9s ease-out;
  transition: opacity 1.9s ease-out, transform 1.9s ease-out;
  transition: opacity 1.9s ease-out, transform 1.9s ease-out, -webkit-transform 1.9s ease-out;
}

.is-move-10 {
  -webkit-transition: opacity 2.1s ease-out, -webkit-transform 2.1s ease-out;
  transition: opacity 2.1s ease-out, -webkit-transform 2.1s ease-out;
  transition: opacity 2.1s ease-out, transform 2.1s ease-out;
  transition: opacity 2.1s ease-out, transform 2.1s ease-out, -webkit-transform 2.1s ease-out;
}

.is-move-ltr {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  opacity: 0;
  -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.is-move-ltr-1 {
  -webkit-transition: opacity 0.3s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.3s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.3s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.3s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.3s cubic-bezier(1, 1.13, 0.84, 0.88), transform 0.3s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.3s cubic-bezier(1, 1.13, 0.84, 0.88), transform 0.3s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.3s cubic-bezier(1, 1.13, 0.84, 0.88);
}

.is-move-ltr-2 {
  -webkit-transition: opacity 0.5s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.5s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.5s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.5s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.5s cubic-bezier(1, 1.13, 0.84, 0.88), transform 0.5s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.5s cubic-bezier(1, 1.13, 0.84, 0.88), transform 0.5s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.5s cubic-bezier(1, 1.13, 0.84, 0.88);
}

.is-move-ltr-3 {
  -webkit-transition: opacity 0.7s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.7s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.7s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.7s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.7s cubic-bezier(1, 1.13, 0.84, 0.88), transform 0.7s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.7s cubic-bezier(1, 1.13, 0.84, 0.88), transform 0.7s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.7s cubic-bezier(1, 1.13, 0.84, 0.88);
}

.is-move-ltr-4 {
  -webkit-transition: opacity 0.9s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.9s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.9s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.9s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.9s cubic-bezier(1, 1.13, 0.84, 0.88), transform 0.9s cubic-bezier(1, 1.13, 0.84, 0.88);
  transition: opacity 0.9s cubic-bezier(1, 1.13, 0.84, 0.88), transform 0.9s cubic-bezier(1, 1.13, 0.84, 0.88), -webkit-transform 0.9s cubic-bezier(1, 1.13, 0.84, 0.88);
}

.is-move-ltr-5 {
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 0.7s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 0.3s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 0.7s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 0.3s cubic-bezier(0.4, 0.61, 0.58, 0.11), transform 0.7s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 0.3s cubic-bezier(0.4, 0.61, 0.58, 0.11), transform 0.7s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 0.7s cubic-bezier(0.4, 0.61, 0.58, 0.11);
}

.is-move-ltr-6 {
  -webkit-transition: opacity 0.5s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 0.9s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 0.5s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 0.9s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 0.5s cubic-bezier(0.4, 0.61, 0.58, 0.11), transform 0.9s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 0.5s cubic-bezier(0.4, 0.61, 0.58, 0.11), transform 0.9s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 0.9s cubic-bezier(0.4, 0.61, 0.58, 0.11);
}

.is-move-ltr-7 {
  -webkit-transition: opacity 1.1s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 1.1s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 1.1s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 1.1s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 1.1s cubic-bezier(0.4, 0.61, 0.58, 0.11), transform 1.1s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 1.1s cubic-bezier(0.4, 0.61, 0.58, 0.11), transform 1.1s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 1.1s cubic-bezier(0.4, 0.61, 0.58, 0.11);
}

.is-move-ltr-8 {
  -webkit-transition: opacity 1.3s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 1.3s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 1.3s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 1.3s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 1.3s cubic-bezier(0.4, 0.61, 0.58, 0.11), transform 1.3s cubic-bezier(0.4, 0.61, 0.58, 0.11);
  transition: opacity 1.3s cubic-bezier(0.4, 0.61, 0.58, 0.11), transform 1.3s cubic-bezier(0.4, 0.61, 0.58, 0.11), -webkit-transform 1.3s cubic-bezier(0.4, 0.61, 0.58, 0.11);
}

.is-move-rtl {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  opacity: 0;
  -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.is-move-rtl-1 {
  -webkit-transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, -webkit-transform 0.7s ease-out;
}

.is-move-rtl-2 {
  -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.is-move-rtl-3 {
  -webkit-transition: opacity 1.1s ease-out, -webkit-transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, -webkit-transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, transform 1.1s ease-out, -webkit-transform 1.1s ease-out;
}

.is-move-rtl-4 {
  -webkit-transition: opacity 1.3s ease-out, -webkit-transform 1.3s ease-out;
  transition: opacity 1.3s ease-out, -webkit-transform 1.3s ease-out;
  transition: opacity 1.3s ease-out, transform 1.3s ease-out;
  transition: opacity 1.3s ease-out, transform 1.3s ease-out, -webkit-transform 1.3s ease-out;
}

.is-move-rtl-5 {
  -webkit-transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, -webkit-transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out, -webkit-transform 1.5s ease-out;
}

.is-move-rtl-6 {
  -webkit-transition: opacity 1.1s ease-out, -webkit-transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, -webkit-transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, transform 1.1s ease-out;
  transition: opacity 1.1s ease-out, transform 1.1s ease-out, -webkit-transform 1.1s ease-out;
}

.is-move-rtl-7 {
  -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.is-move-rtl-8 {
  -webkit-transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, -webkit-transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, -webkit-transform 0.7s ease-out;
}

.is-move-rtl-9 {
  -webkit-transition: opacity 1.9s ease-out, -webkit-transform 1.9s ease-out;
  transition: opacity 1.9s ease-out, -webkit-transform 1.9s ease-out;
  transition: opacity 1.9s ease-out, transform 1.9s ease-out;
  transition: opacity 1.9s ease-out, transform 1.9s ease-out, -webkit-transform 1.9s ease-out;
}

.is-move-rtl-10 {
  -webkit-transition: opacity 2.1s ease-out, -webkit-transform 2.1s ease-out;
  transition: opacity 2.1s ease-out, -webkit-transform 2.1s ease-out;
  transition: opacity 2.1s ease-out, transform 2.1s ease-out;
  transition: opacity 2.1s ease-out, transform 2.1s ease-out, -webkit-transform 2.1s ease-out;
}

.sec-steps .card.is-move {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  opacity: 0;
  -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.sec-cases h2.text-white.is-move {
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  opacity: 0;
  -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
}

.sec-cases h2.text-white.is-move::after {
  content: "";
  -webkit-animation: none;
          animation: none;
  opacity: 0;
  -webkit-transition: opacity 2.8s ease-out;
  transition: opacity 2.8s ease-out;
}

.sec-cases h2.text-white.is-move::before {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 1.7s ease-out, -webkit-transform 1.7s ease-out;
  transition: opacity 1.7s ease-out, -webkit-transform 1.7s ease-out;
  transition: opacity 1.7s ease-out, transform 1.7s ease-out;
  transition: opacity 1.7s ease-out, transform 1.7s ease-out, -webkit-transform 1.7s ease-out;
  -webkit-animation: none;
          animation: none;
}

.is-opacity {
  opacity: 0;
  -webkit-transition: opacity 2.1s ease-out;
  transition: opacity 2.1s ease-out;
}

@-webkit-keyframes dualBox {
  0% {
    -webkit-clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}

@keyframes dualBox {
  0% {
    -webkit-clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0 0, 0% 0%, 0% 100%, 0% 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}

@-webkit-keyframes dualBoxVertical {
  0% {
    -webkit-clip-path: polygon(0 0, 0% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(0 0, 0% 0%, 100% 0%, 100% 0%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    opacity: 1;
  }
}

@keyframes dualBoxVertical {
  0% {
    -webkit-clip-path: polygon(0 0, 0% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(0 0, 0% 0%, 100% 0%, 100% 0%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%);
    opacity: 1;
  }
}

@-webkit-keyframes showInset {
  0% {
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}

@keyframes showInset {
  0% {
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
    opacity: 1;
  }
}

.fancy {
  opacity: 1;
  -webkit-transform: translateY(0px) translateX(0);
          transform: translateY(0px) translateX(0);
}

.sec-steps .card.is-move.fancy {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.sec-cases h2.text-white.is-move.fancy {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

.sec-cases h2.text-white.is-move.fancy::after {
  content: "";
  opacity: 0;
  -webkit-animation: showInset 1s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0.9s forwards;
          animation: showInset 1s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0.9s forwards;
}

.sec-cases h2.text-white.is-move.fancy::before {
  content: "";
  opacity: 0;
  -webkit-animation: dualBox 0.7s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0.9s forwards;
          animation: dualBox 0.7s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0.9s forwards;
}

.sec-reform-payment h3.is-move.fancy::before,
.sec-reform-payment-white h3.is-move.fancy::before,
.sec-targets h2.is-move.fancy::before {
  content: "";
  opacity: 0;
  -webkit-animation: showInset 1s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0.9s forwards;
          animation: showInset 1s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0.9s forwards;
}

.will-be-fancy, .will-be-fancy-2, .will-be-fancy-3 {
  -webkit-animation: none;
          animation: none;
  visibility: hidden;
}

.will-be-fancy.fancy-dual-box {
  -webkit-animation: dualBox 1s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0s forwards;
          animation: dualBox 1s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0s forwards;
  visibility: visible;
}

.will-be-fancy-2.fancy-dual-box {
  -webkit-animation: dualBox 2s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0s forwards;
          animation: dualBox 2s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0s forwards;
  visibility: visible;
}

.will-be-fancy-3.fancy {
  -webkit-animation: dualBoxVertical 1s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0s forwards;
          animation: dualBoxVertical 1s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0s forwards;
  visibility: visible;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .is-opacity {
    opacity: 1;
    -webkit-transition: opacity 2.1s ease-out;
    transition: opacity 2.1s ease-out;
  }
  .will-be-fancy, .will-be-fancy-2, .will-be-fancy-3 {
    visibility: visible;
    -webkit-animation: dualBox 2s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0s forwards;
            animation: dualBox 2s cubic-bezier(0.61, 0.59, 0.2, 0.76) 0s forwards;
  }
  #typed-js-1 b::after {
    content: "リノベーション物件販売";
  }
  #typed-js-2 b::after {
    content: "今のお家をリノベーション";
  }
  #typed-js-3 b::after {
    content: "プチリフォーム";
  }
  .sec-cases h2.text-white.is-move {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .sec-cases h2.text-white.is-move::after, .sec-cases h2.text-white.is-move::before {
    opacity: 1;
  }
  .is-move {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .is-move-ltr {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
    transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
    transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
  }
  .is-move-rtl {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    -webkit-transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
    transition: opacity 0.9s ease-out, -webkit-transform 0.9s ease-out;
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
    transition: opacity 0.9s ease-out, transform 0.9s ease-out, -webkit-transform 0.9s ease-out;
  }
}

.sec-tops h2 p strong::after {
  -webkit-animation: blink-caret .75s step-end 3.5s infinite;
          animation: blink-caret .75s step-end 3.5s infinite;
  border-right: .15em solid #000;
  /* The typwriter cursor */
}

h2.typed p {
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: .15em solid #000;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 auto;
  /* Gives that scrolling effect as the typing happens */
  letter-spacing: .15em;
  /* Adjust as needed */
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -webkit-animation: none;
          animation: none;
}

h2.typed.will-be-typed p {
  -webkit-animation: typing 3.5s steps(40, end);
          animation: typing 3.5s steps(40, end);
}

h2.typed.white p {
  border-right: .15em solid #fff;
  /* The typwriter cursor */
  -webkit-animation: none;
          animation: none;
}

h2.typed.white.will-be-typed p {
  -webkit-animation: typing 3.5s steps(40, end), blink-caret-white 0.75s step-end infinite;
          animation: typing 3.5s steps(40, end), blink-caret-white 0.75s step-end infinite;
}

/* The typing effect */
@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@-webkit-keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #000;
  }
  100% {
    border: none;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #000;
  }
  100% {
    border: none;
  }
}

@-webkit-keyframes blink-caret-white {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #fff;
  }
}

@keyframes blink-caret-white {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #fff;
  }
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
  display: inline-block;
  width: 3px;
  height: 23px;
  left: auto;
  top: auto;
  right: -15px;
  top: 3px;
  position: relative;
  background: #000;
}

@media screen and (min-width: 769px) {
  .blink {
    animation: blink-animation 1s steps(5, start) infinite;
    -webkit-animation: blink-animation 1s steps(5, start) infinite;
    width: 4px;
    height: 32px;
    bottom: -20px;
    right: -35px;
  }
}

.blink--white {
  background: #fff;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

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

@media screen and (min-width: 769px) {
  .cases {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cases .case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  background-size: contain;
  background-position: left center;
  -webkit-box-shadow: 1px 1px 1px #f6e615, 2px 2px 1px #f6e615, 3px 3px 1px #f6e615, 4px 4px 1px #f6e615;
          box-shadow: 1px 1px 1px #f6e615, 2px 2px 1px #f6e615, 3px 3px 1px #f6e615, 4px 4px 1px #f6e615;
  padding: 10px 0px 10px 5px;
  height: 60px;
  width: 100%;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (min-width: 769px) {
  .cases .case {
    background-position: top center;
    height: 357px;
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    -webkit-box-shadow: 1px 1px 1px #f6e615, 2px 2px 1px #f6e615, 3px 3px 1px #f6e615, 4px 4px 1px #f6e615, 5px 5px 1px #f6e615, 6px 6px 1px #f6e615, 7px 7px 1px #f6e615, 8px 8px 1px #f6e615;
            box-shadow: 1px 1px 1px #f6e615, 2px 2px 1px #f6e615, 3px 3px 1px #f6e615, 4px 4px 1px #f6e615, 5px 5px 1px #f6e615, 6px 6px 1px #f6e615, 7px 7px 1px #f6e615, 8px 8px 1px #f6e615;
    max-width: 400px;
  }
}

@media screen and (min-width: 1000px) {
  .cases .case {
    padding: 30px;
  }
}

@media screen and (max-width: 370px) {
  .cases .case {
    height: 80px;
  }
}

.cases .case__desc {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 25px;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .cases .case__desc {
    text-align: center;
    font-size: 20px;
    line-height: 51px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 1000px) {
  .cases .case__desc {
    font-size: 22px;
  }
}

@media screen and (min-width: 1200px) {
  .cases .case__desc {
    font-size: 28px;
  }
}

.cases .case__nb {
  width: 80px;
  height: 60px;
  margin-top: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (min-width: 769px) {
  .cases .case__nb {
    border: none;
    width: 120px;
    height: 120px;
    margin-top: 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 370px) {
  .cases .case__nb {
    height: 80px;
  }
}

.cases .case__nb p {
  font-weight: bold;
  font-size: 40px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (min-width: 769px) {
  .cases .case__nb p {
    font-size: 70px;
  }
}

.cases .case__nb span {
  background-size: contain;
  width: 14px;
  height: 7px;
  margin-top: 2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (min-width: 769px) {
  .cases .case__nb span {
    width: 24px;
    height: 12px;
    margin-top: 17px;
  }
}

.cases .case:hover {
  height: calc(60px + 4px);
  width: calc(100% + 4px);
  -webkit-box-shadow: 0px 0px 0px #f6e615;
          box-shadow: 0px 0px 0px #f6e615;
}

@media screen and (min-width: 769px) {
  .cases .case:hover {
    -webkit-transform: translate(8px, 8px);
            transform: translate(8px, 8px);
    height: 357px;
  }
}

@media screen and (max-width: 370px) {
  .cases .case:hover {
    height: calc(80px + 4px);
  }
}

.cases .case:hover .case__nb {
  height: 64px;
  width: 84px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (min-width: 769px) {
  .cases .case:hover .case__nb {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 370px) {
  .cases .case:hover .case__nb {
    height: 84px;
  }
}

.cases .case:hover .case__nb p {
  color: #fff;
}

.cases .case:hover .case__nb span {
  background-size: contain;
}

.building-cards {
  margin-top: 25px;
}

@media screen and (min-width: 769px) {
  .building-cards {
    margin-top: 35px;
  }
}

.building-cards .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.building-cards .card:not(:first-of-type) {
  margin-top: 15px;
}

@media screen and (min-width: 769px) {
  .building-cards .card:not(:first-of-type) {
    margin-top: 20px;
  }
}

@media screen and (min-width: 769px) {
  .building-cards .card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(312px, 618px) minmax(627px, 1fr);
        grid-template-columns: minmax(312px, 618px) minmax(627px, 1fr);
  }
}

@media screen and (min-width: 769px) and (-ms-high-contrast: active), screen and (min-width: 769px) and (-ms-high-contrast: none) {
  .building-cards .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.building-cards .card__left {
  background: #ededed;
}

@media screen and (min-width: 769px) {
  .building-cards .card__left {
    max-width: 618px;
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (-ms-high-contrast: active), screen and (min-width: 769px) and (-ms-high-contrast: none) {
  .building-cards .card__left {
    max-width: 100%;
    width: auto;
  }
}

.building-cards .card__right {
  background: #ededed;
  padding: 15px 10px 20px;
}

@media screen and (min-width: 769px) {
  .building-cards .card__right {
    padding: 30px 15px 25px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 769px) and (-ms-high-contrast: active), screen and (min-width: 769px) and (-ms-high-contrast: none) {
  .building-cards .card__right {
    max-width: 800px;
  }
}

.building-cards .card__thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .building-cards .card__thumb {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 769px) {
  .building-cards .card__thumb picture {
    -o-object-fit: fill;
       object-fit: fill;
    width: 100%;
  }
}

.building-cards .card__ttl {
  font-weight: bold;
  font-size: 18px;
}

@media screen and (min-width: 769px) {
  .building-cards .card__ttl {
    font-size: 24px;
  }
}

.building-cards .card__desc {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (min-width: 769px) {
  .building-cards .card__desc {
    font-size: 17px;
    margin-top: 15px;
    line-height: 35px;
    line-height: 1.7;
  }
}

.building-cards .card__price {
  margin-top: 25px;
}

.building-cards .card__price span:first-child {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 16px;
  margin-right: 20px;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (min-width: 769px) {
  .building-cards .card__price span:first-child {
    font-size: 20px;
    margin-right: 10px;
  }
}

.building-cards .card__price span:nth-child(2) {
  margin-right: 5px;
  font-size: 45px;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .building-cards .card__price span:nth-child(2) {
    font-size: 60px;
  }
}

.building-cards .card__price span:last-child {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .building-cards .card__price span:last-child {
    font-size: 24px;
  }
}

.building-cards .card__details {
  margin-top: 10px;
  background: #fff;
  padding: 10px;
}

@media screen and (min-width: 769px) {
  .building-cards .card__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.building-cards .card__details .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.1;
}

.building-cards .card__details .line:not(:first-of-type) {
  margin-top: 15px;
}

@media screen and (min-width: 769px) {
  .building-cards .card__details .line:not(:first-of-type) {
    margin-top: 0;
  }
}

@media screen and (min-width: 769px) {
  .building-cards .card__details .line {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

.building-cards .card__details .line span {
  width: 50%;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}

.building-cards .card__details .line span:nth-child(2) {
  text-align: left;
}

.building-cards .card__details .line span:nth-child(2)::after {
  content: "";
  position: absolute;
  right: auto;
  bottom: auto;
  left: 0;
  top: 5px;
  height: 15px;
  width: 2px;
  background-color: #ededed;
}

@media screen and (min-width: 769px) {
  .building-cards .card__details .line span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .building-cards .card__details .line span:not(:last-child) {
    border-right: 2px solid #ededed;
  }
}

.building-cards .card__details .line span.text-center {
  text-align: center;
}

.swiper {
  height: 630px;
}

@media screen and (max-width: 768px) {
  .swiper {
    height: auto;
  }
}

.swiper-slide {
  position: relative;
  background: #00B9DC;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .swiper-slide {
    background: #00b8db;
  }
}

.swiper-slide .full {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background: url("../images/top/bn_02.png") no-repeat center center;
  background-size: contain;
}

@media screen and (min-width: 1350px) {
  .swiper-slide .full {
    background: url("../images/top/bn_02_full.png") no-repeat center center;
    background-size: contain;
  }
}

.swiper-slide .full--first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background: url("../images/top/bn_001.png?20231205") no-repeat right center;
  background-size: auto 100%;
}
@media screen and (min-width: 1450px) {
  .swiper-slide .full--first {
    background: url("../images/top/bn_001.png?20231205") no-repeat center center;
    background-size: auto 100%;
  }
}
@media screen and (max-width: 1200px) {
  .swiper-slide .full--first {
    background: url("../images/top/bn_001.png?20231128") no-repeat center center;
    background-size: contain;
  }
}

.full_04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: url("https://velfare.co.jp/wp-content/themes/velfare/assets/images/top/slide_04.jpg") no-repeat center center;
  background-size: contain;
}
.full_05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: url("../images/top/slide_05.png") no-repeat center center;
  background-size: contain;
}
.full_06 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: url("../images/top/slide_06.png") no-repeat center center;
  background-size: contain;
}
.full_07 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background: url("../images/top/slide_07.png") no-repeat center center;
  background-size: contain;
}
.swiper-slide .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: calc(60 * 100vw / 1900);
          column-gap: calc(60 * 100vw / 1900);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  width: 100%;
  margin: 165px auto 0;
  padding: 0 5px 0 5px;
}

@media screen and (max-width: 768px) {
  .swiper-slide .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(70 * 100vw / 850);
  }
}

.swiper-slide .left {
  max-width: 400px;
  color: #fff;
  font-size: 16px;
}

.swiper-slide .left p:first-of-type {
  margin-top: 15px;
}

.swiper-slide .right {
  color: #fff;
}

.swiper-slide .right p {
  font-size: 20px;
}

.swiper-slide .grass-bottom {
  background: url("../images/top/slide_01_bottom.png") repeat-x left bottom;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
}

.swiper-slide .flag {
  position: absolute;
  left: auto;
  bottom: 25px;
  right: 100px;
  z-index: 5;
  width: 216px;
  height: 143px;
}

@media screen and (max-width: 768px) {
  .swiper-slide .flag {
    max-width: calc(216 * 100vw / 850);
  }
}

.swiper-slide .cloud-left, .swiper-slide .cloud-right {
  position: absolute;
  z-index: 5;
  width: 427px;
  height: 144px;
}

.swiper-slide .cloud-left {
  top: auto;
  right: auto;
  bottom: 32px;
  left: -208px;
}

.swiper-slide .cloud-right {
  top: -23px;
  left: auto;
  right: -216px;
  bottom: auto;
}

.swiper-pagination-bullet {
  background: #fff;
  border: 1px solid #fff;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0;
}

.swiper-pagination-bullet-active {
  background: #00B9DC;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullets {
  gap: 15px;
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-container {
  position: relative;
  max-width: 1004px;
  width: 100%;
  margin: 50px auto;
}

@media screen and (max-width: 768px) {
  .swiper-container {
    width: auto;
  }
}

.swiper-carousel {
  position: relative;
  height: 292px;
  margin: auto;
  overflow: hidden;
  z-index: 10;
  max-width: 901px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .swiper-carousel {
    max-width: auto;
    overflow: visible;
    max-width: 274px;
  }
}

.swiper-carousel .swiper-slide {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .swiper-carousel .swiper-slide {
    max-width: 274px;
  }
}

.swiper-carousel-wrapper {
  margin: auto;
}

.swiper-carousel-slide {
  background-color: purple;
  max-width: 274px;
}

#swiper-carousel-button-next {
  background: url(../images/icons/arw_swiper_right.png) no-repeat;
  background-size: contain;
  width: 37px;
  height: 37px;
  top: 50%;
  right: 0;
  position: absolute;
  z-index: 15;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#swiper-carousel-button-next::after {
  content: none;
}

@media screen and (max-width: 768px) {
  #swiper-carousel-button-next {
    top: calc(100% + 70px);
    left: calc(50% + 13px);
  }
}

#swiper-carousel-button-prev {
  background: url(../images/icons/arw_swiper_left.png) no-repeat;
  background-size: contain;
  width: 37px;
  height: 37px;
  top: 50%;
  left: 0;
  position: absolute;
  z-index: 15;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#swiper-carousel-button-prev::after {
  content: none;
}

@media screen and (max-width: 768px) {
  #swiper-carousel-button-prev {
    top: calc(100% + 70px);
    left: calc(50% - 40px);
  }
}

.slide-card {
  display: block;
}

.slide-card__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slide-card__infos {
  padding: 22px 12px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .slide-card__infos {
    padding: 16px 12px;
  }
}

.slide-card__desc {
  font-size: 14px;
}

.slide-card__price {
  font-size: 12px;
  text-align: right;
}

.slide-card:hover .slide-card__infos {
  color: #fff;
  background: #30373E;
}

.blue {
  background-color: blue;
}

.red {
  background-color: red;
}

/** Pages */
.swiper-button-next, .swiper-button-prev {
  color: #fff;
}

.swiper-button-next {
  right: 30px;
  top: 300px;
}

.swiper-button-prev {
  left: 30px;
  top: 300px;
}

@media screen and (max-width: 768px) {
  .sec-top-intro .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 980px;
    width: 100%;
    margin: 165px auto 0;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .sec-top-intro .flex {
    background: #00b8db;
    padding-top: calc(120 * 100vw / 750);
    padding-bottom: calc(340 * 100vw / 750);
    padding-left: calc(30 * 100vw / 750);
    padding-right: calc(30 * 100vw / 750);
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(70 * 100vw / 750);
    margin: 0;
    margin-top: calc(146 * 100vw / 750);
  }
}

@media screen and (max-width: 768px) {
  .sec-top-intro .left {
    max-width: 400px;
    color: #fff;
    font-size: 16px;
  }
  .sec-top-intro .right {
    color: #fff;
  }
  .sec-top-intro .right p {
    font-size: 20px;
  }
  .sec-top-intro .grass-bottom {
    background: url("../images/top/slide_01_bottom.png") repeat-x left bottom;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: 100px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .sec-top-intro .grass-bottom {
    background: url("../images/top/slide_01_bottom_sp.png") repeat-x left bottom;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    width: 100%;
    height: calc(100 * 100vw / 750);
    background-size: cover;
  }
}

@media screen and (max-width: 768px) {
  .sec-top-intro .flag {
    position: absolute;
    left: auto;
    bottom: 25px;
    right: 100px;
    z-index: 5;
    width: 216px;
    height: 143px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .sec-top-intro .flag {
    max-width: calc(216 * 100vw / 750);
    height: auto;
    bottom: calc(45 * 100vw / 750);
    right: calc(35 * 100vw / 750);
  }
}

@media screen and (max-width: 768px) {
  .sec-top-intro .cloud-left, .sec-top-intro .cloud-right {
    position: absolute;
    z-index: 5;
    width: 427px;
    height: 144px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .sec-top-intro .cloud-left, .sec-top-intro .cloud-right {
    max-width: calc(427 * 100vw / 750);
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .sec-top-intro .cloud-left {
    top: auto;
    right: auto;
    bottom: calc(139 * 100vw / 750);
    left: calc(-157 * 100vw / 750);
  }
  .sec-top-intro .cloud-right {
    top: calc(-25 * 100vw / 750);
    left: auto;
    right: calc(-180 * 100vw / 750);
    bottom: auto;
  }
}

.sec-top {
  padding: 80px 0 75px;
}

@media screen and (max-width: 768px) {
  .sec-top {
    padding-top: calc(75 * 100vw / 750);
    padding-bottom: calc(70 * 100vw / 750);
  }
}

.sec-top.sec-notifications {
  padding: 40px 0;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications {
    padding-left: calc(100 * 100vw / 750);
    padding-right: calc(100 * 100vw / 750);
    padding-top: calc(55 * 100vw / 750);
    padding-bottom: calc(55 * 100vw / 750);
  }
}

.sec-top.sec-notifications .container {
  padding: 0;
}

.sec-top.sec-notifications .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 980px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.sec-top.sec-notifications .left {
  margin-right: 35px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications .left {
    margin-right: 0;
  }
}

.sec-top.sec-notifications .left .btn {
  width: 210px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications .left .btn {
    width: 148px;
  }
}

.sec-top.sec-notifications .left .btn span {
  font-size: 19px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications .left .btn span {
    font-size: 16px;
  }
}

.sec-top.sec-notifications .right {
  margin-left: 35px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications .right {
    margin-top: calc(20 * 100vw / 750);
    margin-left: 0;
  }
}

.sec-top.sec-notifications .right a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  line-height: 1.5;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications .right a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: calc(15 * 100vw / 750);
  }
}

.sec-top.sec-notifications .right a:first-child {
  margin-top: -3px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications .right a:first-child {
    margin: 0;
  }
}

.sec-top.sec-notifications .right a:not(:first-child) {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications .right a:not(:first-child) {
    margin-top: calc(15 * 100vw / 750);
  }
}

.sec-top.sec-notifications .right a:hover dd {
  text-decoration: underline;
  color: #FF001D;
}

.sec-top.sec-notifications .right a time {
  margin-right: 15px;
  color: inherit;
  font-size: 16px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications .right a time {
    margin: 0;
    line-height: 1.7;
  }
}

.sec-top.sec-notifications .right a dd {
  margin-left: 15px;
  color: inherit;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-notifications .right a dd {
    margin: 0;
    line-height: 1.7;
  }
}

.sec-top.sec-business {
  padding: 85px 0 105px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business {
    padding-top: calc(90 * 100vw / 750);
    padding-bottom: calc(80 * 100vw / 750);
  }
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .container {
    padding-left: calc(20 * 100vw / 750);
    padding-right: calc(20 * 100vw / 750);
  }
}

.sec-top.sec-business::after {
  content: "";
  left: 0;
  top: auto;
  bottom: 0;
  position: absolute;
  background: url(../images/common/bg_herb_middle.png) repeat-x;
  height: 312px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business::after {
    background: url(../images/common/bg_herb_middle_sp.png) repeat-x;
    background-size: cover;
    height: calc(207 * 100vw / 750);
  }
}

.sec-top.sec-business .right svg {
  max-width: 421px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec-top.sec-business .decoration {
  position: absolute;
  z-index: 1;
}

.sec-top.sec-business .decoration--left {
  left: 7px;
  top: 100px;
  width: 213px;
  height: 484px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .decoration--left {
    height: auto;
    width: calc(213 * 100vw / 750);
    top: calc(20 * 100vw / 750);
    left: calc(-33 * 100vw / 750);
  }
}

.sec-top.sec-business .decoration--right {
  top: 10px;
  left: auto;
  right: 75px;
  width: 281px;
  height: 357px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .decoration--right {
    height: auto;
    width: calc(281 * 100vw / 750);
    top: calc(40 * 100vw / 750);
    right: calc(-30 * 100vw / 750);
  }
}

.sec-top.sec-business .decoration--middle-left {
  left: 70px;
  top: auto;
  bottom: 195px;
  width: 215px;
  height: 443px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .decoration--middle-left {
    display: none;
  }
}

.sec-top.sec-business .decoration--middle-right {
  top: auto;
  bottom: 290px;
  left: auto;
  right: 89px;
  width: 287px;
  height: 357px;
  z-index: 4;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .decoration--middle-right {
    bottom: calc(635 * 100vw / 750);
    right: calc(-8 * 100vw / 750);
    height: auto;
    max-width: calc(287 * 100vw / 750);
    z-index: 6;
  }
}

.sec-top.sec-business .cloud-right {
  top: auto;
  bottom: 540px;
  right: -265px;
  position: absolute;
  width: 508px;
  height: 171px;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .cloud-right {
    max-width: calc(508 * 100vw / 750);
    height: auto;
    right: calc(-218 * 100vw / 750);
    bottom: calc(730 * 100vw / 750);
  }
}

.sec-top.sec-business .cloud-left {
  top: auto;
  bottom: 155px;
  left: -250px;
  position: absolute;
  width: 500px;
  height: 168px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .cloud-left {
    max-width: calc(500 * 100vw / 750);
    height: auto;
    left: calc(-275 * 100vw / 750);
    bottom: calc(356 * 100vw / 750);
    z-index: 20;
  }
}

.sec-top.sec-business span.wave-underline {
  position: relative;
  color: #00B9DC;
}

.sec-top.sec-business span.wave-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: no-repeat;
  background-size: contain;
  width: 100%;
  height: 5px;
}

.sec-top.sec-business .first {
  margin-top: 75px;
}

.sec-top.sec-business .first .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 45px;
  max-width: 1015px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .first .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    max-width: auto;
  }
}

.sec-top.sec-business .first .left {
  max-width: 450px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .first .left {
    max-width: calc(450 * 100vw * 750);
    margin-bottom: 30px;
    width: auto;
  }
}

.sec-top.sec-business .first .left picture {
  max-width: 450px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .first .left picture {
    max-width: calc(450 * 100vw * 750);
  }
}

.sec-top.sec-business .first .right h4 {
  color: #00B9DC;
  font-size: 46px;
  line-height: 58px;
}

.sec-top.sec-business .first .right h4 span.wave-underline {
  font-size: 46px;
  position: relative;
  line-height: 58px;
}

.sec-top.sec-business .first .right h4 span.wave-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 24px;
  background: url(../images/icons/yellow_wave.png) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .first .right .text-xl-container {
    width: 100%;
    margin: 0 auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.sec-top.sec-business .first .right p.text-xl {
  font-size: 18px;
  color: #3F3C3C;
  margin-top: 25px;
  line-height: 31px;
}

.sec-top.sec-business .first .right ul {
  margin-top: 30px;
  list-style-type: none;
}

.sec-top.sec-business .first .right ul li {
  list-style-type: none;
  position: relative;
  padding-left: 12px;
  line-height: 25px;
  color: #3F3C3C;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .sec-top.sec-business .first .right ul li {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 215px 1fr;
        grid-template-columns: 215px 1fr;
  }
}

@media screen and (min-width: 769px) {
  .sec-top.sec-business .first .right ul li:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.sec-top.sec-business .first .right ul li span {
  line-height: 25px;
  color: #3F3C3C;
  font-size: 14px;
}

.sec-top.sec-business .first .right ul li::before {
  content: "●";
  font-size: 9px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.sec-top.sec-business .first .btn {
  max-width: 222px;
  height: 35px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 35px;
  border: none;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .first .btn {
    height: 43px;
    width: 268px;
    max-width: 100%;
    margin: 35px auto 0;
  }
}

.sec-top.sec-business .first .btn span::after {
  content: url(../images/icons/chevron_right.png);
  color: #fff;
  font-size: 20px;
}

.sec-top.sec-business .first .btn:hover {
  border: #00b8db 1px solid;
}

.sec-top.sec-business .first p.text-center {
  line-height: 26px;
  font-size: 14px;
  color: #00b8db;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .first p.text-center {
    margin-top: 10px;
  }
}

.sec-top.sec-business .second {
  text-align: center;
  margin-top: 120px;
}

.sec-top.sec-business .second svg {
  max-width: 943px;
}

.sec-top.sec-business .second p, .sec-top.sec-business .second span {
  font-size: 24px;
}

.sec-top.sec-business .second span:last-child {
  color: #FF001D;
}

.sec-top.sec-business .third {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  margin: 70px auto 0;
  gap: 35px;
  max-width: 1063px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .third {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: calc(100 * 100vw / 750);
  }
}

.sec-top.sec-business .third .left, .sec-top.sec-business .third .right, .sec-top.sec-business .third .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 85px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .third .left, .sec-top.sec-business .third .right, .sec-top.sec-business .third .center {
    padding-bottom: calc(140 * 100vw / 750);
  }
}

.sec-top.sec-business .third .left picture, .sec-top.sec-business .third .right picture, .sec-top.sec-business .third .center picture {
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .third .left picture, .sec-top.sec-business .third .right picture, .sec-top.sec-business .third .center picture {
    max-width: 436px;
  }
}

.sec-top.sec-business .third .left p, .sec-top.sec-business .third .right p, .sec-top.sec-business .third .center p {
  line-height: 26px;
  font-size: 16px;
  color: #3F3C3C;
  margin-top: -40px;
}

.sec-top.sec-business .third .left p.text-center, .sec-top.sec-business .third .right p.text-center, .sec-top.sec-business .third .center p.text-center {
  line-height: 26px;
  font-size: 14px;
  color: #00b8db;
  position: absolute;
  left: 50%;
  top: auto;
  bottom: -35px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
}

.sec-top.sec-business .third .left ul, .sec-top.sec-business .third .right ul, .sec-top.sec-business .third .center ul {
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .third .left ul, .sec-top.sec-business .third .right ul, .sec-top.sec-business .third .center ul {
    margin-top: calc(25 * 100vw / 750);
  }
}

.sec-top.sec-business .third .left li, .sec-top.sec-business .third .right li, .sec-top.sec-business .third .center li {
  list-style-type: none;
  line-height: 25px;
  position: relative;
  padding-left: 12px;
  color: #3F3C3C;
  font-size: 14px;
  text-align: left;
}

.sec-top.sec-business .third .left li::before, .sec-top.sec-business .third .right li::before, .sec-top.sec-business .third .center li::before {
  content: "●";
  font-size: 9px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .third .center {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .third .right {
    margin-top: 40px;
  }
}

.sec-top.sec-business .third .btn {
  margin-top: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: auto;
  bottom: 0;
  border: none;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .third .btn {
    margin: auto;
    height: 43px;
    width: 268px;
    max-width: 100%;
  }
}

.sec-top.sec-business .third .btn:hover {
  border: #00b8db 1px solid;
}

.sec-top.sec-business .fourth {
  margin: 140px auto 0;
  position: relative;
}

.sec-top.sec-business .fourth div {
  position: relative;
  max-width: 956px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-business .fourth div {
    z-index: 15;
  }
}

.sec-top.sec-business .fourth p {
  position: absolute;
  font-size: 20px;
  color: #fff;
  line-height: 34px;
  top: 175px;
  left: 440px;
}

@media screen and (max-width: 999px) {
  .sec-top.sec-business .fourth p {
    font-size: 16px;
    line-height: 26px;
    left: calc(485 * 100vw / 1000);
    top: calc(133 * 100vw / 1000);
    width: 330px;
  }
}

.sec-top.sec-pickup .btn {
  height: 54px;
  max-width: 437px;
  width: 100%;
  display: block;
  margin: auto;
  margin-top: 66px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-pickup .btn {
    margin-top: 123px;
  }
}

.sec-top.sec-pickup .btn picture {
  height: 54px;
  max-width: 437px;
  width: 100%;
}

.sec-top.sec-partners {
  padding: 60px 0 70px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-partners {
    padding-top: calc(80 * 100vw / 750);
    padding-bottom: calc(90 * 100vw / 750);
  }
}

.sec-top.sec-partners .row {
  max-width: 847px;
  width: 100%;
  margin: 63px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
      grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-partners .row {
    margin-top: 25px;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .sec-top.sec-partners .row:first-of-type {
    margin-top: calc(75 * 100vw / 750);
  }
}

.sec-top.sec-news {
  padding: 90px 0 66px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news {
    padding-top: calc(70 * 100vw / 750);
    padding-bottom: calc(60 * 100vw / 750);
  }
}

.sec-top.sec-news .wrapper {
  max-width: 845px;
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 15px;
  padding: 53px 66px 53px 78px;
  gap: 68px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: calc(40 * 100vw / 750);
    gap: calc(40 * 100vw / 750);
  }
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .wrapper .btn-red {
    max-width: 130px;
    width: 100%;
    margin: auto;
    height: 30px;
  }
}

.sec-top.sec-news .left h6 {
  font-size: 46px;
  line-height: 52px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .left h6 {
    text-align: center;
  }
}

.sec-top.sec-news .left a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FF001D;
  height: 30px;
  width: 137px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #FF001D;
}

.sec-top.sec-news .left a span {
  color: #fff;
  font-size: 19px;
}

.sec-top.sec-news .left a:hover {
  background: #fff;
}

.sec-top.sec-news .left a:hover span {
  color: #FF001D;
}

.sec-top.sec-news .right a {
  gap: 12px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto 1fr;
      grid-template-columns: auto auto 1fr;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .right a {
    -ms-grid-columns: 95px 1fr;
        grid-template-columns: 95px 1fr;
    gap: 0;
  }
  .sec-top.sec-news .right a:not(:first-of-type) {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .right a time {
    -ms-grid-column: 1;
    grid-column: 1;
  }
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .right a .cat {
    -ms-grid-column: 2;
    grid-column: 2;
  }
}

.sec-top.sec-news .right a:hover dd {
  color: #FF001D;
  text-decoration: underline;
}

.sec-top.sec-news .right dd {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .right dd {
    grid-column: span 2;
  }
}

.sec-top.sec-news .right dd, .sec-top.sec-news .right time {
  font-size: 16px;
}

.sec-top.sec-news .right .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  gap: 5px;
  margin-top: 4px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .right .cat {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.sec-top.sec-news .right dt {
  color: #fff;
  background: #B1B1B1;
  font-size: 12px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .right dt {
    margin-left: calc(15 * 100vw / 750);
  }
}

.sec-top.sec-news .btns {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: calc(60 * 100vw / 750);
    gap: calc(45 * 100vw / 750);
  }
}

.sec-top.sec-news .btns .btn {
  width: 459px;
  height: 92px;
  background: #BFC0C0;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #BFC0C0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .btns .btn {
    width: 100%;
    max-width: 460px;
    margin: auto;
  }
}

.sec-top.sec-news .btns .btn:first-of-type {
  background: #00B9DC;
  border: 1px solid #00B9DC;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .btns .btn:first-of-type {
    background: #00b8db;
    border: 1px solid #00b8db;
  }
}

.sec-top.sec-news .btns .btn span {
  color: #fff;
  font-size: 16px;
  display: block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-top.sec-news .btns .btn span:first-child {
  font-size: 22px;
  line-height: 1.5;
}

.sec-top.sec-news .btns .btn:hover {
  background: #fff;
}

.sec-top.sec-news .btns .btn:hover span {
  color: #00B9DC;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-news .btns .btn:hover span {
    color: #00b8db;
  }
}

.sec-top.sec-product {
  padding: 120px 0 90px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-product {
    background-color: #00b8db;
    padding-top: calc(175 * 100vw / 750);
    padding-bottom: calc(95 * 100vw / 750);
  }
}

.sec-top.sec-product::after {
  content: "";
  left: 0;
  top: auto;
  bottom: 0;
  position: absolute;
  background: url(../images/common/bg_herb_bottom.png) repeat-x;
  height: 374px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-product::after {
    content: none;
  }
}

.sec-top.sec-product h2 {
  margin: auto;
  text-align: center;
  max-width: 567px;
  width: 100%;
  margin-bottom: 40px;
}

.sec-top.sec-product h2::after {
  content: none;
}

.sec-top.sec-product .wrapper {
  max-width: 715px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 10;
}

.sec-top.sec-product p {
  font-size: 18px;
  line-height: 35px;
  color: #fff;
}

.sec-top.sec-product p.bold {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 43px;
  color: #fff;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-product p.bold {
    letter-spacing: -0.5px;
    margin-top: 15px;
    line-height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .sec-top.sec-product p:nth-of-type(2) {
    margin-top: calc(70 * 100vw / 750);
  }
}

@media screen and (min-width: 769px) {
  .sec-top.sec-product p:nth-of-type(3) {
    margin-top: 30px;
  }
}

@media screen and (min-width: 769px) {
  .sec-top.sec-product p:nth-of-type(4) {
    margin-top: 5px;
  }
}

.sec-top.sec-product .blocks {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-product .blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(80 * 100vw / 750);
    margin-top: calc(100 * 100vw / 750);
  }
}

.sec-top.sec-product .blocks .left {
  max-width: 257px;
}

.sec-top.sec-product .blocks .left picture img {
  -webkit-box-shadow: 10px 7px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 7px 6px rgba(0, 0, 0, 0.3);
}

.sec-top.sec-product .blocks .left a {
  margin-top: 25px;
  color: #fff;
  line-height: 48px;
  font-size: 20px;
  text-align: center;
  display: block;
  position: relative;
  left: 0;
  padding-right: 45px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-top.sec-product .blocks .left a::after {
  content: url(../images/icons/chevron_round_white.svg);
  width: 26px;
  height: 26px;
  position: absolute;
  display: inline-block;
  left: auto;
  top: 8px;
  right: 45px;
}

.sec-top.sec-product .blocks .left a::before {
  content: "";
  background: #fff;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: -5px;
}

.sec-top.sec-product .blocks .left a:hover::before {
  content: "";
  width: 185px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: -5px;
}

.sec-top.sec-product .blocks .right {
  max-width: 337px;
  margin-top: -73px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-top.sec-product .blocks .right:hover {
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .sec-top.sec-product .blocks .right {
    margin-top: 0;
  }
}

.sec-company {
  padding: 65px 0 180px;
  background: url(../images/common/gradient_ttl.png) repeat-x;
  background-size: auto;
}

@media screen and (max-width: 768px) {
  .sec-company {
    padding-top: calc(65 * 100vw / 750);
    padding-bottom: calc(100 * 100vw / 750);
  }
}

.sec-top.sec-news .banner-container{
  margin-top: 60px;
}
@media (max-width: 580px){
  .sec-top.sec-news .banner-container{
    margin-top: 0px;
  }
}
.sec-top.sec-news .banner-lists{
  margin-right: auto;
  margin-left: auto;
  max-width: 940px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.sec-top.sec-news .banner-lists .item01{
  margin-right: 48px;
  width: calc((100% / 3) - 32px);
}
@media (max-width: 580px){
  .sec-top.sec-news .banner-lists .item01{
    width: 100%;;
  }
}
@media (max-width: 580px){
  .sec-top.sec-news .banner-lists .item01{
    margin-top: 35px;
  }
}
.sec-top.sec-news .banner-lists .item01:last-child{
  margin-right: 0;
}
@media (max-width: 580px){
  .sec-top.sec-news .banner-lists .item01:last-child{
    margin-top: 35px;
  }
}
.sec-top.sec-news .banner-lists .img-container{
  width: 100%;
  height: auto;
  transition: opacity 0.3s;
}
.sec-top.sec-news .banner-lists .img01{
  display: block;
  width: 100%;
  height: auto;
}
.sec-top.sec-news .banner-lists .img-container:hover{
  opacity: 0.75;
}

.sec-company .informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 125px;
  margin: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 120px;
  max-width: 863px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec-company .informations {
    margin-top: calc(120 * 100vw / 750);
    max-width: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(125 * 100vw / 750);
  }
}

.sec-company .informations .left picture {
  display: block;
  width: 137px;
  height: 169px;
}

@media screen and (max-width: 768px) {
  .sec-company .informations .left picture {
    max-width: 122px;
    height: auto;
  }
}

.sec-company .informations .right {
  max-width: 598px;
  width: 100%;
}

.sec-company .informations .right dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #C7C7C7;
}

@media screen and (max-width: 768px) {
  .sec-company .informations .right dl {
    padding: 0 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 115px 1fr;
        grid-template-columns: 115px 1fr;
  }
}

.sec-company .informations .right dl:last-child {
  border: none;
}

.sec-company .informations .right dl dt {
  text-align: center;
  font-size: 16px;
  max-width: 235px;
  width: 100%;
  line-height: 42px;
}

@media screen and (max-width: 768px) {
  .sec-company .informations .right dl dt {
    text-align: left;
    max-width: initial;
    width: auto;
    line-height: 22px;
    padding: 10px 0;
  }
}

.sec-company .informations .right dl dd {
  font-size: 16px;
  line-height: 42px;
}

@media screen and (max-width: 768px) {
  .sec-company .informations .right dl dd {
    text-align: left;
    line-height: 22px;
    padding: 10px 0;
  }
}

.sec-company .gmap {
  margin: auto;
  margin-top: 128px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec-company .gmap {
    margin-top: calc(128 * 100vw / 750);
  }
}

.sec-company .gmap .map {
  -webkit-filter: grayscale(100%);
  width: calc(100% + 80px);
  margin-left: -40px;
}

.sec-philo {
  padding: 80px 0 130px;
}

@media screen and (max-width: 768px) {
  .sec-philo {
    padding-top: calc(80 * 100vw / 750);
    padding-bottom: calc(100 * 100vw / 750);
  }
}

.sec-philo .infos {
  margin: auto;
  margin-top: 80px;
  max-width: 863px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec-philo .infos {
    margin-top: calc(80 * 100vw / 750);
  }
}

.sec-philo dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
}

@media screen and (max-width: 768px) {
  .sec-philo dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sec-philo dl:not(:first-child) {
  margin-top: 85px;
}

.sec-philo dl dt {
  border-right: 3px solid #FF001D;
  padding: 5px 0;
  width: 175px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 19px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  .sec-philo dl dt {
    border: none;
    width: auto;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.sec-philo dl dd {
  padding: 5px 25px;
  font-size: 19px;
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  .sec-philo dl dd {
    border-top: 3px solid #FF001D;
    padding: 0;
    padding-top: 20px;
  }
}

.sec-philo dl dd p {
  text-indent: -15px;
  padding-left: 15px;
}

.sec-philo dl .text-red {
  color: #FF001D;
  font-size: 31px;
  line-height: 40px;
}

@media screen and (max-width: 768px) {
  .sec-philo dl .text-red {
    font-size: 26px;
    text-align: center;
  }
}

.sec-product {
  padding: 90px 0 110px;
  position: relative;
  background: #00B9DC;
}

@media screen and (max-width: 768px) {
  .sec-product {
    padding-top: calc(90 * 100vw / 750);
    padding-bottom: calc(110 * 100vw / 750);
  }
}

.sec-product::after {
  content: "";
  left: 0;
  top: auto;
  bottom: 0;
  position: absolute;
  background: url(../images/common/bg_herb_bottom.png) repeat-x;
  height: 374px;
  width: 100%;
}

.sec-product h2 {
  margin: auto;
  text-align: center;
  max-width: 567px;
  width: 100%;
  margin-bottom: 40px;
}

.sec-product h2::after {
  content: none;
}

.sec-product .wrapper {
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 10;
}

.sec-product .wrapper--first {
  max-width: 740px;
}

@media screen and (max-width: 768px) {
  .sec-product .wrapper--first {
    max-width: initial;
    width: auto;
  }
}

.sec-product .wrapper--second {
  width: 708px;
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .sec-product .wrapper--second {
    max-width: initial;
    width: auto;
    margin-top: calc(70 * 100vw / 750);
  }
}

.sec-product .wrapper--second a {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-product .wrapper--second a:hover {
  opacity: 0.85;
}

.sec-product .wrapper--second picture:first-of-type {
  max-width: 410px;
  width: 100%;
  display: block;
  margin: auto;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .sec-product .wrapper--second picture:first-of-type {
    max-width: initial;
    margin-top: calc(25 * 100vw / 750);
  }
}

.sec-product .wrapper--second .flex {
  margin-top: 25px;
  gap: 35px;
}

@media screen and (max-width: 768px) {
  .sec-product .wrapper--second .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(35 * 100vw / 750);
    margin-top: calc(35 * 100vw / 750);
  }
}

.sec-product .wrapper--second .flex picture {
  max-width: 337px;
  width: 100%;
  display: block;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .sec-product .wrapper--second .flex picture {
    max-width: initial;
  }
}

.sec-product p {
  font-size: 18px;
  line-height: 35px;
  color: #fff;
}

.sec-product p.bold {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 43px;
  color: #fff;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .sec-product p.bold {
    letter-spacing: -0.5px;
    margin-top: calc(30 * 100vw / 750);
    line-height: 25px;
  }
}

.sec-product .blocks {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}

@media screen and (max-width: 768px) {
  .sec-product .blocks {
    gap: calc(50 * 100vw / 750);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sec-product .blocks .left {
  max-width: 213px;
}

@media screen and (max-width: 768px) {
  .sec-product .blocks .left {
    margin: auto;
  }
}

.sec-product .blocks .left picture img {
  -webkit-box-shadow: 10px 7px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 10px 7px 6px rgba(0, 0, 0, 0.3);
}

.sec-product .blocks .right {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .sec-product .blocks .right {
    margin-top: calc(70 * 100vw / 750);
  }
}

.sec-product .blocks .right p {
  font-size: 24px;
  color: #fff;
  line-height: 26px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
}

.sec-product .blocks .right .btn {
  background: #FF001D;
  width: 329px;
  height: 54px;
  border: 1px solid #FF001D;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 25px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .sec-product .blocks .right .btn {
    margin: 25px auto 0;
  }
}

.sec-product .blocks .right .btn span {
  color: #fff;
  position: relative;
  font-size: 19px;
  line-height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-product .blocks .right .btn span::after {
  content: url(../images/company/chevron_01.png);
  width: 21px;
  height: 21px;
  display: inline-block;
  left: auto;
  top: 8px;
  right: 25px;
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-product .blocks .right .btn:hover {
  background: #fff;
}

.sec-product .blocks .right .btn:hover span {
  color: #FF001D;
}

.sec-product .blocks .right .btn:hover span::after {
  content: url(../images/icons/chevron_round_white_hover.svg);
  width: 21px;
  height: 21px;
  max-width: 33px;
  display: inline-block;
  left: auto;
  top: 8px;
  right: 25px;
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-contact {
  padding: 56px 0 112px;
}

.sec-contact::after {
  content: "";
  left: 0;
  top: auto;
  bottom: 0;
  position: absolute;
  background: url(../images/common/bg_herb_bottom.png) repeat-x;
  height: 374px;
  width: 100%;
  z-index: -1;
}

.sec-contact .submit-block {
  margin: 90px auto 0;
  text-align: center;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
}

@media screen and (max-width: 768px) {
  .sec-contact .submit-block {
    margin: 50px auto 0;
    gap: 0;
  }
}

.sec-contact .submit-block input {
  height: 74px;
  width: 389px;
  border: 1px solid #BFC0C0;
  background: #BFC0C0;
  border-radius: 5px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 3px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (max-width: 768px) {
  .sec-contact .submit-block input {
    height: 60px;
    width: calc(389px - 40px);
  }
}

.sec-contact .submit-block input:hover {
  background: #fff;
  color: #00B9DC;
  cursor: pointer;
}

.sec-contact .submit-block button {
  height: 74px;
  width: 389px;
  border: 1px solid #BFC0C0;
  background: #BFC0C0;
  border-radius: 5px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 3px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.sec-contact .submit-block button:hover {
  background: #fff;
  color: #00B9DC;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .sec-contact .cbx-container .intro {
    padding: 0 20px;
  }
}

.sec-contact .cbx-container .intro > * {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.sec-contact .cbx-container .intro p {
  margin: 65px auto 0;
}

.sec-contact .cbx-container .intro h5 {
  font-size: 24px;
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .sec-contact .cbx-container .intro h5 {
    font-size: 22px;
  }
}

.sec-contact .cbx-box {
  border: 1px solid #000;
  max-width: 888px;
  width: calc(100% - 20px);
  padding: 50px 5px;
  margin: 45px auto 0;
}

.sec-contact .cbx-box > * {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.sec-contact .cbx-box p span {
  font-size: 18px;
  line-height: 30px;
}

.sec-contact .cbx-box p span a {
  margin-top: 30px;
  display: block;
  font-size: 24px;
  line-height: 30px;
  color: #00B9DC;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-contact .cbx-box p span a:hover {
  text-decoration: underline;
}

.sec-contact .cbx-box p:last-child {
  margin-top: 30px;
  font-size: 18px;
  line-height: 30px;
}

.sec-contact .inputs-container {
  padding: 55px 0 75px;
  background: #e5e5e5;
}

.sec-contact .inputs-container-intro {
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .sec-contact .inputs-container-intro {
    letter-spacing: -0.5px;
    line-height: 35px;
    text-align: left;
  }
}

.sec-contact .entry-list.contact-block__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 890px;
  width: 100%;
  margin: auto;
}

.sec-contact .entry-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 163px 1fr;
      grid-template-columns: 163px 1fr;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .sec-contact .entry-list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.sec-contact .label-container {
  margin-right: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .sec-contact .label-container {
    -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: 10px;
  }
}

.sec-contact .label-container span {
  color: #fff;
  background: red;
  padding: 0;
  font-size: 12px;
  border-radius: 3px;
  height: 18px;
  width: 46px;
  text-align: center;
  line-height: 18px;
  letter-spacing: 2px;
}

.sec-contact .input-container input {
  max-width: 700px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
}

.sec-contact textarea {
  max-width: 700px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
}

.mw_wp_form .error {
  color: #FF001D;
}

.mw_wp_form .error::before {
  content: "\0025B6";
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
}

.sec-contact .input-container .is-input-error,
.sec-contact textarea.is-input-error {
  border: 1px solid #FF001D;
}

.mw_wp_form_confirm .cbx-container, .mw_wp_form_confirm .cbx-box {
  display: none;
}

@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .submit-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mw_wp_form_confirm .submit-block input, .mw_wp_form_confirm .submit-block button {
    height: 60px;
    width: calc(389px - 40px);
    margin: 30px auto 0;
  }
}

.mw_wp_form .is-show-success {
  display: none;
}

.mw_wp_form.mw_wp_form_complete .is-show-success {
  display: block;
  text-align: center;
  color: #44cb44;
  font-size: 18px;
  margin-top: -40px;
  margin-bottom: 40px;
}

.mw_wp_form.mw_wp_form_complete a.is-show-success {
  height: 74px;
  width: 389px;
  border: 1px solid #BFC0C0;
  background: #BFC0C0;
  border-radius: 5px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 3px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 0;
}

@media screen and (max-width: 768px) {
  .mw_wp_form.mw_wp_form_complete a.is-show-success {
    height: 60px;
    width: calc(389px - 40px);
    margin: auto;
  }
}

.mw_wp_form.mw_wp_form_complete a.is-show-success:hover {
  background: #fff;
  color: #00B9DC;
  cursor: pointer;
}

.sec-newsList {
  padding: 65px 0 160px;
  background: url(../images/common/gradient_ttl.png) repeat-x;
  background-size: auto;
}

.sec-newsList .news-boxes {
  max-width: 880px;
  width: 100%;
  margin: 60px auto 0;
}

.sec-newsList .dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-newsList .dates a {
  margin-right: 15px;
  font-size: 21px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-newsList .dates a:hover {
  color: #FF001D;
  text-decoration: underline;
}

.sec-newsList .dates a::before {
  content: ">";
  font-size: 21px;
}

.sec-newsList .news-box .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.sec-newsList .news-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .sec-newsList .news-box a {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 87px 1fr;
        grid-template-columns: 87px 1fr;
    grid-gap: 0 12px;
  }
}

.sec-newsList .news-box a:hover dd {
  color: #FF001D;
  text-decoration: underline;
}

.sec-newsList .news-box dd {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

@media screen and (max-width: 768px) {
  .sec-newsList .news-box dd {
    grid-column: span 2;
  }
}

.sec-newsList .news-box dd, .sec-newsList .news-box time {
  font-size: 16px;
}

.sec-newsList .news-box dt {
  color: #fff;
  background: #B1B1B1;
  font-size: 12px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  margin-right: 5px;
}

.sec-newsList .news-box dt:last-of-type {
  margin-right: 40px;
}

.sec-newsList .btns {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26px;
}

.sec-newsList .btns .btn {
  width: 459px;
  height: 92px;
  background: #BFC0C0;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #BFC0C0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-newsList .btns .btn:first-of-type {
  background: #00B9DC;
  border: 1px solid #00B9DC;
}

.sec-newsList .btns .btn span {
  color: #fff;
  font-size: 16px;
  display: block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sec-newsList .btns .btn span:first-child {
  font-size: 22px;
  line-height: 1.5;
}

.sec-newsList .btns .btn:hover {
  background: #fff;
}

.sec-newsList .btns .btn:hover span {
  color: #00B9DC;
}

.sec-newsList .post-wrapper h4 {
  font-weight: bold;
  font-size: 24px;
  margin: 15px 0 30px;
}

.page-news-single .sec-newsList .news-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .page-news-single .btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .page-news-single .btns .btn {
    width: auto;
    height: 60px;
  }
}

.page-privacy ol, .page-privacy ul {
  padding-left: 1.15em;
  text-indent: 0.2em;
}

.page-privacy .indent {
  padding-left: 1em;
  text-indent: -1em;
}

/** Overwriters */
.container {
  padding: 0 20px;
}

@media screen and (min-width: 769px) {
  .container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

#main {
  position: relative;
  margin-top: 110px;
}

@media screen and (max-width: 768px) {
  #main {
    margin-top: calc(140 * 100vw / 750);
  }
}
/*# sourceMappingURL=app.css.map */

/**
* Quick add
*/
h2::after {
  content: "";
  bottom: -10px;
}

ol li {
  line-height: 1.7;
}
.page-privacy p,
.page-privacy span,
.page-privacy li,
.page-privacy strong,
.page-privacy dl,
.page-privacy dt,
.page-privacy dd,
.page-privacy th,
.page-privacy td,
.page-privacy a,
.page-privacy time {
    font-weight: 400;
}

h2.sec-page-title, h2.sec-page-title span, h2 span {
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  pointer-events: none;
}

.page-privacy .indent-more {
    /* margin-left: 1.4em;
    text-indent: -1.4em; */
    margin-left: 23px;
    text-indent: -23px;
    padding-left: 0;
}
.page-privacy .indent {
  padding-left: 0;
  /* text-indent: -1.4em;
  margin-left: 1.4em; */
  margin-left: 23px;
  text-indent: -23px;
}
.page-privacy .indent-only {
  padding-left: 0;
  text-indent: 0;
  /* margin-left: 0.2em; */
  margin-left: 3px;
}
.page-privacy .indent-half {
  padding-left: 0;
  text-indent: 0;
  /* margin-left: 1em; */
  margin-left: 16px;
}
.page-privacy .indent:nth-of-type(14),
.page-privacy .indent:nth-of-type(15),
.page-privacy .indent:nth-of-type(16),
.page-privacy .indent:nth-of-type(17) {
  text-indent: -2em;
}
.page-privacy .indent-special {
  margin-left: 24px;
}
.page-privacy .indent-before-last {
  margin-left: 8px;
}
.page-privacy .indent-point {
  text-indent: 0;
  /* margin-left: 1.1em; */
  margin-left: 18px;
}

.kariage-block {
    text-align: center;
    margin-top: 40px;
}

.kariage-block img {
    max-width: 1000px;
    width: 100%;
    height: auto;
    border-radius: 12px;         /* 角丸 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);  /* 影 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* アニメーション */
    margin-bottom: 50px;
}
.kariage-block a, .kariage-block img {
    pointer-events: auto !important;
}

.kariage-block img:hover {
    transform: scale(1.03);      /* ちょっと拡大 */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); /* 影強調 */
}
@media screen and (max-width: 768px) {
    .kariage-block img {
        max-width: 768px;
        width: 100%;
    }
}