@charset "UTF-8";
* {
    box-sizing:border-box;
    font-size: 100%;
    font-weight: normal;
	margin: 0px;
	padding: 0px;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
}
* {
    -webkit-touch-callout:none;
  }
html {
    height: 100%;
    font-size: 16px;
}
html.locked {
  overflow: hidden;
  height: 100%;
}

/*---------------------------------------------
  Reset
---------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: left;
  vertical-align: baseline;
}
body {
    color: hsla(12, 4%, 23%, 1);
    font-size: 16px;
    line-height: 1.5;
	letter-spacing: 0;
	position: relative;
    text-align: center;
	width: 100%;
}
h1,
h2,
h3 {
  font-weight: bold;
}
span,
i {
  font-weight: inherit;
  font-style: normal;
}
img,
picture {
	border: none;
    display: block;
	height: auto;
	max-width: 100%;
	margin: 0px;
	padding: 0px;
}
a {
  transition: all .5s;
}
a:hover {
    color: #3a3a3a;
}
a img {
	border: none;
  transition: all .5s;
}
a:hover img {
    opacity: 0.8;
}
.image {
    overflow: hidden;
}
.image img,
a .image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: all .5s;
}
a:hover .image img {
  opacity: 1;
  transform: scale(1.05);
}
a:link,
a:visited {
	text-decoration: none;
}
ul, li  {
  list-style: none;
  margin: 0;
  padding: 0;
}
input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.num {
  font-weight:bold;
}
strong,
.strong {
  font-weight: bold;
}
.accent {
    color: var(--accent-red);
}
.accent-green {
    color: var(--main-green);
}
/* ---------------------------------

ANIMATION
	
--------------------------------- */
.animation-yoko {
  animation: yokofuwa 2s infinite ease-in-out;
  opacity: 1;
}
.animation-yoko2 {
  animation: yokofuwa2 2s infinite ease-in-out;
  opacity: 1;
}
@keyframes yokofuwa {
  0% {
    -webkit-transform-origin: 50% 150%;
            transform-origin: 50% 150%;
    -webkit-transform: translate( 10%, 0%) rotate(0deg);
            transform: translate( 10%, 0%) rotate(0deg);
  }
  50% {
    -webkit-transform-origin: 50% 150%;
            transform-origin: 50% 150%;
    -webkit-transform: translate( 10%, 0%) rotate(-7deg);
            transform: translate( 10%, 0%) rotate(-7deg);
  }
  100% {
    -webkit-transform-origin: 50% 150%;
            transform-origin: 50% 150%;
    -webkit-transform: translate( 10%, 0%) rotate(0deg);
            transform: translate( 10%, 0%) rotate(0deg);
  }
}
@keyframes yokofuwa2 {
  0% {
    -webkit-transform-origin: 50% 150%;
            transform-origin: 50% 150%;
    -webkit-transform: translate(5%, 0%) rotate(0deg);
            transform: translate(5%, 0%) rotate(0deg);
  }
  50% {
    -webkit-transform-origin: 50% 150%;
            transform-origin: 50% 150%;
    -webkit-transform: translate(5%, 0%) rotate( 7deg);
            transform: translate(5%, 0%) rotate( 7deg);
  }
  100% {
    -webkit-transform-origin: 50% 150%;
            transform-origin: 50% 150%;
    -webkit-transform: translate(5%, 0%) rotate(0deg);
            transform: translate(5%, 0%) rotate(0deg);
  }
}

.js-inview {
  opacity: 0;
  transform: translate(0, -80px);
  transition: 1s;
}
.js-inview.is-inview {
  opacity: 1;
  transform: translate(0, 0);
}



/* ---------------------------------

CMN
	
--------------------------------- */
.inner {
    margin: 0 auto;
    max-width: 1280px;
    padding: 100px 0;
    position: relative;
}
.tb { display: none }
.sp-only { display: none }
.wrapper {
  overflow: hidden;
  position: relative;
}
.bg {
    background: var(--light-green);
}
.bg-net {
    background: linear-gradient(transparent 90%, rgba(226, 238, 197, 0.5) 90%, rgba(226, 238, 197, 0.5) 100%), linear-gradient(90deg, transparent 90%, rgba(226, 238, 197, 0.5) 90%, rgba(226, 238, 197, 0.5) 100%);
    background-color: #fff;
    background-size: 12px 12px;
    background-position: center;
}
:root {
    --base-t: hsla(12, 4%, 23%, 1);
    --main-green: hsla(78, 63%, 43%, 1);
    --green-dark: hsla(78, 75%, 31%, 1);
    --light-green: hsla(73, 47%, 90%, 1);
    --accent-red : hsla(11, 81%, 55%, 1);
}
.s-txt {
  font-size: 0.8em;
}
.t-green {
  color: var(--main-green);
}
.t-green-dark {
  color: var(--green-dark);
}
.t-red {
  color: var(--accent-red);
}
.t-center {
    text-align: center;
}
@media screen and (max-width: 1330px) {
    .inner {
        margin: 0 2%;
    }
}
@media screen and (max-width: 1280px) {
    .tb {
        display: block
    }
    .nav.active .tb {
        display: none !important
    }
}
@media screen and (max-width: 750px) {
  body {
    font-size: 15px;
  }
  .inner {
    margin: 0;
    padding: 50px 15px;
  }
  .sp-only {
    display: block
  }
    .tb {
    display: none;
    visibility: hidden;
    }
  .pc {
    display: none;
    visibility: hidden;
  }
}

.cv-Btn.bubble {
    margin: 50px auto 20px;
    min-width: 280px;
}
.cv-Btn a {
    align-items: center;
    background: var(--accent-red);
    border-radius: 50vw;
/*    box-shadow: 2px 5px 0px hsla(11, 62%, 44%, 1); */
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: bold;
    max-width: 360px;
    padding: 13px 38px;
    position: relative;
    text-align: center;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.swiper-slide-inner .cv-Btn a {
    padding-left: 50px;
}
.wrap-CVbtn .cv-Btn a {
    padding-left: 30px;
}

.cv-Btn a i {
    background: #fff;
    color: var(--accent-red);
    display: inline-block;
    font-size: 16px;
    margin-left: 10px;
    padding:  0 5px;
}
.cv-Btn a .icon {
    margin-right: 10px;
    width: 26px;
}
.cv-Btn.bubble a .icon  {
    margin: 6px 15px 0 0;
}
.cv-Btn a::after {
    content: " ";
    display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	right: 25px;
	position: absolute;
	transform: rotate( 45deg);
	top: calc( 50% - 4px);
    transition: all .3s;
}
.cv-Btn a:hover {
   /* box-shadow: none;
    transform: translateY(4px); */
    opacity: 0.8;
}
.cv-Btn a:hover img {
    opacity: 1;
}

.cv-Btn.bubble a i {
    border: 2px solid var(--accent-red);
	background: #fff;
    border-radius: 50vw;
	color: var(--accent-red);
    justify-content: center;
    left: 34%;
    margin-left: initial;
    padding-bottom: 3px;
	position: absolute;
	text-align: center;
    top: -20px;
	width: 100px;
}
.cv-Btn.bubble a i::before {
	border-style: solid;
	border-width: 10px 8px 0 8px;
	border-color: #fff transparent transparent transparent;
	bottom: -6px;
	content: " ";
	left: calc( 50% - 10px);
	height: 0;
	position: absolute;
	width: 0;
}
@media screen and (max-width: 980px) {
    .cv-Btn a {
        font-size: 17px;
        margin: 0 auto;
        padding: 13px 0;
    }
    .swiper-slide-inner .cv-Btn a {
        padding-left: 20px;
    }
}
@media screen and (max-width: 750px) {
    #fee .wrap-CVbtn .cv-Btn a {
        padding-left: clamp(75px, 14vw, 80px);
    }
    .swiper-slide-inner .cv-Btn a {
        padding-left: 55px;
    }
    .ttl-border {
        background-size: 22px;
        padding: 3px 0 15px 30px;
    }
    .wrap-CVbtn .cv-Btn a {
    padding-left: 20px;
}
}

@media screen and (max-width: 375px) {
    #fee .wrap-CVbtn .cv-Btn a {
        padding-left: 14vw;
    }
}

/* ---------------------------------

HEADER
	
--------------------------------- */
h1 {
  max-width: 146px;
}
header {
    align-items: center;
    background: #fff;
    display: flex;
    height: 80px;
    justify-content: space-around;
    left: 0;
    margin: 0 auto;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 100;
}
header ul {
    align-items: center;
    display: flex;
    justify-content: end;
    margin-right: 50px;
}
header ul li {
    margin-left: 30px;
}
header ul li a {
    font-weight: 700;
    position: relative;
}
header ul li a::before {
	border-style: solid;
	border-width: 12px 8px 0 8px;
	border-color: hsla(78, 63%, 43%, 0.4) transparent transparent transparent;
	content: " ";
	height: 0;
	position: absolute;
    right: -20px;
	top: 8px;
	width: 0;
}
.nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
        transition: 0.5s;
}
.nav .menu-ttl {
    display: none;
}
.nav a.btn {
    display: none;
}
@media screen and (max-width: 1280px) {
    header {
        padding: 0 10px;
    }
    header .nav__items li {
        margin-left: 35px;
    }
    header .nav.active .nav__items li {
        margin-left: initial;
    }
    header ul li a {
        font-size: 15px;
        display: flex;
        letter-spacing: 0.2px;
        text-align: center;
    }
    header .cv-Btn a {
        font-size: 16px;
    }

}
@media screen and (max-width: 980px) {
    header ul li a {
        font-size: 13px;
    }
    header ul li {
        margin-left: 20px;
    }
}


@media screen and (max-width: 1165px) {
    h1 img {
        height: 40px;
        padding-top: 5px;
    }
    header {
        height: 50px;
        justify-content: start;
        transition: 0.5s;
    }
    .js-scrol-header.hide {
        transform:translateY(-60px);
    }
    /* Menu */
    .nav {
        background: #8AB229;
        bottom: 0;
        display: none;
        height: 100vh;
        left: 0;
        opacity: 0;
        padding: 50px 38px 0;
        position: fixed;
        right: 0;
        top: -100vh;
        width: 100vw;
    }
    .nav.active {
        display: block;
        opacity: 1;
        transform: translateY(100%);
        z-index: 1;
    }
    .nav.active {
        background: hsla(78, 63%, 43%, 0.95);
    }
    .nav.active .menu-ttl {
        align-items: center;
        color: #fff;
        display: flex;
        font-size: 30px;
        font-weight: bold;
        letter-spacing: 2px;
        margin-top: 20px;
    }
    .nav.active .menu-ttl span {
        padding-left: 10px;
        width: 75px;
    }
    header ul li {
        margin-left: 0;
        border-bottom: 1px solid #fff;
    }
    header ul li a {
        color: #fff;
        display: inline-block;
        font-size: 16px;
        padding: 20px 0;
    }

    header ul li a::before {
        border-style: solid;
        border-width: 12px 8px 0 8px;
        border-color: hsla(78, 55%, 85%, 1) transparent transparent transparent;
        content: " ";
        height: 0;
        left: clamp(100px, 12vw, 140px);
        position: absolute;
        top: 27px;
        width: 0;
    }
    header ul li:nth-of-type(2) a::before,
    header ul li:nth-of-type(4) a::before {
        left:  clamp(130px, 19.5vw, 150px);
    }
    header .nav.active ul {
        display: block;
        margin: 0 0 50px;
    }
    .nav a.btn {
        display: flex
    }
    .nav .cv-Btn a {
        padding: 25px 8vw;
    }
    .nav.active .cv-Btn a {
        padding-left: clamp(32px, 13vw, 100px);
        margin: 0 auto;
        max-width: 430px;
    }
}
@media screen and (max-width: 750px) {
    h1 {
        padding: 0;
        width: 80px;
    }
    h1 img {
        height: initial;
        padding-top: 0;
    }
}
@media screen and (max-width: 375px) {
    .nav.active .cv-Btn a {
        padding-left: 8vw;
    }
}
.hamburger {
    display: none;
}
@media screen and (max-width: 1165px) {
    .hamburger {
        background: none;
        display: block;
        height: 50px;
        padding: 0 10px;
        position: absolute;
        right: 5px;
        top: 0;
        width: 50px;
        z-index: 555;
    }
    .hamburger:hover {
        opacity: 1;
    }
    .hamburger span {
        height: 3px;
        background: var(--main-green);
        position: relative;
        transition: ease .4s;
        display: block;
    }
    .hamburger span:nth-child(1) {
        top: 0px;
    }
    .hamburger span:nth-child(2) {
        margin: 5px 0;
    }
    .hamburger span:nth-child(3) {
        top: 0px;
    }

    .hamburger.active span:nth-child(1) {
        background: #fff;
        top: 5px;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        background: #fff;
        top: -11px;
        transform: rotate(-45deg);
    }
}

/* ---------------------------------

CONTENTS
	
--------------------------------- */
h2 {
    align-items: end;
    display: flex;
    font-size: 30px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

h2.border {
    line-height: 2;
}
h2.border span {
    background: linear-gradient(transparent 94%, var(--main-green) 0%);
}

h2 img {
    padding-right: 5px;
}
h2 .em {
    color: var(--main-green);
    font-weight: bold;
}
h2 .em span {
    font-size: 90px;
    line-height: 1;
}
@media screen and (max-width: 750px) {
    h2 .em span {
        font-size: 60px;
    }
}
h2 span.red {
    color: var(--accent-red);
    font-size: 36px;
}
.list-customer {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px auto 0;
    text-align: center;
    max-width: 1110px;
}
.list-customer li {
    align-items: center;
    border: 2px solid hsla(83, 41%, 55%, 1);
    border-radius: 20px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 1;
    padding: 30px 22px;
    text-align: center;
}
.list-customer li:last-of-type {
    border: none;
}
@media screen and (max-width: 1280px) {
    .list-customer li {
        font-size: 14px;
        padding: 30px 10px;
    }
}
@media screen and (max-width: 980px) {
    .list-customer {
        grid-template-columns: repeat(4,1fr);
    }
}
@media screen and (max-width: 750px) {
    .list-customer {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
        margin: 30px auto 0;
    }
    .list-customer li {
        border-radius: 15px;
        padding: 15px 12px;
        text-align: center;
    }
}


#strongs h2 {
    align-items: baseline;
}
#strongs .lead {
    background: #fff;
    border-top: 2px dashed var(--main-green);
    border-bottom: 2px dashed var(--main-green);
    font-size: 20px;
    font-weight: bold;
    margin: 30px auto;
    max-width: 910px;
    padding: 15px 0;
    position: relative;
    text-align: center;
}
#strongs .lead .accent {
    display: inline-block;
    position: relative;
    left: -5px;
}
@media screen and (max-width: 750px) {
    #strongs .lead {
        font-size: 16px;
        padding: 15px 10px;
    }
}
.col2,
.col3,
.col4 {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    margin: 0 auto;
}
.col2 {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
.col4 {
    gap: 50px;
    grid-template-columns: repeat(4, 1fr);
}


.item {
    position: relative;
}
.item .image {
    display: block;
    margin: 0 auto;
    width: 80%;
}
.item .image img {
    object-fit: contain;
}
.ttl {
    font-weight: bold;
}
.bg#strongs {
    background: url(../images/Ellipse.png) no-repeat bottom var(--light-green);
    background-size: 110%;
}
@media screen and (max-width: 1130px) {
    .bg#strongs {
        background: url(../images/Ellipse.png) no-repeat bottom var(--light-green);
        background-size: 110%;
    }
}



/* ----
                  MV  
                               -----  */
.mv {
    height: 750px;
    margin: 200px 0 -80px;
    position: relative;
    text-align: center;
}
.Swiper {
    margin: -200px auto;
}
.swiper-slide {
    background: var(--light-green);

}
.swiper-slide-inner {
    display: grid;
    grid-template-columns:  1fr 660px;
    gap: 0 2vw;
    margin: 0 auto;
    padding: 70px 0;
    max-width: 1280px;
}
.swiper-slide-inner .txt {
    min-width: 550px;
}
.swiper-slide-inner .txt .tag {
    background: hsla(46, 92%, 47%, 1);
    border-radius: 10px;
    color: #fff;
    display: table;
    margin-bottom: 10px;
    padding: 5px 20px;
}
.swiper-slide-inner .txt .tag.entame {
    background: #EA6025;
}
.swiper-slide-inner .txt .tag.it {
    background: #069DC7;
}
.swiper-slide-inner .txt .tag.service {
    background: #03B896;
}
.swiper-slide-inner .txt .tag.local {
    background: #AE3BDF;
}
.swiper-slide-inner .txt .ttl {
    background: linear-gradient(transparent 94%, var(--main-green) 0%);
    display: inline;
    font-size: 50px;
}
.swiper-slide-inner .txt .ttl::before {
    border-bottom: 3px solid var(--green-dark);
    font-size: 50px;
    display: inline-block;
    line-height: 1.2
}
.swiper-slide-inner .txt p {
    font-size: 24px;
    margin: 30px 0;
}
.swiper-slide-inner .txt .txt-bg {
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    padding: 16px;
    max-width: 550px;
}
.swiper-slide-inner .txt .txt-bg li {
    background: url(../images/slider-icon-check.png) no-repeat 0 55%;
    background-size: 17px;
    color: var(--green-dark);
    line-height: 1.6;
    padding: 0 20px;
}
    .swiper-slide-inner .badge {
        display: flex;
    }
.swiper-slide-inner .badge span {
    background-image: url(../images/badge1.png), url(../images/badge2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: 0 5px, 100% 5px;
    background-size: 20px ,20px;
    display: inline-block;
    font-size: 18px;
    padding: 5px 30px;
    margin-right: 30px;
}
.swiper-slide-inner .image-wrap {
    align-items: baseline;
    display: flex;
    justify-content: center;
    padding: 38px 0 0 0;
    position: relative;
}
.swiper-slide-inner .charactore {
    bottom: 0;
    left: 0;
    position: absolute;
    max-width: 270px;
    z-index: 1;
}
.swiper-slide-inner .image {
    height: 500px;
    left: 4vw;
    position: relative;
    width: 500px;
    z-index: 0;
}
.swiper-slide-inner .image img {
    border-radius: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.swiper-slide-inner .image.position-left img {
    object-position: left center;
}
.swiper-slide-inner .image.local img {
    object-position: 50% 100%;
}
@media screen and (max-width: 1700px) {
    .swiper-slide-inner {
        gap: 0 1vw;
        grid-template-columns:  1fr 1.5fr;
        margin: 0 80px;
    }
    .swiper-slide-inner .image {
        aspect-ratio: 1 / 1;
        height: initial;
        width: clamp(260px, 30vw, 500px);
    }

}
@media screen and (max-width: 1580px) {
    .swiper-slide-inner {
        grid-template-columns:  1fr 1.3fr;
    }
    .swiper-slide-inner .txt {
        margin-right: 20px;
        min-width: initial;
    }
    .swiper-slide-inner .txt .ttl {
        font-size: 40px;
    }
    .swiper-slide-inner .txt .txt-bg {
        display: block;
    }
    .swiper-slide-inner .txt p {
        font-size: 20px;
    }
    .swiper-slide-inner .badge span {
        padding: 5px 1.5vw;
        margin-right: 20px;
    }
    .swiper-slide-inner .image-wrap {
        padding: 60px 0 0 0;
    }
    .swiper-slide-inner .image {
        width: clamp(260px, 28vw, 500px);
    }
}
@media screen and (max-width: 1280px) {
    .swiper-slide-inner {
        grid-template-columns:  1fr 1fr;
        margin-top: 45px;
    }
    .swiper-slide-inner .charactore {
        width: 18vw;
    }
    .swiper-slide-inner .txt p {
        font-size: 18px;
        margin: 15px 0;
    }
    .swiper-slide-inner .txt .txt-bg li {
        background: url(../images/slider-icon-check.png) no-repeat 0 55%;
        background-size: 13px;
        padding: 0 0 0 20px;
    }
}
@media screen and (max-width: 1130px) {
    .swiper-slide-inner {
        grid-template-columns:  1.1fr 1fr;
        margin: 45px 60px 0;
    }
    .swiper-slide-inner .txt .ttl {
        font-size: 37px;
    }
    .swiper-slide-inner .txt .txt-bg li {
        font-size: 14px;
    }
    .swiper-slide-inner .charactore {
        width: 25vw;
    }
    .swiper-slide-inner .badge span {
        background-image: url(../images/badge1.png), url(../images/badge2.png);
        background-repeat: no-repeat, no-repeat;
        background-position: 0 5px, 100% 5px;
        background-size: 16px ,16px;
        font-size: 15px;
    }
    .swiper-slide-inner .badge span {
        margin-right: 5px;
        padding: 5px 20px;
    }
    .swiper-slide-inner .image-wrap {
        justify-content: flex-start;
    }
}
@media screen and (max-width: 980px) {
    .mv {
        height: 700px;
    }
    .swiper-slide-inner {
        grid-template-columns:  1fr 1fr;
    }
    .swiper-slide-inner .txt .ttl {
        font-size: 30px;
    }
    .swiper-slide-inner .txt p {
        font-size: 16px;
        margin: 10px 0;
    }
    .swiper-slide-inner .badge span {
        font-size: 14px;
    }
    .swiper-slide-inner .txt .txt-bg li {
        font-size: 14px;
    }
    .cv-Btn a {
        font-size: 14px;
    }
}
@media screen and (max-width: 850px) {

    .swiper-slide-inner .image {
        left: -1vw;
        width: 30vw;
    }
}
/* arrow */
.swiper-button-next,
.swiper-button-prev {
    top: 45%;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    content: none;
}
 .swiper-button-next::after,
 .swiper-button-prev::after {
    content: "";
    background: url("../images/slide-arrowL.png") no-repeat;
    background-size: 60px;
    display: block;
    left: 6.5vw;
    height: 60px;
    position: absolute;
    width: 60px;

}
.swiper-button-next::after {
    background: url("../images/slide-arrowR.png") no-repeat;
    background-size: 60px;
    left: initial;
    right: 6.5vw;
}


@media screen and (max-width: 750px) {
.mv {
    height: clamp(800px, 83vh, 830px);
    margin: 100px 0 50px;
}
.Swiper {
    margin: -100px auto;
}
.swiper-slide-inner {
    display: block;
    margin: 0;
    padding: clamp(300px, 70vw, 330px) 20px 30px;
}
.swiper-slide-inner .txt {
    margin-right: 0;
    min-width: initial;
}
.swiper-slide-inner .txt .ttl {
    font-size: 27px;
}
.swiper-slide-inner .txt p {
    font-size: 16px;
    margin: 10px 0 15px;
}
.swiper-slide-inner .txt .txt-bg {
    border-radius: 8px;
}
.swiper-slide-inner .txt .txt-bg li {background-size: 15px;
    font-size: 14px;
}
.swiper-slide-inner .badge {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    padding: 0 15px;
}

.swiper-slide-inner .badge span {
        background-image: url(../images/badge1.png), url(../images/badge2.png);
        background-repeat: no-repeat, no-repeat;
        background-position: 0 5px, 100% 5px;
        background-size: 13px ,13px;
    font-size: 14px;
    margin: 0 5px;
    padding: 3px 2px;
    text-align: center;
}
.swiper-slide-inner .txt .tag {
    border-radius: 5px;
    padding: 2px 15px;
}
.swiper-slide-inner .image-wrap {
    position: absolute;
    top: 55px;
}
.swiper-slide-inner .image {
    height: 46vw;
    left: initial;
    position: relative;
    right: -30vw;
    top: -30px;
    width: 46vw;
    z-index: 0;
}
.swiper-slide-inner .image img {
    height: 100%;
    width: 100%;
}
.swiper-slide-inner .charactore {
    bottom: initial;
    left: 10px;
    top: 40px;
    width: 45vw;
    z-index: 1;
}
.swiper-slide-inner .charactore img {
    max-height: 180px;
    width: auto;
}
.cv-Btn.bubble {
    max-width: initial;
    width: 100%;
}


 .swiper-button-next::after,
 .swiper-button-prev::after {
    background: url("../images/slide-arrowL.png") no-repeat;
    background-size: 35px;
    height: 35px;
    left: -10px;
    top: 150%;
    width: 35px;
}
.swiper-button-next::after {
    background: url("../images/slide-arrowR.png") no-repeat;
    background-size: 35px;
    left: initial;
    right: -10px;
}

}
@media screen and (max-width: 375px) {
.swiper-slide-inner {
    display: block;
    padding: 73vw 20px 30px;
}
.swiper-slide-inner .image-wrap {
    top: 40px;
}
.swiper-slide-inner .image {
    top: -15px;
}
.swiper-slide-inner .badge {
    padding: 0;
}
}



.catch {
    background: url(../images/eye.png) no-repeat var(--accent-red);
    background-position: 50% 25px;
    background-size: 70px;
    border-radius: 45vw;
    font-size: 40px;
    margin: 0 auto;
    padding: 25px;
    position: relative;
    top: -95px;
    max-width: 600px;
    z-index: 10;
}
.catch .ttl {
    color: #fff;
    font-size: 40px;
    margin: 30px auto 10px;
    text-align: center;
}
.catch .sub {
    background: #fff;
    border-radius: 50vw;
    color: var(--accent-red);
    font-size: 16px;
    font-weight: bold;
    margin: 0 auto;
    padding: 5px;
    text-align: center;
    width: 90%;
}
.catch span {
    color: var(--accent-red);
}
.catch span {
    color: var(--base-t);
}
.catch span.blue {
    color: hsla(201, 69%, 54%, 1);
}
.catch span.yellow {
    color: hsla(46, 92%, 47%, 1);
}
.catch span.pink {
    color: hsla(349, 76%, 67%, 1);
}
@media screen and (max-width: 750px) {
    .catch {
        background: url(../images/eye.png) no-repeat var(--accent-red);
        background-position: 50% 12px;
        background-size: 45px;
        padding: 15px;
        top: -35px;
        width: 80vw;
        z-index: 10;
    }
    .catch .ttl {
        font-size: 20px;
        margin: 20px auto 5px;
    }
    .catch .sub {
        font-size: 13px;
        padding: 5px;
        width: 90%;
    }
}



/* ----
               Strongs  
                               -----  */
#strongs .col3 {
    max-width: 980px;
}
#strongs .col3 .image {
    margin: 0 auto;
    width: 150px;
}
#strongs .col3 .item .tag {
    background: hsla(62, 92%, 81%, 1);
    display: table;
    font-weight: bold;
    margin: 25px auto 10px;
    padding: 3px 15px;
    text-align: center;
}
#strongs .col3 .item p {
    text-align: center;
    margin: 0 auto;
}

.slash-wrap {
    color: var(--main-green);
    font-size: 30px;
    margin: 100px auto 0;
    text-align: center;
}
.slash-wrap .ttl {
    display: block;
    text-align: center;
}
.slash-wrap .image {
    display: block;
    margin: 20px auto -60px;
    max-width: 700px;
}
.slash {
    display: inline-block;
    font-weight: bold;
    position: relative;
}
.slash::before,
.slash::after {
    background:var(--main-green);
    content: " ";
    height: 2px;
    left: -40px;
    position: absolute;
    top: 52%;
    transform: rotate(65deg);
    width: 30px;
}
.slash:after {
	transform: rotate(-65deg);
	right: -40px;
	left: initial
}
@media screen and (max-width: 1280px) {
    .slash-wrap .image {
        margin-bottom: -80px;
    }
}
@media screen and (max-width: 750px) {
    .bg#strongs {
background: url(../images/Ellipse.png) no-repeat bottom var(--light-green);
        background-size: 130%;
    }
    #strongs .col3 {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    #strongs .col3 .item {
        width: 47%;
    }
    #strongs .col3 .item:first-of-type {
        width: 100%;
    }
    #strongs .col3 .item .tag {
        margin-top: 15px;
    }
    #strongs .col3 .item:nth-last-of-type(2) .tag {
        margin: 25px auto 20px;
    }
    #strongs .col3 .image {
        width: 80%;
        max-width: 128px;
    }
    .slash-wrap {
        font-size: 22px;
        margin: 50px auto 0;
    }
    .slash-wrap .image {
        margin-bottom: -40px;
        width: 95%;
    }
}
@media screen and (max-width: 375px) {
        #strongs .col3 .item:nth-last-of-type(2) .tag {
        margin: 15px auto 10px;
    }
}
/* ----
               Solve  
                               -----  */
.solve {
    border: 2px solid var(--base-t);
    border-radius: 20px;
    margin-top: 20px;
}
.solve h2 {
    align-items: baseline;
    background: #fff;
    display: table;
    font-size: 36px;
    margin: -40px auto 50px;
    padding: 0 30px;
}
.solve h2 span {
    font-size: 45px;
}
.solve .col3 {
    gap: 15px;
    margin: 0 20px 40px;
}
.solve .item {
    align-items: center;
    background: hsla(0, 0%, 95%, 1);
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    padding: 55px 0 30px;
}
.solve .item::before {
    background: url(../images/icon-nayami.png) no-repeat 50% 0;
    background-size: 60px;
    content: "";
    display: block;
    height: 60px;
    position: absolute;
    top: -25px;
    width: 100%;
}
.solve .item .ttl {
    font-size: 22px;
    text-align: center;
}
.solve .item p {
    padding-left: 50px;
}
.wrap-CVbtn {
    background: hsla(78, 55%, 85%, 1);
    display: flex;
    justify-content: center;
    padding: 40px 160px;
}
.wrap-CVbtn .cv-Btn a {
    max-width: 430px;
}
.solve .wrap-CVbtn {
    border-radius: 0 0 20px 20px;
}
.wrap-CVbtn .txt {
    display: grid;
    justify-content: center;
    flex-grow: 2;
}
.wrap-CVbtn .txt strong {
    color: var(--main-green);
    font-size: 42px;
    line-height: 1.2;
    text-align: center;
}
.wrap-CVbtn .txt strong span {
    font-size: 38px;
}
.wrap-CVbtn .txt strong span + span {
    font-size: 50px;
    display: block;
    text-decoration: underline;
    text-align: center;
}
.wrap-CVbtn .txt .tag {
    align-items: center;
    background: #fff;
    display: flex;
    height: 40px;
    justify-content: center;
    margin: 0 auto;
    padding: 5px 0 8px;
    width: 70%;
}
.wrap-CVbtn .tag span {
    line-height: 1;
}
.wrap-CVbtn .tag span img {
    display: inline-block;
    margin: 2px 5px -3px;
    width: 20px;
}
.wrap-CVbtn .tag span:nth-of-type(2) img,
.reason .tag span img {
    width: 17px;
}
@media screen and (max-width: 1280px) {
    .wrap-CVbtn {
        padding: 40px 60px;
    }
    .solve .item p {
        padding-left: 30px;
    }
}
@media screen and (max-width: 1130px) {
    .solve .item .ttl {
        font-size: 18px;
    }
    .solve .item p {
        padding-left: 15px;
    }
    .wrap-CVbtn .txt strong {
        font-size: 35px;
    }
    .wrap-CVbtn .txt strong span {
        font-size: 30px;
    }
    .wrap-CVbtn .txt strong span + span {
        font-size: 40px;
    }
    .solve .animation-yoko,
    .solve .animation-yoko2 {
        width: 20vw;
    }
    .wrap-CVbtn .txt .tag {
        width: 90%;
    }
}
@media screen and (max-width: 750px) {
    .solve {
        margin-top: 50px;
    }
    .solve h2 {
        font-size: 22px;
    }
    .solve h2 span {
        font-size: 30px;
    }
    .solve .col3 {
        display: block;
    }
    .solve .item {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 2;
        margin-bottom: 20px;
        padding: 35px 5px 30px;
    }
    .solve .item::before {
        background: url(../images/icon-nayami.png) no-repeat 50% 0;
        background-size: 50px;
    }
    .solve .item .ttl {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .solve .item p {
        padding-left: initial;
        text-align: center;
    }
    .wrap-CVbtn {
        display: block;
        padding: 30px 0 30px;
        position: relative;
    }
    .wrap-CVbtn .animation-yoko,
    .wrap-CVbtn .animation-yoko2 {
        display: none;
    }
    .wrap-CVbtn .sp-only {
        text-align: center;
    }
    .wrap-CVbtn .sp-only img {
        display: block;
        text-align: center;
        margin: 0 auto 30px;
    }
    .wrap-CVbtn .txt strong {
        font-size: 25px;
        line-height: 1.1;
    }
    .wrap-CVbtn .txt strong span  {
        font-size: 22px;
    }
    .wrap-CVbtn .txt strong span + span{
        font-size: 30px;
    }
    .wrap-CVbtn .txt .tag {
        align-items: baseline;
        height: 35px;
        width: 80%;
    }
}
@media screen and (max-width: 375px) {
       .solve .item:last-of-type .ttl {
        font-size: 17px;
    } 
}
/* ----
               Mechanism
                               -----  */
.mechanism .h2wrap {
    align-items: center;
    display: grid;
    gap: 40px;
    grid-template-columns: 330px 1fr;
    margin-bottom: 30px;
}
.mechanism .h2wrap h2  {
    color: var(--main-green);
    justify-content: left;
}
.mechanism .h2wrap h2 span {
    font-size: 40px;
}
.mechanism .h2wrap .txt .accent {
    font-weight: bold;
}
.mechanism .item {
    background: #fff;
    border: 2px solid var(--main-green);
    border-radius: 10px;
    display: grid;
    gap: 0;
    grid-template-rows: subgrid;
    grid-row: span 4;
    padding: 30px 15px;
}
.mechanism .item::after {
    background: url( ../images/arrow.png) no-repeat;
    background-size: 50px;
    display: block;
    content: "";
    height: 50px;
    position: absolute;
    right: -20px;
    top: 45%;
    width: 50px;
}
.mechanism .item:last-of-type:after {
    background: none
}
.mechanism .item .tag {
    background: var(--main-green);
    border-radius: 50vw;
    color: #fff;
    display: table;
    font-weight: bold;
    line-height: 1;
    margin: 20px auto 10px;
    padding: 2px 20px 5px;
}
.mechanism .item .tag span {
    font-size: 26px;
    padding-left: 5px;
}
.mechanism .item .txt {
    background: var(--light-green);
    border-radius: 15px;
    color: var(--green-dark);
    padding: 17px 15px 20px;
}
.mechanism .item .ttl {
    font-size: 20px;
    margin: 0 auto 10px;
}
.mechanism .item .lead {
    font-weight: bold;
    margin: 0 auto 5px;
    text-align: center;
}
@media screen and (max-width: 1130px) {
    .mechanism .col4 {
        gap: 20px;
    }
    .mechanism .item .ttl {
        font-size: 16px;
    }
    .mechanism .item::after {
        background-size: 35px;
        height: 35px;
        width: 35px;
    }
    .mechanism .item .tag {
        font-size: 15px;
    }
    .mechanism .item .tag span {
        font-size: 20px;
    }
}
@media screen and (max-width: 750px) {
    .mechanism .h2wrap {
        display: block;
        margin-top: 15px;
    }
    .mechanism .col4 {
        gap: 10px;
        display: block;
    }
    .mechanism .item {
        display: block;
        margin-bottom: 30px;
    }
    .mechanism .item .image {
        width: 60%;
    }
    .mechanism .item .ttl {
        text-align: center;
    }
    .mechanism .item::after {
        bottom: -25px;
        right: calc(50% - 17px);
        top: initial;
        transform: rotate(90deg);
    }
}


/* ----
               About
                               -----  */
#about .wrap-row {
    background: var(--light-green);
    padding: 40px;
}
#about h2 img {
    padding-right: 10px;
}
#about h2 + p {
    font-size: 20px;
    margin: 30px auto;
    text-align: center;
}
.wrap-row .item {
    background: #fff;
    border-radius: 16px;
    display: grid;
    justify-content: center;
    padding: 33px 15px;
}
#about .item .icon {
    margin: 0 auto 20px;
    width: 90px;
}
#about .item .icon.width {
    width: 100px;
}
#about .item .num {
    color: var(--accent-red);
    font-size: 60px;
    margin: -20px auto 0;
}
#about .item .num span {
    font-size: 22px;
}
#about .item .ttl {
    font-size: 27px;
    margin: 0 auto 10px;
}
#about .item p {
    font-size: 14px;
}
#about .col2 .item p {
    text-align: center;
}
#about .col4 .ttl {
    font-size: 24px;
}
#about .col4 {
    gap: 20px;
    margin-top: 20px;
}
#about .col4 .item {
    display: grid;
    gap: 0;
    grid-template-rows: subgrid;
    grid-row: span 3;
}
#about .col4 p {
    margin: 0 20px;
}
@media screen and (max-width: 1130px) {
    #about .item .ttl {
        font-size: 22px;
    }
}

@media screen and (max-width: 750px) {
    #about .wrap-row {
        padding: 20px;
    }
    #about .col2 {
        display: block;
    }
    .wrap-row .item {
        margin-bottom: 20px;
        padding: 20px;
    }
    #about .item .num {
        font-size: 38px;
    }
    #about .col4 {
        display: block;
    }
}
/* ----
               Worls
                               -----  */
#works h2 {
    background-image: url(../images/works-ttl1.png), url(../images/works-ttl2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: left, right;
    background-size: contain ,contain;
    display: table;
    font-size: 36px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}
#works h2::after {
    background: url(../images/path.png) no-repeat bottom;
    background-size: contain;
    bottom: -5px;
    content: "";
    display: block;
    height: 30px;
    position: absolute;
    width: 80%;
    z-index: -1;
}
#works h2 span {
    font-size: 30px;
}
#works h2::before {
    background: url(../images/path.png) none center;
    background-size: contain;
    display: block;
    height: auto;
    width: 100%;
}
#works .col4 {
    gap: 40px;
    margin: 50px 20px 0;
}
#works .item {
    padding: 0 10px;
}
#works .item .image {
    width: 95%;
}
#works .item .ttl {
    margin: 10px auto;
    text-align: center;
}
#works .item .tag {
    background: var(--light-green);
    border-radius: 50vw;
    color: var(--green-dark);
    font-weight: bold;
    margin-bottom: 10px;
    padding: 3px 0;
    text-align: center;
}

#effects.bg {
    background: #E2EEC5;
}
#effects h2 {
    font-size: 36px;
    margin-bottom: 50px;
}
#effects h2 .s-txt {
    font-size: 30px;
}
#effects h2 .accent {
    font-size: 40px;
}
#effects .col3 {
    gap: 25px;
}
#effects .col3 .item {
    padding: 25px 45px;
}
#effects .col3 .ttl {
    background: url(../images/icon-check.png) no-repeat 50% 0;
    background-size: 54px;
    font-size: 25px;
    margin: 0 auto;
    padding: 70px 0 10px;
    text-align: center;
}
#effects .ttl span {
    color: var(--main-green);
}
#effects .col3 .ttl + p {
    padding: 0 10px;
}
#effects .effect {
    border-top:1px dotted var(--base-t);
    margin-top: 15px;
    padding: 15px 0 0;
}
#effects .effect span {
    background: #F8FBA1;
    color: var(--accent-red) ;
    font-size: 27px;
    display: table;
    margin: 0 auto;
    padding: 0 8px;
}
.wrap-case {
    background: var(--light-green);
    border-radius: 20px;
    margin-top: 80px;
    padding-bottom: 60px;
}
.wrap-case h3 {
    background: var(--main-green);
    border-radius: 20px 20px 0 0;
    color: #fff;
    font-size: 30px;
    letter-spacing: 2px;
    padding: 15px 0;
    text-align: center;
}
.wrap-case h3 span {
    font-size: 26px;
}
.case {
    display: grid;
    gap: 35px;
    grid-template-columns: 370px 1fr;
    padding: 60px;
}
.case .item {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
}
.case .item .image {
    border-radius: 12px;
    width: 100%;
}
.case .item .ttl {
    font-size: 20px;
    margin: 10px 0 0;
}
.case .item .txt {
    background: #F2F6E6;
    border-radius: 8px;
    margin-top: 15px;
    padding-top: 15px;
}
.case .item .txt-ttl {
    background: #E2ECCA;
    color: var(--main-green);
    font-size: 19px;
    font-weight: bold;
    padding: 3px 0;
    text-align: center;
}
.case .item .txt p {
    padding: 16px;
}

.wrap-case h4 {
    color: var(--main-green);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
}
.wrap-case h4::before,
.wrap-case h4::after {
    background: #C8D8A3;
    bottom: -5px;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    width: 100%;
}
.wrap-case h4::after {
    background: var(--main-green);
    width: 10%;
}
.case .detaile li {
    background: #fff;
    border-radius: 8px;
    padding: 10px 20px;
}
.case .col2 li::before {
    content: "⚫︎";
    color: var(--main-green);
    padding-right: 5px;
}
.case .col2 {
    gap: 12px;
    margin-bottom: 30px;
}
.case .col2 li {
    padding: 10px;
}
.case .col4 {
    gap: 11px;
}
.case .col4 li {
    align-items: center;
    padding: 20px;
        display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
}
.case .col4 li .ttl {
    font-size: 22px;
    margin: 0 auto;
    text-align: center;
}
.case .col4 li .txt {
    background: var(--light-green);
    color: var(--green-dark);
    font-size: 16px;
    font-weight: bold;
    padding: 5px 0;
    text-align: center;
}
.case .col4 li .txt span {
    font-size: 30px;
}
.case .col4 li p {
    font-size: 12px;
    text-align: center;
}

.wrap-case .voice {
    background: #fff;
    border: 3px solid #E2EEC5;;
    border-radius: 10px;
    padding: 24px;
    margin: 0 50px;
}
.wrap-case .voice .ttl {
    background: url(../images/icon-voice.png) no-repeat;
    background-size: contain;
    margin-bottom: 10px;
    padding-left: 40px;
}
@media screen and (max-width: 1280px) {
    #effects .effect span {
        font-size: 24px;
    }
    .case .col4 li .ttl {
        font-size: 19px;
    }
    .case .col4 li .txt span {
        font-size: 25px;
    }
}
@media screen and (max-width: 1130px) {
    #effects .col3 .item {
        padding: 25px 35px;
    }
    #effects .col3 .ttl {
        font-size: 23px;
    }
    #effects .effect span {
        font-size: 22px;
    }
        .case .col4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .case .col4 li .ttl {
        font-size: 18px;
    }

}
@media screen and (max-width: 850px) {
    .case {
        display: block;
        gap: 35px;
        padding: 20px;
    }
    .wrap-case .voice {
        margin: 0 20px;
    }
}

@media screen and (max-width: 750px) {
    #works h2 {
        background-image: url(../images/works-ttl1.png), url(../images/works-ttl2.png);
        background-repeat: no-repeat, no-repeat;
        background-position: left, right;
        background-size: 50px ,50px;
        font-size: 30px;
        line-height: 1.2;
        padding: 0 50px;
    }
    #works h2::after {
        width: 68%;
    }
    #works .col4 {
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
    #works .item {
        padding: 0;
    }
    #effects h2 {
        margin-bottom: 30px;
    }
    #effects .col3 {
        display: block;
    }
    #effects .effect span {
        font-size: 22px;
    }
    .detaile {
        margin-top: 30px;
    }

    .case .col4 li .ttl {
        font-size: 17px;
    }
    .case .col4 li .txt span {
        font-size: 24px;
        text-align: center;
    }
    .wrap-case {
        padding-bottom: 20px;
    }
    .wrap-case h3 {
        font-size: 22px;
    }
    .wrap-case h4::after {
        width: 23%;
    }
}
/* ----
               Flow
                               -----  */
.wrap-flow {
    margin: 0 auto;
    max-width: 1000px;
 }
.item-flow {
    align-items: center;
    background: var(--light-green);
    display: grid;
    grid-template-columns: 650px 1fr;
    margin-top: 70px;
    padding: 40px 50px;
    position: relative;
}
.item-flow::after {
    bottom: -60px;
    background: url(../images/arrow-flow.png) no-repeat 50% 100%;
    background-size: contain;
    content: "";
    display: block;
    height: 50px;
    position: absolute;
    width: 100%;
}
.item-flow:last-of-type:after {
    background: none;
}
.item-flow .ttl {
    background: url(../images/icon-flow.png) no-repeat;
    background-size: contain;
    color: var(--accent-red);
    font-size: 28px;
    margin-bottom: 10px;
    padding-left: 50px;
}
.item-flow .txt ul {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}
.item-flow .txt ul {
    background: #fff;
    display: flex;
    margin-top: 20px;
    padding: 15px 0 15px 20px;
}
.item-flow .txt ul li {
    font-size: 18px;
    padding-right: 20px;
}
.item-flow .txt ul li::before {
    content: "⚫︎";
    color: var(--green-dark);
}
.item-flow .image {
    background: #fff;
    border-radius: 16px;
    margin-left: 30%;
    padding: 20px;
}
.item-flow .image img {
    object-fit: contain;
}

.wrap-case.schedule {
    padding-bottom: 40px;
}
.wrap-case.schedule h3 {
    padding: 30px 0 0;
}
.wrap-case.schedule {
    padding-bottom: 40px;
}
.wrap-case.schedule .tag-wrap {
    background: var(--main-green);
    margin: -5px 0 40px;
    text-align: center;
}
.wrap-case.schedule .tag {
    background: #fff;
    border-radius: 50vw;
    color: var(--main-green);
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 20px auto 40px;
    padding: 15px 30px;
}
.wrap-case.schedule .tag .sm {
    font-size: 18px;
    padding-left: 10px;
}
.wrap-case.schedule .row {
    background: #fff;
    border: 2px dashed var(--main-green);
    margin: 0 auto;
    max-width: 450px;
    padding: 35px 0 30px 70px;
    text-align: center;
}
.wrap-case.schedule .ttl {
    color: var(--accent-red);
    display: inline-block;
    font-size: 42px;
    letter-spacing: 4px;
    line-height: 0.3;
	position: relative;
	z-index: 0;
}
.wrap-case.schedule .ttl::after {
	background: hsla(62, 92%, 81%, 1);
	bottom: 10px;
	content: "";
	display: inline-block;
	height: 20px;
    left: -62px;
	position: relative;
	width: 130%;
	z-index: -1;
}
.wrap-case.schedule .ttl img {
    bottom: 6px;
    left: -60px;
    position: absolute;
    width: 50px;
}
.wrap-case.schedule .ttl .em {
    font-size: 75px;
}
.wrap-case.schedule .ttl span + span {
    left: -5px;
    letter-spacing: -5px;
    position: relative;
}
.wrap-case.schedule .row p {
    font-size: 18px;
    padding-left: 87px;
}
@media screen and (max-width: 1130px) {
    .item-flow {
        gap: 0 5vw;
        grid-template-columns: 3.5fr 1fr;
    }
    .item-flow .image {
        margin-left: initial;
    }
    .item-flow .txt ul li {
        font-size: 16px;
    }
}
@media screen and (max-width: 980px) {

}
@media screen and (max-width: 750px) {
    .item-flow {
        display: block;
        margin-top: 70px;
        padding: clamp(160px, 25vh, 250px) 20px 20px;
    }
    .item-flow:first-of-type {
        margin-top: 40px;
    }
    .item-flow::after {
        background: url(../images/arrow-flow.png) no-repeat 44% 100%;
        background-size: contain;
        bottom: -60px;
    }
    
    .item-flow .ttl {
        font-size: 24px;
        padding-left: 50px;
    }
    .item-flow .txt ul li {
        font-size: 16px;
    }
    .item-flow .image {
        left: 35%;
        padding: 15px;
        position: absolute;
        top: 30px;
        width: 30%;
    }
    .wrap-case.schedule .tag {
        margin: 10 auto 25px;
        padding: 10px 50px;
        text-align: center;
    }
    .wrap-case.schedule .tag-wrap {
        margin: -1px 0 40px;
    }
    .wrap-case.schedule .tag .sm {
        display: block;
        font-size: 14px;
    }
    .wrap-case.schedule .row {
        max-width: 300px;
        padding: 35px 0 30px 30px;
        text-align: center;
    }
    .wrap-case.schedule .ttl {
        font-size: 30px;
    }
    .wrap-case.schedule .ttl::after {
        bottom: 3px;
        height: 17px;
        left: -43px;
    }
    .wrap-case.schedule .ttl .em {
        font-size: 40px;
    }
    .wrap-case.schedule .ttl img {
        bottom: 3px;
        left: -45px;
        width: 40px;
    }
    .wrap-case.schedule .row p {
        font-size: 16px;
        padding-left: 61px;
    }
}



/* ----
               Fee
                               -----  */
#fee .t-center {
    margin: 30px auto 50px;
}
#fee .wrap-CVbtn,
.reason .wrap-CVbtn {
    align-items: end;
    background: var(--main-green);
    border-radius: 16px;
    color: #fff;
    padding: 50px;
}
#fee .wrap-CVbtn .txt strong {
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
} 
#fee .wrap-CVbtn p {
    text-align: center;
} 
#fee .wrap-CVbtn .pc img {
    width: 90%;
    max-height: 280px;
}
#fee .col3 {
    margin-top: 50px;
}
#fee .item {
    align-items: self-start;
    background: #fff;
    border-radius: 12px;
    padding: 40px 20px;
    display: grid;
    gap: 0;
    grid-template-rows: subgrid;
    grid-row: span 5;
}
#fee .item::before {
    background: hsla(78, 64%, 73%, 1);
    content: "";
    display: block;
    height: 18px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    border-radius: 12px 12px 0 0;
}
#fee .item:nth-of-type(2)::before {
    background: hsla(78, 63%, 58%, 1);
}
#fee .item:nth-of-type(3)::before {
    background: hsla(78, 63%, 43%, 1);
}
#fee .item .tag {
    background: var(--main-green);
    border-radius: 50vw;
    color: #fff;
    margin: 0 auto 15px;
    padding: 8px 0;
    text-align: center;
    width: 250px;
}
#fee .item .ttl {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
#fee .item .ttl span {
    display: inline-block;
    font-size: 18px;
    font-weight: normal;
}
.price-wrap {
    align-items: baseline;
    color: var(--accent-red);
    display: flex;
    font-weight: bold;
    justify-content: center;
    line-height: 1;
}
.price-wrap .price {
    font-size: 20px;
    font-weight: bold;
}
.price-wrap .price .em {
    font-size: 60px;
}
.price-wrap .price + span {
    color: initial;
    font-weight: normal;
}

#fee .item .txt {
    margin: 40px 0;
}
#fee .item .txt.flex {
    align-items: center;
    background: hsla(73, 47%, 90%, 0.9);
    display: flex;
    justify-content: center;
}
#fee .item .txt p {
    background: hsla(73, 47%, 90%, 0.9);
    color: var(--main-green);
    font-size: 17px;
    margin-bottom: 4px;
    padding: 5px 0;
    text-align: center;
}
#fee .item:first-of-type .txt.flex {
    height: 74px;
}
#fee .item dl {
    background: hsla(73, 47%, 90%, 0.2);
    padding-bottom: 15px;
}
#fee .item dl dt {
    background: hsla(73, 47%, 90%, 0.9);
    color: var(--green-dark);
    font-size: 17px;
    margin-bottom: 10px;
    padding: 5px 0;
    text-align: center;
}
#fee .item dl dd {
    font-size: 18px;
    padding: 5px 20px;
}
#fee .item dl dd::before {
    content: "⚫︎";
    color: var(--main-green);
}
#fee .item:last-of-type dl dd {
    text-align: center;
}
#fee .item dd .ttl {
    font-size: 15px;
}
#fee .item:last-of-type dl {
    padding-bottom: 20px;
}
#fee .item:last-of-type dl dd::before {
    content: "";
}
#fee .item:last-of-type dl dd .box {
    background: hsla(73, 47%, 90%, 0.4);
    color: var(--accent-red);
    font-size: 17px;
    font-weight: bold;
    padding: 20px;
    text-align: center;
}
#fee .item:last-of-type dl dd .box span {
    font-size: 13px;
    font-weight: normal;
    display: inline-block;
}
@media screen and (max-width: 1130px) {
    #fee .wrap-CVbtn .txt {
        display: flex;
        flex-wrap: wrap;
        width: 65%;
    }
    #fee .wrap-CVbtn .txt strong {
        font-size: 28px;
    }
    #fee .item {
        padding: 40px 15px;
    }
    #fee .item .txt p {
        font-size: 15px;
    }
}
@media screen and (max-width: 980px) {
    #fee .col3 {
        display: block;
        margin-top: 50px;
    }
    #fee .wrap-CVbtn .txt {
        width: 70%;
    }
    #fee .wrap-CVbtn .txt strong {
        font-size: 24px;
    }
    #fee .wrap-CVbtn p {
        font-size: 15px;
        width: 100%;
    }
}
@media screen and (max-width: 750px) {
    #fee .item {
        display: block;
        margin-bottom: 30px;
        padding: 40px 20px;
    }
    #fee .item:first-of-type .txt.flex {
        height: initial;
    }
    #fee .item dl {
        padding-bottom: 20px;
    }
    #fee .wrap-CVbtn {
        padding: 50px 20px;
    }
    #fee .wrap-CVbtn .txt {
        width: 100%;
    }
    #fee .wrap-CVbtn .txt strong {
        padding-bottom: 10px;
    }

}



/* ----
               FAQ
                               -----  */
.faq {
    max-width: 890px;
    margin: 50px auto 0;
}       
.faq dl {
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}                               
.js-accordion {
  align-items: center;
  background-color: var(--light-green);
  border: none;
  color: var(--main-green);
  cursor: pointer;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  padding: 20px 24px;
}
.faq dl dd {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
}
.faq dl dd p {
    padding: 20px 24px;
}
.openIcon {
  width: 40px;
  height: 40px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}
.openIcon i {
  display: block;
  background-color: var(--green-dark);
  width: 100%;
  height: 3px;
  transition: all 0.6s ease;
}
.openIcon i:nth-of-type(1) {
  transform: translateX(20px);
}
.openIcon i:nth-of-type(2) {
  transform: rotate(-90deg);
}
.js-accordion.active .openIcon i:nth-of-type(1) {
  transform: rotate(-45deg) translate( 14px, 14px);
}
.js-accordion.active .openIcon i:nth-of-type(2) {
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
    .js-accordion,
    .faq dl dd p {
        padding: 20px;
    }
    .openIcon {
    width: 28px;
    height: 28px;
    }
    .openIcon i {
    height: 2px;
    }
    .openIcon i:nth-of-type(1) {
    transform: translateX(14px);
    }
    .js-accordion.active .openIcon i:nth-of-type(1) {
    transform: rotate(-45deg) translate( 10px, 10px);
    }
}

/* ----
               Last CV
                               -----  */
.Ftr-suggest {
	background: #fff;
    border-radius: 16px;
    margin: 0 auto;
	max-width: 600px;
    padding: 40px 65px;
	position: relative;
	text-align: center;
}
.Ftr-suggest::before {
	border-style: solid;
	border-width: 20px 16px 0 16px;
	border-color: #fff transparent transparent transparent;
	bottom: -15px;
	content: " ";
	left: calc( 50% - 10px);
	height: 0;
	position: absolute;
	width: 0;
}
.Ftr-suggest h2 {
	display: block;
}
.Ftr-suggest p {
    background: var(--light-green);
    font-size: 18px;
    font-weight: bold;
	margin: 0 auto 15px;
    padding: 5px 0;
    text-align: center;
}
.reason {
    background: hsla(78, 53%, 78%, 0.8);
    border-radius: 20px;
    margin-top: 30px;
    padding: 40px 0 0;
}
.reason h2 .accent {
    font-size: 43px;
    line-height: 1.4;
}
.reason h2 span + span {
    font-size: 35px;
}
.reason .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 18% 40px;
}
.reason .list li {
    background: url(../images/icon-check.png) no-repeat #fff 16px 50%;
    border-radius: 50vw;
    background-size: 24px;
    margin: 15px 8px 0;
    padding: 10px 20px 10px 50px;
}
.reason .CV-wrap {
    background: hsla(78, 53%, 78%, 0.8);
    border-radius: 20px 20px 0;
    padding: 40px 0;
}
.reason .wrap-CVbtn {
    align-items: end;
    border-radius: 0 0 16px 16px;
    padding: 30px 90px;
}
.reason .wrap-CVbtn .animation-yoko img,
.reason .wrap-CVbtn .animation-yoko2 img {
    display: block;
    width: 80%;
}
.reason .wrap-CVbtn .txt .tag {
    color: var(--base-t);
    padding-right: 10px;
    width: 45%;
}

.reason .cv-Btn a {
    padding-right: 55px;
}
.reason .slash {
	font-size: 28px;
    text-align: center;
}
.reason .slash span {
    display: block;
	font-size: 30px;
    text-align: center;
}
.reason .slash::before,
.reason .slash::after {
    background: #fff;
    left: -70px;
    top: 52%;
    transform: rotate(75deg);
    width: 70px;
}
.reason .slash:after {
	right: -70px;
	left: initial;
    transform: rotate(-75deg);
}
@media screen and (max-width: 1280px) {
    .reason .list {
        margin: 20px 10% 40px;
    }
    .reason .wrap-CVbtn .txt {
        display: flex;
        flex-wrap: wrap;
        width: 65%;
    }
    .reason .wrap-CVbtn {
        padding: 30px 60px;
    }
    .reason .slash span {
        font-size: 28px;
    }
}
@media screen and (max-width: 1130px) {
    .reason .slash {
        font-size: 22px;
    }
    .reason .slash span {
        font-size: 25px;
    }
}
@media screen and (max-width: 980px) {
    .reason .list {
        margin: 20px 3% 40px;
    }
    .reason .wrap-CVbtn {
        padding: 30px;
    }
    .reason .wrap-CVbtn .txt {
        width: 97%;
    }
    .reason .slash span {
        font-size: 23px;
    }
    
}
@media screen and (max-width: 750px) {
    .Ftr-suggest {
        padding: 20px;
    }
    .Ftr-suggest h2 {
        display: block;
        font-size: 24px;
    }
    .reason .list {
        margin: 20px 0 40px;
    }
    .reason .wrap-CVbtn {
        padding: 30px;
    }
    .reason .wrap-CVbtn .txt {
        width: 100%;
    }
    .reason .slash {
        font-size: 20px;
        letter-spacing: 0;
        text-align: center;
    }
    .reason .slash span {
        font-size: 24px;
    }
    .reason .slash::before,
    .reason .slash::after {
        left: -55px;
        top: 52%;
        width: 90px;
    }
    .reason .slash:after {
        right: -55px;
        left: initial;
    }
    .reason .cv-Btn.bubble {
        min-width: 320px;
    }
    .reason .cv-Btn a {
        padding-right: initial;
    }
}
@media screen and (max-width: 375px) {

    .Ftr-suggest h2 {
        font-size: 22px;
    }
}
/* ---------------------------------

Footer
	
--------------------------------- */
footer .footer-nav li {
    font-size: initial;
}
footer .footer-bar small {
    font-size: initial;
    text-align: center;
}
.footerCV {
    display: none;
}
.btn-scroll-top {
    cursor: pointer;
}
@media screen and (max-width: 750px) {
    footer {
        padding-bottom: 106px;
    }
    .footerCV {
        background: var(--light-green);
        bottom: 0;
        box-shadow: 0px 1px 5px rgb(0, 0, 0, .3);
        display: block;
        opacity: 1;
        position: fixed;
        right: 0;
        transition: .5s;
        width: 100vw;
        z-index: 100;
    }
    .footerCV .wrap-CVbtn {
        background: inherit;
        margin: 0 auto;
        padding: 12px 0 10px;
        position: relative;
        width: 80%;
    }
    .footerCV .wrap-CVbtn .tag {
        align-items: center;
        display: flex;
        justify-content: center;
        margin: 10px 0 0;
    
    }
    .footerCV .wrap-CVbtn .tag span {
        font-size: 12px
    }
    .footerCV .wrap-CVbtn .tag span img {
        width: 15px;
    }
    .footerCV .wrap-CVbtn .cv-Btn a {
        /* padding-left: 12vw; */
    }
    .js-scrol-footer.hide {
        opacity: 0;
    }
    .reason .wrap-CVbtn .sp-only img {
        width: 100%;
    }
    .btn-scroll-top {
        bottom: 100px;
    }
}
@media screen and (max-width: 375px) {
    .footerCV .wrap-CVbtn .cv-Btn a {
        padding-left: 10vw;
    }
}