@charset "utf-8";

/**************** header ********/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 30px 30px 0;
}
header * {
  transition: all .3s ease-out;
}
header {
  opacity: 0;
  transition: opacity .9s ease-out 1.8s;
}
header::before {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .8);
  content: "";
  transition: opacity .3s ease-out .0s;
}
header.start {
  opacity: 1;
}
header .logo {
  /* transform: translate(0px, -100px);
  transition: all .3s ease-out .3s; */
  width: 352px;
  height: auto;
  text-indent:100%;
  white-space:nowrap;
  overflow:hidden;
  background: url("../img/common/logo.svg") no-repeat center left / contain;
  transition: none;
}
header .logo img {
  display: block;
}
header .nav {
  display: flex;
  align-items: center;
  gap: 50px;
}
header .nav li a {
  font-weight: bold;
  font-size: var(--mini-font-size);
  color: var(--white-color);
  cursor: pointer;
}
header .nav li.contact {
  width: 210px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
header .nav li.contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  border: 2px solid var(--white-color);
  border-radius: 60px;
  color: var(--white-color);
  background: #27C785;
  line-height: 100%;
}
header .nav li.contact a span{
  position: relative;
  padding-left: 15px;
}
header .nav li.contact a span::before{
  content: "";
  position: absolute;
  top: calc(50% - 11px);
  left: -15px;
  width: 22px;
  height: 22px;
}
header .nav li.contact a.mail span::before{
  background: url(../img/top/icon_mail.svg) no-repeat center center / cover;
}
header .nav li.contact a.tel span::before{
  background: url(../img/top/icon_tel.svg) no-repeat center center / cover;
}
@media (any-hover:hover) {
  header .nav li.contact a:hover {
    background: var(--white-color);
    color: #03B68C;
  }
  header .nav li.contact a.mail:hover span::before{
    background: url(../img/top/icon_mail_green.svg) no-repeat center center / cover;
  }
  header .nav li.contact a.tel:hover span::before{
    background: url(../img/top/icon_tel_green.svg) no-repeat center center / cover;
  }
}
header.fixed {
  top: 0;
  padding: 5px 14px;
}
header.fixed::before {
  opacity: 1;
}
header.fixed .logo {
  transform: translate(0px, 0px);
  background: url("../img/common/logo_green.svg") no-repeat center left / contain;
  width: 263px;
  height: auto;
}
header.fixed .nav li a {
  font-size: 14px;
  color: var(--black-color);
}
header.fixed .nav li.contact a{
  width: 210px;
  height: 40px;
  border: 1px solid #ffff;
  border-radius: 40px;
  background: linear-gradient(50deg, #01c55b 27.45%, #02b981 93.46%);
}
header.fixed .nav li.contact a{
  color: var(--white-color);
}
header.fixed .nav li.contact a.tel{
  display: none;
}
@media (any-hover:hover) {
  header.fixed .nav li.contact a:hover {
    background: var(--white-color);
    color: #03B68C;
  }
}
@media screen and (max-width:1280px) {
  header {
    padding: calc(30/1280 * 100vw) calc(30/1280 * 100vw) 0;
  }
  header .logo {
    width: calc(352/1280 * 100vw);
    height: calc(24/1280 * 100vw);
    background-size: contain;
  }
  header .nav {
    gap: calc(50/1280 * 100vw);
  }
  header .nav li.contact {
    width: calc(210/1280 * 100vw);
  }
  header .nav li.contact a{
    height: calc(40/1280 * 100vw);
    border: calc(2/1280 * 100vw) solid var(--white-color);
    border-radius: calc(40/1280 * 100vw);
  }
  header.fixed {
    padding: calc(5/1280 * 100vw) calc(14/1280 * 100vw);
  }
  header.fixed .logo {
    background-size: contain;
  }
  header.fixed .nav li a {
    font-size: calc(14/1280 * 100vw);
  }
  /* header.fixed .nav li.contact {
    width: calc(210/1280 * 100vw);
    height: calc(40/1280 * 100vw);
    border-radius: calc(40/1280 * 100vw);
  } */
}
@media screen and (max-width:767px) {
  header {
    display: block;
    top: 0;
    height: 60px;
    padding: 0;
  }
  header .logo {
    position: absolute;
    z-index: 99;
    width: 69vw;
    height: auto;
    padding: 0px;
    margin-top: 3.5vw;
    margin-left: 3vw;
  }
  header.open .logo {
    background: url(../img/common/logo.svg) no-repeat center left / contain;
  }
  header .nav {
    flex-wrap: wrap;
    gap: 5vw;
  }
  header .nav li {
    width: 100%;
    text-align: center;
  }
  header .nav li a {
    font-size: var(--big-font-size);
  }
  header .nav li.contact, header.fixed .nav li.contact{
    width: 55vw;
    margin: 0 auto;
  }
  header .nav li.contact a, header.fixed .nav li.contact a {
    width: 100%;
    height: 12vw;
    margin: 0 auto 0;
    border: 1px solid var(--white-color);
    border-radius: 10vw;
    box-sizing: border-box;
    background: linear-gradient(19deg, rgba(1, 197, 91, 0.38) -40.91%, rgba(3, 179, 147, 0.32) 24.29%);
  }
  header .nav li.contact a {
    color: var(--white-color);
    line-height: 100%;
  }
  header.fixed .nav li.contact a.tel{
    display: flex;
  }

  header.fixed .logo {
    width: 69vw;
    height: auto;
    transform: none;
  }
  /* header.fixedsp .logo {
  }
  header.fixed {
    top: 0;
  } */
  header.fixed .nav li a {
    font-size: unset;
    color: var(--white-color);
  }


  /*========= nav ===============*/
  header .linkarea {
    position: relative;
    top: -100dvh;
  }
  /*アクティブになったエリア*/
  header .linkarea.panelactive {
    display: flex;
    justify-content: center;
    align-items:flex-start;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    padding-top: 30vw;
  }
  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 3;
    transform: scale(0);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(159deg, #2EC2A7 0.28%, #36D46B 43.25%, #9FEC83 68.86%, #FFEF5D 106.46%);
    transition: all .4s;
    opacity: 0.93;
  }
  .circle-bg.circleactive {
    transform: scale(100);
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav-list {
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;

    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  header .linkarea {
    opacity: 0;
  }
  header .linkarea.panelactive {
    animation: gnaviAnime .4s .3s forwards;
  }
  /*========= nav button ===============*/
  .openbtn {
    position: fixed;
    top: 7px;
    right: 17px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  .openbtn span {
    display: inline-block;
    position: absolute;
    right: 0;
    width: 70%;
    height: 3px;
    background: var(--black-color);
    transition: all .3s;
  }
  .openbtn span:nth-of-type(1) {
    top: 12px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 34px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    right: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    right: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
  }
}
@keyframes gnaviAnime {
  0% {
    opacity: 0 ;
  }
  100% {
    opacity: 1 ;
  }
}
/**************** header END ********/



/**************** hero ********/
#container {
  padding-top: calc(100vh + 50px);
}
#hero {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  height: calc(100vh + 50px);
  overflow: hidden;
  background: linear-gradient(159deg, #2ec2a7 .28%, #36d46b 43.25%, #9fec83 68.86%, #ffef5d 106.46%);
}
body.fixed #hero,
#hero.is-opacity0{
  /* display: none;*/
  /* opacity: 0;  */
  z-index: -1;
  visibility: hidden;
}
#hero.is-opacity0 .splideconts{
  display: none !important;
}
#hero::before {
  position: absolute;
  top: 23vw;
  left: 0;
  width: 100%;
  height: 34vw;
  background: url(../img/top/hero_bg.svg) bottom center / cover;
  content: "";
}
#hero .txtarea{
  position: absolute;
  top: 175px;
  left: 110px;
  display: flex;
  justify-content: flex-start;
  gap: 60px;
  /* width: 100%; */
}
#hero .txtarea h3 span{
  display: block;
}
#hero .txtarea h3 span:nth-of-type(2){
  margin-top: 24px;
}
#hero .txtarea h2{
  position: relative;
  width: 780px;
  height: 163px;
}
#hero .txtarea h2 span{
  display: block;
  width: 0;
  height: 100%;
  overflow: hidden;
  position: absolute;
}
#hero .txtarea h2 span img{
  position: absolute;
  display: block;
  min-width: 780px;
  height: 163px;
  left: 0%;
}
#hero .txtarea h3{
  opacity: 0;
  top: 20px;
  position: relative;
}
#hero .txtarea h3 span:nth-of-type(1) img{
  width: 462px
}
#hero .txtarea h3 span:nth-of-type(2) img{
  width: 475px;
}
@media screen and (min-width:1600px) {
  #hero .txtarea{
    left: 160px;
  }
  #hero .txtarea h2{
    width: calc(675/1600 * 100vw);
    height: calc(141/1600 * 100vw);
  }
  #hero .txtarea h2 span img{
    min-width: calc(675/1600 * 100vw);
    height: calc(141/1600 * 100vw);
  }
  #hero .txtarea h3 span:nth-of-type(1) img{
    width: calc(399/1600 * 100vw);
  }
  #hero .txtarea h3 span:nth-of-type(2) img{
    width: calc(411/1600 * 100vw);
  }
}
@media screen and (max-width:1600px) {
  #container {
    padding-top: calc(100vh + (50/1600 * 100vw));
  }
  #hero {
    height: calc(100vh + (50/1600 * 100vw));
  }
  #hero .txtarea{
    /* top: calc(175/1600 * 100vw); */
    left: calc(120/1600 * 100vw);
    gap: calc(60/1600 * 100vw);
  }
  #hero .txtarea h3 span:nth-of-type(2){
    margin-top: calc(24/1600 * 100vw);
  }

  #hero .txtarea h2{
    width: calc(780/1600 * 100vw);
    height: calc(163/1600 * 100vw);
  }
  #hero .txtarea h2 span img{
    min-width: calc(780/1600 * 100vw);
    height: calc(163/1600 * 100vw);
  }
  #hero .txtarea h3{
    top: calc(20/1600 * 100vw);
  }
  #hero .txtarea h3 span:nth-of-type(1) img{
    width: calc(462/1600 * 100vw)
  }
  #hero .txtarea h3 span:nth-of-type(2) img{
    width: calc(475/1600 * 100vw);
  }
}


.splideconts {
  position: relative;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.splide {
  position: absolute;
  bottom: 0;
}
.splide__slide img {
  width: 233px;
  height: auto;
}

/*********************** heroアニメーション設定 */
#hero .txtarea h2 span{
  transition: all 1.0s cubic-bezier(.12,.71,.15,.99) .6s;
}
#hero.start .txtarea h2 span{
  width: 100%;
}
#hero .txtarea h3{
  filter: blur(20px);
  transition: all 0.6s ease 1.8s;
}
#hero.start .txtarea h3{
  opacity: 1;
  top: 0;
  filter: blur(0px);
}

#hero .splide {
  /* スライド */
  opacity: 0;
  filter: blur(20px);
  transition: all .5s ease-out 1.8s;
}
#hero.start .splide {
  opacity: 1;
  filter: blur(0px);
}
/* heroアニメーション設定 END */

#hero .hero_contact_sp {
  display: none;
}

.scrolldown {
  opacity: 0;
  z-index: 5;
  transition: opacity .9s ease-out 1.8s;
}
.scrolldown.start {
  opacity: 1;
}
.scrolldown > div {
  position: absolute;
  bottom: 130px;
  left: -90px;
  transform: rotate(90deg);
  width: 150px;
  padding-top: 6px;
  font-weight: bold;
  font-size: var(--mini-font-size);
  line-height: 100%;
  transition: opacity .4s ease-out 0s;
}
.scrolldown.start.opacity0 > div {
  opacity: 0;
}
.scrolldown > div::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black-color);
  content: "";
  animation: width 2.6s ease 0s infinite normal;
}
.scrolldown.start > div::before {
  width: 100%;
}
.scrolldown > div::after {
  position: absolute;
  top: -3px;
  right: 0;
  transform: rotate(40deg);
  width: 0;
  height: 1px;
  background: var(--black-color);
  content: "";
  animation: width2 2.6s ease 0s infinite normal;
}
.scrolldown.start > div::before {
  width: 10px;
}
@keyframes width {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
@keyframes width2 {
  0% {
    width: 0;
  }
  30% {
    width: 0;
  }
  60% {
    width: 10px;
  }
  100% {
    width: 10px;
  }
}


@media screen and (max-width:1280px) {
  /* .splide__slide img {
    width: calc(233/1280 * 100vw);
  } */

  /*********************** heroアニメーション設定 */
  #hero .splide {
    /* スライド */
    filter: blur(calc(20/1280 * 100vw));
  }
  /* heroアニメーション設定 END */

  .scrolldown > div {
    bottom: calc(130/1280 * 100vw);
    left: calc(-64/1280 * 100vw);
    width: calc(150/1280 * 100vw);
    padding-top: calc(6/1280 * 100vw);
  }
}
@media (max-aspect-ratio: 8/5) {
  #container {
    padding-top: min(900px, calc(100vh + (50/1600 * 100vw)));
  }
  #hero {
    max-height: 900px;
  }
}
@media screen and (min-width:1600px) {
  #container {
    padding-top: min(900px, calc(100vh + (50/1600 * 100vw)));
  }
  #hero {
    max-height: 900px;
  }
}
@media screen and (max-height:800px) {
  #container {
    padding-top: min(800px, calc(100vh + (50/1600 * 100vw)));
  }
  #hero {
    min-height: 800px;
  }
}

/* @media (max-aspect-ratio: 8/5) {
  #container {
    padding-top: min(70vw, calc(100vh + (50/1600 * 100vw)));
  }
  #hero {
    max-height: 70vw;
  }
}
@media (min-aspect-ratio: 8/4) {
  #hero .txtarea{
    top: 20vh;
    transform: scale(0.8);
  }
}
@media (min-aspect-ratio: 80/50) {
  .splide__slide img {
    width: calc(233/800 * 100vh);
    height: auto;
  }
} */

@media screen and (min-width:1300px) {
}
@media screen and (min-width:1600px) {
}
@media screen and (min-width:1800px) {
}
@media screen and (min-width:2000px) {
}


@media screen and (max-width:767px) {
  #container {
    padding-top: 170vw;
  }
  #hero {
    height: 180vw;
    min-height: 180vw;
  }
  #hero::before {
    top: 0;
    height: 75vw;
    background: url(../img/top/hero_sp_bg.svg) top center / cover;
  }
/*
  .splideconts {
    position: relative;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
  }
  .splide {
    right: -4vw;
    width: 60vw;
    overflow: hidden;
  }
  .splide__slide img {
    width: unset;
    height: auto;
  } */

  #hero .slide_wrapper{
    position: relative;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    filter: blur(20px);
    transition: all .5s ease-out 1.8s;
  }
  #hero .hero_swiper {
    position: absolute;
    right: -8vw;
    bottom: -3vw;
    width: 64vw;
    overflow: hidden;
  }


  /*********************** heroアニメーション設定 */
  #hero .hero_contact_sp {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 29vw;
    right: 15px;
    z-index: 4;
    width: 10vw;
    height: 32vw;
    border: 2px solid var(--white-color);
    background: linear-gradient(110deg, #01C55B 26.83%, #03B393 73.17%);
    border-radius: 10vw;
    color: var(--white-color);
    font-size: var(--mini-font-size);
    writing-mode: vertical-rl;
  }
  #hero .hero_contact_sp {
    opacity: 0;
    transition: opacity .9s ease-out 1.8s;
  }
  #hero.start .hero_contact_sp {
    opacity: 1;
  }

  .scrolldown > div {
    bottom: 20vw;
    left: -13vw;
    width: 30vw;
    padding-top: 1vw;
  }
  .scrolldown > div::after {
    top: -4px;
  }

  #hero .txtarea{
    top: 26vw;
    left: 5vw;
    gap: 3vw;
    flex-direction: column;
  }
  #hero .txtarea h2{
    width: 90vw;
    height: 20vw;
  }
  #hero .txtarea h2 span img{
    min-width: 90vw;
    height: 20vw;
  }
  #hero .txtarea h3{
    top: calc(20/1600 * 100vw);
  }
  #hero .txtarea h3 span:nth-of-type(1) img{
    width: 84vw;
  }
  #hero .txtarea h3 span:nth-of-type(2){
    margin-top: 20vw;
  }
  #hero .txtarea h3 span:nth-of-type(2) img{
    width: 50vw;
  }
  #hero .slide_wrapper {
    /* スライド */
    opacity: 0;
    filter: blur(20px);
    transition: opacity .5s ease-out 1.8s, filter .5s ease-out 1.8s;
  }
  #hero.start .slide_wrapper {
    opacity: 1;
    filter: blur(0px);
  }
}
/**************** hero END ********/



/**************** contents common ********/
h3.basic {
  display: flex;
  align-items: center;
  gap: 0 30px;
  font-weight: bold;
  font-size: var(--basic-font-size);
  line-height: 100%;
}
h3.basic span {
  display: block;
  font-size: 48px;
  line-height: 100%;
}
.col_2 {
  display: flex;
  align-items: center;
}
.col_2 > div {
  width: 50%;
}
.scroll-action.totop_fade {
  opacity: 0;
  transform: translate(0,30px);
  transition: all .6s ease-out;
}
.gradation .scroll-action.totop_fade {
  transition: all .6s ease-out .6s;
}
.scroll-action.in-view.totop_fade {
  opacity: 1;
  transform: translate(0,0);
}
.plusbtn{
  display: inline-block;
  position: relative;
  margin-top: 50px;
  padding-right: 30px;
  font-size: var(--mini-font-size);
  font-weight: bold;
  cursor: pointer;
  transition: opacity .4s;
}
.plusbtn::before{
  position: absolute;
  top: calc(50% - 8px);
  right: 0px;
  width: 16px;
  height: 16px;
  background: url(../img/top/link_plus_icon.svg) center center / cover;
  content: "";
  transition: transform .4s;
}
@media (any-hover:hover) {
  .plusbtn:hover {
    opacity: .7;
  }
  .plusbtn:hover::before {
    transform: rotate(180deg);
  }
}
p a{
  color: #03B68C;
  font-weight: bold;
  text-decoration: underline;
}
/****************
bg setting
背景は上下に伸ばして、上下のコンテンツを上に重ねる
左のradiusはsvgで設置
****************/
.gradation::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  content: "";
}
.gradation .bg {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 30px);
  height: 100%;
  background: linear-gradient(198deg, #2ec2a7 26.26%, #36d46b 86.2%, #9fec83 121.91%, #ffef5d 174.36%);
  background: linear-gradient(352deg, #2EC2A7 -76.32%, #36D46B 11.06%, #9FEC83 63.12%, #FFEF5D 139.58%);
}
.gradation .bg .radius::before,
.gradation .bg .radius::after {
  position: absolute;
  top: 100px;
  left: 0;
  width: 250px;
  height: 250px;
  background: url(../img/common/bg_radius_white.svg) top left / cover;
  content: "";
  transition: width 1s .6s, height 1s .6s;
}
.gradation .bg .radius::after {
  top: auto;
  bottom: 99px;
  transform: rotate(270deg);
}

/* Intersection Observerでクラスが追加されたらアニメーション */
.gradation .bg {
  right: -100%;
}
.gradation.in-view .bg {
  right: 0;
  transition: right 1s cubic-bezier(.22,1,.36,1);
  will-change: right;

  perspective: 1000;
}
.gradation.in-view .bg .radius::before,
.gradation.in-view .bg .radius::after {
  width: 100px;
  height: 100px;
}
/** bg setting END **/
@media screen and (max-width:1280px) {
  h3.basic {
    gap: 0 calc(30/1280 * 100vw);
  }
  h3.basic span {
    font-size: calc(48/1280 * 100vw);
  }

  .plusbtn{
    margin-top: calc(50/1280 * 100vw);
    padding-right: calc(30/1280 * 100vw);
  }
  .plusbtn::before{
    top: calc(50% - (8/1280 * 100vw));
    width: calc(16/1280 * 100vw);
    height: calc(16/1280 * 100vw);
  }

  .gradation .bg {
    width: calc(100% - (30/1280 * 100vw));
  }
  .gradation .bg .radius::before, .gradation .bg .radius::after {
    top: calc(100/1280 * 100vw);
    width: calc(250/1280 * 100vw);
    height: calc(250/1280 * 100vw);
  }
  .gradation .bg .radius::after {
    top: auto;
    bottom: calc(99/1280 * 100vw);
  }
  .gradation.in-view .bg .radius::before, .gradation.in-view .bg .radius::after {
    width: calc(100/1280 * 100vw);
    height: calc(100/1280 * 100vw);
  }
}
@media screen and (max-width:767px) {
  h3.basic {
    display: block;
    gap: 0;
  }
  h3.basic span {
    margin-bottom: 3vw;
    font-size: 8vw;
  }
  .plusbtn {
    /* min-width: 70vw; */
    left: 50%;
    transform: translate(-50%, 0%);
    margin-top: 8vw;
    padding: 2vw 12vw 2vw 6vw;
    border-radius: 10vw;
    font-size: var(--big-font-size);
    line-height: var(--mini-line-height);
  }
  .plusbtn::before {
    top: calc(50% - 2vw);
    right: 5vw;
    width: 4vw;
    height: 4vw;
  }

  .gradation .bg {
    width: calc(100% - 0vw);
  }
  .gradation .bg .radius::before, .gradation .bg .radius::after {
    top: 12vw;
    width: 25vw;
    height: 25vw;
  }
  .gradation .bg .radius::after {
    top: auto;
    bottom: 11.8vw;
    left: -.5px;
  }
  .gradation.in-view .bg .radius::before, .gradation.in-view .bg .radius::after {
    width: 12vw;
    height: 12vw;
  }
}
/**************** contents common END ********/



/**************** about us ********/
#aboutus {
  position: relative; /** 下のコンテンツとの重なりを上に **/
  z-index: 2;
  margin-top: -100px;
  padding: 80px 0 60px;
  border-radius: 0 100px 100px 0; /** 重なった部分のradius **/
  background: var(--white-color);
}
#aboutus::before {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 4;
  transform: rotate(-90deg);
  width: 100px;
  height: 100px;
  background: url(../img/common/bg_radius_white.svg) top left / cover;
  content: "";
}
#aboutus h3 span {
  background: linear-gradient(110deg, #01c55b 26.83%, #03b393 73.17%);
          background-clip: text;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#aboutus .col_2 {
  align-items: center;
  margin-top: 30px;
}
#aboutus .col_2 .img_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
#aboutus .col_2 .img_box video {
  width: 400px;
}
#aboutus .col_2 .txt_box {
  padding-left: 80px;
  font-size: var(--mini-font-size);
  font-weight: bold;
  line-height: var(--mini-line-height);
}
#aboutus .col_2 .txt_box p span {
  display: block;
}
@media screen and (max-width:1280px) {
  #aboutus {
    margin-top: calc(-110/1280 * 100vw);
    padding: calc(80/1280 * 100vw) 0 calc(60/1280 * 100vw);
    border-radius: 0 calc(100/1280 * 100vw) calc(100/1280 * 100vw) 0;
  }
  #aboutus::before {
    top: calc(-100/1280 * 100vw);
    width: calc(100/1280 * 100vw);
    height: calc(100/1280 * 100vw);
  }
  #aboutus .col_2 {
    margin-top: calc(30/1280 * 100vw);
  }
  #aboutus .col_2 .img_box video {
    width: calc(400/1280 * 100vw);
  }
  #aboutus .col_2 .txt_box {
    padding-left: calc(80/1280 * 100vw);
  }
}
@media screen and (max-width:767px) {
  #aboutus::before {
    top: -12vw;
    width: 12vw;
    height: 12vw;
  }
  #aboutus .section_innner_975 {
    opacity: 0;
    transition: opacity .9s 1.8s;
  }
  #aboutus.start .section_innner_975 {
    opacity: 1;
  }
  #aboutus {
    margin-top: -13vw;
    padding: 13vw 0 15vw;
    border-radius: 0 12vw 12vw 0;
  }
  #aboutus .col_2 {
    flex-wrap: wrap;
    margin-top: 10vw;
  }
  #aboutus .col_2 .img_box, #aboutus .col_2 .txt_box {
    width: 100%;
  }
  #aboutus .col_2 .img_box video {
    width: 90%;
  }
  #aboutus .col_2 .txt_box {
    margin-top: 5vw;
    padding-left: 0;
  }
  #aboutus .col_2 .txt_box p{
    font-size: var(--basic-font-size);
  }
  #aboutus .col_2 .txt_box p span {
    display: inline;
  }
}
/**************** about us END ********/


/**************** worries ********/
#worries {
  position: relative;
  z-index: 1;
  margin-top: -100px; /** 重なり部分調整 **/
  margin-bottom: -100px; /** 重なり部分調整 **/
  padding: 180px 0 200px; /** 重なり部分100pxプラス値 **/
  overflow: hidden;
  text-align: center;
}
#worries.gradation .bg {
  background: linear-gradient(354deg, #2ec2a7 -36.15%, #36d46b 31.32%, #9fec83 71.52%, #ffef5d 130.56%);
}
#worries h3 {
  font-weight: bold;
  font-size: var(--big-font-size-pt2);
}
#worries .worries_list {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#worries .worries_list ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
}
#worries .worries_list ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, .20));
  position: relative;
  width: 365px;
  height: 70px;
  margin-bottom: 7px;
  border-radius: 70px;
  background: #ffffff;
  font-size: var(--mini-font-size);
  font-weight: bold;
  color: #009C5A;
  line-height: 140%;
}
#worries .worries_list ul li:nth-of-type(even){
  margin-top: 22px;
}
#worries .worries_list ul li:before {
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: 20px solid #ffffff;
  border-top: 0;
  content: "";
}
#worries .worries_list ul li:nth-of-type(even):before {
  left: auto;
  right: 0;
}
#worries .worries_list ul li:last-child {
  margin-bottom: 0;
  margin-top: 20px;
  width: 620px;
}
@media screen and (max-width:1280px) {
  #worries {
    margin-top: calc(-100/1280 * 100vw);
    margin-bottom: calc(-100/1280 * 100vw);
    padding: calc(180/1280 * 100vw) 0 calc(200/1280 * 100vw);
  }
  #worries .worries_list {
    margin-top: calc(50/1280 * 100vw);
  }
  #worries .worries_list ul{
    gap: 0 calc(20/1280 * 100vw);
  }
  #worries .worries_list ul li {
    width: calc(365/1280 * 100vw);
    height: calc(70/1280 * 100vw);
    margin-bottom: calc(7/1280 * 100vw);
    border-radius: calc(70/1280 * 100vw);
  }
  #worries .worries_list ul li:nth-of-type(even){
    margin-top: calc(22/1280 * 100vw);
  }
  #worries .worries_list ul li:before {
    border-right: calc(20/1280 * 100vw) solid transparent;
    border-left: calc(20/1280 * 100vw) solid transparent;
    border-bottom: calc(20/1280 * 100vw) solid #ffffff;
  }
  #worries .worries_list ul li:last-child {
    margin-top: calc(20/1280 * 100vw);
    width: calc(620/1280 * 100vw);
  }
}
@media screen and (max-width:767px) {
  #worries {
    margin-top: -12vw;
    margin-bottom: -12vw;
    padding: 24vw 0 26vw;
  }
  #worries h3 {
    font-size: 5vw;
  }
  #worries h3 span:not(.bgwhite) {
    display: block;
  }
  #worries .worries_list {
    display: block;
    position: relative;
    width: 80vw;
    margin: 10vw auto 0;
  }
  #worries .worries_list ul li {
    filter: drop-shadow(0px 0px 3vw rgba(0, 0, 0, .20));
    width: 100%;
    height: 14vw;
    border-radius: 10vw;
    will-change: transform, opacity;
    margin-bottom: 5vw;
  }
  /* #worries .worries_list ul li:before {
    top: calc(50% - 1vw);
    left: -2.0vw;
    border-width: 1.2vw 2.4vw 1.2vw 0;
  } */
  #worries .worries_list ul li:nth-of-type(even){
    margin-top: 0;
  }
  #worries .worries_list ul li:before {
    border-right: 4vw solid transparent;
    border-left: 4vw solid transparent;
    border-bottom: 4vw solid #ffffff;
  }
  #worries .worries_list ul li:last-child {
    margin-top: 0;
    width: 100%;
  }
  /* #worries .worries_list ul:nth-of-type(1) {
    margin-left: -3vw;
  } */
  /* #worries .worries_list ul:nth-of-type(2) {
    position: absolute;
    top: 19vw;
    right: -3vw;
    margin-top: 0vw;
    padding-left: 0;
  }
  #worries .worries_list ul:nth-of-type(2) li:before {
    right: -2.0vw;
    border-width: 1.2vw 0 1.2vw 2.4vw;
  }
  #worries .worries_list ul:nth-of-type(1) li:nth-of-type(1) {
    left: 0;
  }
  #worries .worries_list ul:nth-of-type(1) li:nth-of-type(2), #worries .worries_list ul:nth-of-type(1) li:nth-of-type(4) {
    left: 0;
  }
  #worries .worries_list ul:nth-of-type(2) li:nth-of-type(2) {
    right: 0;
  } */
}
/**************** worries END ********/



/**************** achievement ********/
#achievement {
  position: relative; /** 下のコンテンツとの重なりを上に **/
  z-index: 2;
  padding: 80px 0 80px;
  border-radius: 0 100px 100px 0; /** 重なった部分のradius **/
  background: var(--white-color);
}
#achievement h3 span {
  background: linear-gradient(110deg, #01c55b 26.83%, #03b393 73.17%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 140%;
}
#achievement .col_2{
  margin: 60px 0 80px;
  align-items: center;
}
#achievement .img_box {
  border-radius: 20px;
  width: 540px;
  height: 330px;
  overflow: hidden;
}
#achievement .txt_box {
  font-size: var(--mini-font-size);
  line-height: var(--mini-line-height);
  /* line-height: 260%; */
  width: calc(100% - 540px);
  padding-left: 50px;
}

#achievement .voice_txt {
  font-size: var(--mini-font-size);
  margin-top: 20px;
}
#achievement .voice {
  width: 594px;
  height: 100%;
  padding: 50px 40px 60px;
  border-radius: 20px;
  background: #FBFBFB;
  display: flex;
  align-items: stretch;
  box-shadow: 2px 4px 14px rgba(0, 0, 0, .1);
  position: relative;
}
#achievement .voice::before {
  content:"";
  position: absolute;
  right: -30px;
  bottom: 0;
  width:0;
  height:0;
  border-style:solid;
  border-width: 0 30px 40px 30px;
  border-color: transparent transparent #FBFBFB transparent;
  filter: drop-shadow(2px 4px 14px rgba(0, 0, 0, .1));
}
#achievement .voice::after {
  content:"";
  position: absolute;
  right: 0px;
  bottom: 0;
  width:50px;
  height:60px;
  background: #FBFBFB;
}
#achievement .voice .pic{
  width: 180px;
  height: auto;
}
#achievement .voice .txt{
  width: calc(100% - 180px);
  padding-left: 24px;
  position: relative;
}
#achievement .voice h5 {
  font-weight: bold;
  font-size: var(--base-font-size);
  line-height: 160%;
}
#achievement .voice h5 span{
  background:linear-gradient(transparent 60%, #FFF27F 60%);
}
#achievement .voice h6{
  font-size: var(--mini-font-size);
  line-height: 140%;
  margin-top: 14px;
}
#achievement .voice h6 span {
  display: block;
  color: #9C9C9C;
  margin-bottom: 8px;
}
#achievement .voice p {
  font-size: var(--mini-font-size);
  line-height: var(--mini-line-height);
}
#achievement .voice a.plusbtn{
  position: absolute;
  width: 100%;
  height: 100%;
  margin-top: 0;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
}
#achievement .voice a.plusbtn span{
  position: absolute;
  bottom: 10px;
  right: 30px;
  margin-top: 0;
  padding-right: 30px;
  z-index: 1;
  display: block;
}
#achievement .voice a.plusbtn::before {
  display: none;
}
#achievement .voice a.plusbtn span::before {
  position: absolute;
  top: calc(50% - 8px);
  right: 0px;
  width: 16px;
  height: 16px;
  background: url(../img/top/link_plus_icon.svg) center center / cover;
  content: "";
  transition: transform .4s;
}
@media (any-hover:hover) {
  #achievement .voice a.plusbtn:hover span::before {
    transform: rotate(180deg);
  }
}



#achievement .swiper_box {
  position: relative;
  margin-top: 30px;
  padding-bottom: 40px;
  overflow: hidden;
}
#achievement .swiper_container {
  position: relative;
  left: calc(50% - 504px);
  overflow: hidden;
}
.swiper {
  max-width: 594px;
  margin-right: 0 !important;
  margin-left: 0 !important;
  /*アクティブなスライド以外も見えるように*/
  overflow: visible !important;
}
.swiper-slide{
  height: auto;
  padding: 17px ;
}
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  transform: translate3d(0,0,0);
  text-align: left;
  transition: .3s opacity;
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  top: auto;
  bottom: 0;
  width: 100%;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 7px;
  background: #EEEEEE;
  opacity: 1;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}
.swiper-pagination-bullet-active {
  background: linear-gradient(110deg, #01c55b 26.83%, #03b393 73.17%) !important;
}
@media screen and (max-width:1280px) {
  #achievement {
    padding: calc(80/1280 * 100vw) 0 calc(80/1280 * 100vw);
    border-radius: 0 calc(100/1280 * 100vw) calc(100/1280 * 100vw) 0;
  }
  #achievement h4 {
    margin-top: calc(50/1280 * 100vw);
  }
  #achievement .col_2{
    margin: calc(60/1280 * 100vw) 0 calc(80/1280 * 100vw);
  }
  #achievement .img_box {
    border-radius: calc(20/1280 * 100vw);
    width: calc(540/1280 * 100vw);
    height: calc(330/1280 * 100vw);
  }
  #achievement .txt_box {
    width: calc(100% - (540/1280 * 100vw));
    padding-left: calc(50/1280 * 100vw);
  }
  #achievement .voice_txt {
    margin-top: calc(20/1280 * 100vw);
  }
  #achievement .voice {
    width: calc(594/1280 * 100vw);
    padding: calc(50/1280 * 100vw) calc(40/1280 * 100vw) calc(60/1280 * 100vw);
    border-radius: calc(20/1280 * 100vw);
    box-shadow: calc(2/1280 * 100vw) calc(4/1280 * 100vw) calc(14/1280 * 100vw) rgba(0, 0, 0, .1);
  }
  #achievement .voice::before {
    right: calc(-30/1280 * 100vw);
    border-width: 0 calc(30/1280 * 100vw) calc(40/1280 * 100vw) calc(30/1280 * 100vw);
    filter: drop-shadow(calc(2/1280 * 100vw) calc(4/1280 * 100vw) calc(14/1280 * 100vw) rgba(0, 0, 0, .1));
  }
  #achievement .voice::after {
    width:calc(50/1280 * 100vw);
    height:calc(60/1280 * 100vw);
  }
  #achievement .voice .pic{
    width: calc(180/1280 * 100vw);
  }
  #achievement .voice .txt{
    width: calc(100% - (180/1280 * 100vw));
    padding-left: calc(24/1280 * 100vw);
  }
  #achievement .voice a.plusbtn span::before{
    top: calc(50% - (8/1280 * 100vw));
    width: calc(16/1280 * 100vw);
    height: calc(16/1280 * 100vw);
  }

  #achievement .swiper_box {
    margin-top: calc(30/1280 * 100vw);
    padding-bottom: calc(40/1280 * 100vw);
  }
  #achievement .swiper_container {
    left: calc(50% - (504/1280 * 100vw));
  }
  .swiper {
    max-width: calc(594/1280 * 100vw);
  }
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 calc(7/1280 * 100vw);
  }
  .swiper-pagination-bullet {
    width: calc(8/1280 * 100vw);
    height: calc(8/1280 * 100vw);
  }
}
@media screen and (max-width:767px) {
  #achievement {
    padding: 13vw 0 15vw;
    border-radius: 0 12vw 12vw 0;
    overflow: hidden;
  }
  #achievement .col_2 {
    display: block;
    margin: 10vw 0 12vw;
  }
  #achievement .col_2 > div.img_box, #achievement .col_2 > div.txt_box {
    width: 100%;
  }
  #achievement .col_2 .img_box {
    margin-bottom: 8vw;
    height: 55vw;
  }
  #achievement .col_2 .img_box img {
    display: block;
    filter: drop-shadow(0px 0px 3vw rgba(0, 0, 0, .1));
    width: 100%;
    margin: 0 auto;
  }
  #achievement .col_2 .txt_box {
    padding-left: 0;
  }
  #achievement h4 {
    margin-top: 15vw;
  }

  #achievement .voice {
    width: 100%;
    box-shadow: 2px 4px 14px rgba(0, 0, 0, .1);
    padding: 5vw 5vw 14vw;
  }
  #achievement .voice_txt {
    margin-top: 10vw;
  }
  #achievement .voice .pic {
    width: 30%;
  }
  #achievement .voice .txt {
    width: calc(100% - 30%);
    padding-left: 3vw;
  }
  #achievement .voice h6{
  }
  #achievement .voice h6 span {
    margin-bottom: 5px;
  }
  #achievement .voice a.plusbtn{
    transform: none;
  }
  #achievement .voice a.plusbtn span{
    font-size: var(--mini-font-size);
  }
  #achievement .voice a.plusbtn span::before {
    top: calc(50% - 2vw);
    right: 0vw;
    width: 4vw;
    height: 4vw;
  }

  #achievement .swiper_box {
    margin-top: 5vw;
    padding-bottom: 7vw;
    overflow: visible;
  }
  #achievement .swiper_container {
    left: 5vw;
  }
  #achievement .swiper {
    max-width: 90vw;
  }
  #achievement .swiper_box, .swiper_container, #achievement .swiper_container{
    overflow: visible;
  }
  #achievement .swiper-wrapper{
    flex-flow: column;
    gap: 8vw;
  }
  #achievement .swiper-slide {
    padding: 0;
  }
  #achievement .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 1vw;
  }
  #achievement .swiper-pagination-bullet {
    width: 2vw;
    height: 2vw;
  }
}
/**************** achievement END ********/



/**************** cost ********/
#cost {
  position: relative;
  z-index: 1;
  margin-top: -100px; /** 重なり部分調整 **/
  margin-bottom: -100px; /** 重なり部分調整 **/
  padding: 180px 0 200px; /** 重なり部分100pxプラス値 **/
  overflow: hidden;
}
#cost h3{
  text-align: center;
  font-size: var(--big-font-size-pt2);
  font-weight: bold;
  margin-bottom: 50px;
}
#cost .col_2 {
  align-items: center;
}
#cost .col_2 > div.box_txt {
  padding-left: 60px;
}
#cost .col_2 > div.box_txt p {
  font-size: var(--mini-font-size);
  line-height: var(--mini-line-height);
  line-height: 180%;
}
#cost .col_2 > div.box_list {
  padding: 30px 40px;
  border-radius: 20px;
  background: var(--white-color);
  color: var(--black-color);
  font-size: var(--basic-font-size);
}
#cost .col_2 > div.box_list ul li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #e2e2e2;
}
#cost .col_2 > div.box_list ul li span{
  color: #02BF72;
  font-weight: bold;
}
#cost .col_2 > div.box_list ul li:last-child {
  border-bottom: none;
}
@media screen and (max-width:1280px) {
  #cost {
    margin-top: calc(-100/1280 * 100vw);
    margin-bottom: calc(-100/1280 * 100vw);
    padding: calc(180/1280 * 100vw) 0 calc(200/1280 * 100vw);
  }
  #cost h3{
    margin-bottom: calc(50/1280 * 100vw);
  }
  #cost .col_2 > div.box_txt {
    padding-left: calc(60/1280 * 100vw);
  }
  #cost .col_2 > div.box_list {
    padding: calc(30/1280 * 100vw) calc(40/1280 * 100vw);
    border-radius: calc(20/1280 * 100vw);
  }
  #cost .col_2 > div.box_list ul li {
    padding: calc(16/1280 * 100vw) 0;
  }
}
@media screen and (max-width:767px) {
  #cost {
    margin-top: -12vw;
    margin-bottom: -12vw;
    padding: 24vw 0 26vw;
  }
  #cost h3{
    margin-bottom: 5vw;
  }
  #cost .col_2 {
    flex-wrap: wrap;
  }
  #cost .col_2 > div {
    width: 100%;
  }
  #cost .col_2 > div.box_txt {
    padding-left: 0;
  }
  #cost .col_2 > div.box_txt p {
    margin-top: 5vw;
  }
  #cost .col_2 > div.box_list {
    padding: 3vw 4vw;
    border-radius: 3vw;
  }
  #cost .col_2 > div.box_list ul li {
    padding: 2vw 0;
    flex-flow: column;
    text-align: center;
  }
  #cost .col_2 > div.box_list ul li span{
    font-size: var(--big-font-size-pt2);
  }
}
/**************** cost END ********/



/**************** contact ********/
#contact {
  position: relative; /** 上のコンテンツとの重なりを上に **/
  z-index: 1;
  padding: 80px 0 100px;
  border-radius: 0 100px 100px 0; /** 重なった部分のradius **/
  background: var(--white-color);
  text-align: center;
}
#contact::after {
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: 4;
  width: 100px;
  height: 100px;
  background: url(../img/common/bg_radius_white.svg) top left / cover;
  content: "";
}
#contact h3 {
  font-weight: bold;
  font-size: var(--big-font-size-pt2);
}
#contact .col_2 {
  margin-top: 75px;
  gap: 80px;
  justify-content: center;
}
#contact .col_2 > div{
  width: auto;
}
#contact .col_2 > div.box_img span {
  display: block;
  width: 490px;
  height: 317px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  transition: border-radius .5s ease .9s;
}
#contact .col_2.in-view > div.box_img span {
  border-radius: 30px;
}
#contact .col_2 > div.box_img span:before,
#contact .col_2 > div.box_img span:after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 1.1s ease .2s;
}
#contact .col_2 > div.box_img span:after{
  left: -140%;
  width: 140%;
  background: linear-gradient(352deg, #2EC2A7 -76.32%, #36D46B 11.06%, #9FEC83 63.12%, #FFEF5D 139.58%);
  z-index: 1;
  transition: left 1s ease;
}
#contact .col_2.in-view > div.box_img span:before,
#contact .col_2.in-view > div.box_img span:after{
  left: 100%;
}

#contact .col_2 > div.box_txt{
  text-align: left;
}
#contact .col_2 > div.box_txt p {
  font-size: var(--mini-font-size);
  line-height: var(--mini-line-height);
}
#contact .col_2 > div.box_txt .btn_box{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
#contact .col_2 > div.box_txt a,
#contact-mail .modalContents a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 260px;
  height: 60px;
  overflow: hidden;
  border-radius: 60px;
  color: var(--white-color);
  font-weight: bold;
  transition: color .6s;
  cursor: pointer;
}
#contact .col_2 > div.box_txt a::after,
#contact-mail .modalContents a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: linear-gradient(50deg, #01c55b 27.45%, #02b981 93.46%);
  content: "";
  cursor: pointer;
}
#contact .col_2 > div.box_txt a::before,
#contact-mail .modalContents a::before {
  position: absolute;
  top: -15px;
  left: calc(50% - 15px);
  z-index: -1;
  transform: scale(0);
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .7);
  content: "";
  transition: transform .5s;
}
#contact .col_2 > div.box_txt a span{
  position: relative;
  padding-left: 35px;
}
#contact .col_2 > div.box_txt a span::before{
  content: "";
  position: absolute;
  top: calc(50% - 13px);
  left: 0;
  width: 27px;
  height: 27px;
}
#contact .col_2 > div.box_txt a.mail span::before{
  background: url(../img/top/icon_mail.svg) no-repeat center center / cover;
}
#contact .col_2 > div.box_txt a.tel span::before{
  background: url(../img/top/icon_tel.svg) no-repeat center center / cover;
}
@media (any-hover:hover) {
  #contact .col_2 > div.box_txt a.mail:hover span::before{
    background: url(../img/top/icon_mail_green.svg) no-repeat center center / cover;
  }
  #contact .col_2 > div.box_txt a.tel:hover span::before{
    background: url(../img/top/icon_tel_green.svg) no-repeat center center / cover;
  }
  #contact .col_2 > div.box_txt a:hover,
  #contact-mail .modalContents a:hover {
    color: #04ae85;
  }
  #contact .col_2 > div.box_txt a:hover::before,
  #contact-mail .modalContents a:hover::before {
    transform: scale(10);
  }
}
@media screen and (max-width:1280px) {
  #contact {
    padding: calc(120/1280 * 100vw) 0 calc(130/1280 * 100vw);
    border-radius: 0 calc(100/1280 * 100vw) calc(100/1280 * 100vw) 0;
  }
  #contact::after {
    bottom: calc(-100/1280 * 100vw);
    width: calc(100/1280 * 100vw);
    height: calc(100/1280 * 100vw);
  }
  #contact .col_2 {
    margin-top: calc(75/1280 * 100vw);
    gap: calc(80/1280 * 100vw);
  }
  #contact .col_2 > div.box_img span {
    width: calc(490/1280 * 100vw);
    height: calc(317/1280 * 100vw);
    border-radius: calc(30/1280 * 100vw);
  }
  #contact .col_2 > div.box_txt .btn_box{
    gap: calc(10/1280 * 100vw);
    margin-top: calc(30/1280 * 100vw);
  }
  #contact .col_2 > div.box_txt a,
  #contact-mail .modalContents a {
    width: calc(260/1280 * 100vw);
    height: calc(60/1280 * 100vw);
    border-radius: calc(60/1280 * 100vw);
  }
  #contact .col_2 > div.box_txt a::before,
  #contact-mail .modalContents a::before {
    top: calc(-15/1280 * 100vw);
    left: calc(50% - (15/1280 * 100vw));
    width: calc(30/1280 * 100vw);
    height: calc(30/1280 * 100vw);
    border-radius: calc(30/1280 * 100vw);
  }
  #contact .col_2 > div.box_txt a span{
    padding-left: calc(35/1280 * 100vw);
  }
  #contact .col_2 > div.box_txt a span::before{
    top: calc(50% - (13/1280 * 100vw));
    width: calc(27/1280 * 100vw);
    height: calc(27/1280 * 100vw);
  }
}
@media screen and (max-width:767px) {
  #contact {
    padding: 15vw 0 17vw;
    border-radius: 0 12vw 12vw 0;
  }
  #contact::after {
    bottom: -11.98vw;
    width: 12vw;
    height: 12vw;
  }
  #contact .col_2 {
    flex-wrap: wrap;
    margin-top: 12vw;
    gap: 0;
  }
  #contact .col_2 > div.box_img, #contact .col_2 > div.box_txt {
    width: 100%;
  }
  #contact .col_2 > div.box_img span {
    width: 100%;
    height: 55vw;
  }
  #contact .col_2 > div.box_txt h4 {
    width: 40vw;
    margin: 5vw auto 5vw;
  }
  #contact .col_2 > div.box_txt .btn_box{
    margin-top: 10vw;
    gap: 2vw;
  }
  #contact .col_2 > div.box_txt a,
  #contact-mail .modalContents a {
    width: 70vw;
    height: 15vw;
    margin: 0 auto 0;
    border-radius: 10vw;
    font-size: 4.2vw;
  }
  #contact .col_2 > div.box_txt a span{
    padding-left: 3vw;
  }
  #contact .col_2 > div.box_txt a span::before{
    top: calc(50% - 3vw);
    left: -5vw;
    width: 6vw;
    height: 6vw;
  }
}
/**************** contact END ********/



/*********** modal *******/
/* モーダルCSS */
body.fixed{
  overflow: hidden;
  overflow-y: scroll;
  position: fixed;
  width: 100%;
}
body.fixed::before {
  content: '';
  position: fixed;
  width: 100vw;
  height: 301vh;
  overflow-y: scroll;
  visibility: hidden;
}
.modalArea {
  visibility: hidden;
  opacity: 0;
  /* display: none; */
  position: fixed;
  /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  z-index: -999999999;
  width: 100%;
  height: 100%;
  transition: opacity .2s linear, visibility .2s linear, z-index .1s linear;
}
.modalArea.fadeIn {
  /* display: block; */
  visibility: visible;
  opacity: 1;
  z-index: 999999999;
}
.modalArea.fadeOut {
  /* display: none; */
  visibility: hidden;
  opacity: 0;
}
.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0, .5);
  cursor: pointer;
}
.modalouter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 975px;
  max-width: 975px;
  height: 80%;
}
.modalWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: auto;
  /*padding: 10px 30px;*/
  background-color: #ffffff;
  cursor: default;
  border-radius: 30px;
}
.closeModal {
  display: block;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 100px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  line-height: 100%;
  text-align: right;
  padding-right: 24px;
  z-index: 10;
}
.closeModal::before {
  position: absolute;
  top: 0;
  right: 0px;
  width: 16px;
  height: 16px;
  background: url(../img/top/link_plus_icon.svg) center center / cover;
  content: "";
  transform: rotate(-45deg);
}
/* .closeModal:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 50px;
  height: 2px;
  background: #ffffff;
  content: "";
}
.closeModal:after {
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 50px;
  background: #ffffff;
  content: "";
} */

@media screen and (max-width: 1200px) {
  .modalouter {
    width: calc(900/1200 * 100vw);
    max-width: calc(900/1200 * 100vw);
    height: 80%;
  }
  .modalContents img {
    max-width: 100%;
  }
}
@media (max-width:767px) {
  .modalouter {
    width: 94vw;
    max-width: 94vw;
    height: 90%;
  }
}
.modalContents {
  max-width: 975px;
}
.modalContents{
  display: flex;
  align-items: flex-end;
  padding: 50px 70px;
}
.modalContents .txt_box h4{
  color: #03B68C;
  font-size: var(--mini-font-size);
  font-weight: bold;
  margin-bottom: 20px;
}
/** 代表メッセージ **/
#modal01 .modalWrapper{
}
#modal01 .modalContents{
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
#modal01 .modalContents .txt_box h5 {
  font-size: 36px;
  margin-bottom: 20px;
}
#modal01 .modalContents .txt_box h5 span.en{
  color: #9C9C9C;
  font-size: var(--mini-font-size);
  margin-left: 15px;
}
#modal01 .modalContents .txt_box h5 span.post{
  font-size: var(--mini-font-size);
  font-weight: bold;
  display: block;
}
#modal01 .modalContents .txt_box p{
  font-size: var(--mini-font-size);
  line-height: var(--mini-line-height);
}
#modal01 .modalContents .txt_box{
  width: calc(100% - 378px);
  width: 100%;
  padding-right: 378px;
}
#modal01 .modalContents .img_box{
  width: 378px;
  position: fixed;
  right: 80px;
  bottom: 30px;
  z-index: -1;
}

/** お客様の声 **/
.voiceconts .modalContents .txt_box{
  font-size: var(--mini-font-size);
}
.voiceconts .modalContents .txt_box .col_2{
  margin-bottom: 40px;
  align-items: flex-start;
}
.voiceconts .modalContents .txt_box .col_2 .img_box{
  min-width: 240px;
}
.voiceconts .modalContents .txt_box .col_2 .txt_box{
  width: auto;
  line-height: var(--mini-line-height);
  padding-left: 40px;
}
.voiceconts .modalContents .txt_box .col_2 .txt_box h5 span{
  display: block;
  color: #9C9C9C;
}
.voiceconts .modalContents .txt_box .col_2 .txt_box h5 a{
  display: block;
  color: #03B68C;
  font-weight: bold;
  text-decoration: underline;
  line-height: 100%;
  margin-bottom: 10px;
  font-size: 90%;
  font-weight: normal;
}
.voiceconts .modalContents .txt_box .col_2 .txt_box p{
  font-size: var(--base-font-size);
  margin-top: 40px;
  line-height: 180%;
}
.voiceconts .modalContents .txt_box .col_2 .txt_box p span{
  background: linear-gradient(transparent 60%, #FFF27F 60%);
}
.voiceconts .modalContents .txt_box dl dt{
  color: #03B68C;
  font-weight: bold;
}
.voiceconts .modalContents .txt_box dl dd{
  line-height: var(--mini-line-height);
  margin-bottom: 40px;
}

#contact-mail .modalContents{
  font-size: var(--mini-font-size);
  line-height: var(--mini-line-height);
  text-align: center;
  display: block;
}
#contact-mail .modalContents h4{
  font-size: var(--big-font-size-pt2);
  color: var(--black-color);
  margin-bottom: 25px;
}
#contact-mail .modalContents .list-content{
  text-align: left;
  margin-top: 25px;
  border: 1px solid #B8B8B8;
  padding: 20px 30px 20px 50px;
}
#contact-mail .modalContents .list-content ul li{
  list-style-type:disc;
}
#contact-mail .modalContents a {
  z-index: 1;
  margin: 25px auto 0;
}
@media (max-width:1200px) {
  .modalContents{
    padding: calc(50/1200 * 100vw) calc(70/1200 * 100vw);
  }
  .modalContents .txt_box h4{
    margin-bottom: calc(20/1200 * 100vw);
  }
  #modal01 .modalContents .txt_box h5 {
    font-size: calc(36/1200 * 100vw);
    margin-bottom: calc(20/1200 * 100vw);
  }
  #modal01 .modalContents .txt_box h5 span.en{
    margin-left: calc(15/1200 * 100vw);
  }
  #modal01 .modalContents .txt_box{
    /* width: calc(100% - (378/1200 * 100vw)); */
    padding-right: calc(358/1200 * 100vw);
  }
  #modal01 .modalContents .img_box{
    width: calc(358/1200 * 100vw);
    right: calc(80/1200 * 100vw);
    bottom: calc(30/1200 * 100vw);
  }


  .voiceconts .modalContents .txt_box .col_2{
    margin-bottom: calc(40/1200 * 100vw);
  }
  .voiceconts .modalContents .txt_box .col_2 .img_box{
    min-width: calc(240/1200 * 100vw);
  }
  .voiceconts .modalContents .txt_box .col_2 .txt_box{
    padding-left: calc(40/1200 * 100vw);
  }
  .voiceconts .modalContents .txt_box .col_2 .txt_box p{
    margin-top: calc(40/1200 * 100vw);
  }
  .voiceconts .modalContents .txt_box dl dd{
    margin-bottom: calc(40/1200 * 100vw);
  }

  #contact-mail .modalContents h4{
    margin-bottom: calc(25/1200 * 100vw);
  }
  #contact-mail .modalContents .list-content{
    margin-top: calc(25/1200 * 100vw);
    padding: calc(20/1200 * 100vw) calc(30/1200 * 100vw) calc(20/1200 * 100vw) calc(50/1200 * 100vw);
  }
  #contact-mail .modalContents a {
    margin: calc(25/1200 * 100vw) auto 0;
  }
}
@media screen and (max-width: 767px) {
  .modalContents h4{
    margin-top: 3vw;
    font-size: var(--base-font-size);
  }
  #modal01 .modalContents .txt_box {
    width: 100%;
    position: relative;
    padding-right: 0;
  }
  .modalContents .txt_box h4 {
    margin-bottom: 10vw;
  }
  #modal01 .modalContents .txt_box h5 {
    font-size: 7vw;
    font-weight: bold;
    margin-bottom: 28vw;
  }
  #modal01 .modalContents .txt_box h5 span.post{
    margin-bottom: 6vw;
    line-height: 160%;
  }
  #modal01 .modalContents .txt_box h5 span.en{
    display: block;
  }
  #modal01 .modalContents .txt_box .modal01_img{
    position: absolute;
    right: 0;
    top: 16vw;
    width: 50%;
  }

  .voiceconts .modalContents h4{
    margin-bottom: 5vw;
  }
  .voiceconts .modalContents .txt_box .col_2{
    margin-bottom: 0;
    flex-direction: column;
  }
  .voiceconts .modalContents .txt_box .col_2 .img_box{
    min-width: 100%;
  }
  .voiceconts .modalContents .txt_box .col_2 .txt_box{
    padding-left: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .voiceconts .modalContents .txt_box .col_2 .txt_box h5{
    text-align: right;
    margin-bottom: 3vw;
  }
  .voiceconts .modalContents .txt_box .col_2 .txt_box p{
    margin: 3vw 0;
  }
  .voiceconts .modalContents .txt_box dl dd{
    margin-bottom: 5vw;
  }

  #contact-mail .modalContents h4{
    margin-bottom: 4vw;
    margin-top: 13vw;
  }
  #contact-mail .modalContents .txt_box p{
    text-align: left;
  }
  #contact-mail .modalContents .list-content{
    margin-top: 4vw;
    margin-bottom: 4vw;
    padding: 4vw 6vw 4vw 10vw;
  }
  #contact-mail .modalContents a {
    margin: 4vw auto 6vw;
    font-size: var(--base-font-size);
  }
}
/*********** modal END *******/

