@charset "UTF-8";
/*---------------------
 common
---------------------*/
html {
  font-family: "Noto Sans JP", sans-serif;
  --color--black: #000;
  --color--white: #FFF;
  --color--main: #ff6600;
  --color--sub: #d80011;
  --color--sub2: #ffe7af;
  --color--bg: #e9f7f6;
  --color--lgray: #f4f4f4;
  --color--gray: #CCC;
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

main {
  overflow-x: hidden;
}

section {
  position: relative;
}

.section_inner {
  max-width: 1220px;
  padding: 0 15px;
  margin: 0 auto;
}

a {
  color: var(--color--black);
  text-decoration: none;
}

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

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

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1220px) {
  .mw250 {
    max-width: 360px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .hide-sp {
    display: none;
  }
  .mw250 {
    max-width: 250px;
    margin: 0 auto;
  }
  figure {
    margin: 0 10px;
  }
}
@media (min-width: 768px) {
  .show-sp {
    display: none;
  }
}
/*---------------------
 svg
---------------------*/
.svg-sprite {
  position: relative;
  z-index: -1;
  width: 0;
  height: 0;
  display: none;
}

/*---------------------
 タブ
---------------------*/
.tab-list {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0;
}
.tab-list .tab-list-item {
  text-align: center;
  width: 32%;
  background-color: #eee;
  padding: 20px 10px;
  font-weight: 700;
  border-radius: 12px 12px 0 0;
  font-size: 1.1em;
}

.tab-list-item.active {
  background-color: #facd20;
}

.tab-contents-item {
  display: none;
}

.tab-contents-item.show {
  display: block;
}

@media (max-width: 767px) {
  .tab-list {
    margin: 20px auto 0;
  }
  .tab-list .tab-list-item {
    width: 33%;
    padding: 10px 5px;
    font-size: 0.9em;
  }
}
/*---------------------
 header
---------------------*/
#gHeader {
  position: relative;
  transition: all linear 0.3s;
}
#gHeader.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: var(--color--white);
  animation: navIn 1s 0.5s forwards;
  transform: translate(0, -150px);
}
#gHeader .section_inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#gHeader .section_inner h1 {
  line-height: 1;
  margin: 20px 0;
}
#gHeader .section_inner .menus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#gHeader .section_inner .menus ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  margin: 10px 10px 0 0;
  padding: 0;
}
#gHeader .section_inner .menus ul li {
  border-right: 1px solid var(--color--black);
}
#gHeader .section_inner .menus ul li a {
  padding: 5px 20px;
  display: block;
  font-weight: 700;
  font-size: 1.2em;
}
#gHeader .section_inner .button {
  box-shadow: none;
  background: linear-gradient(to right, #ff6666, #9a0000);
  color: var(--color--white);
  text-align: center;
  padding: 10px 60px;
  margin: 10px 0;
  font-size: clamp(1.1em, 1.6vw, 1.6em);
}
#gHeader .section_inner .button:hover {
  transform: none;
}
#gHeader .section_inner .toggler {
  display: none;
  z-index: 2;
}

@media (max-width: 1200px) {
  #gHeader .section_inner .menus {
    display: none;
  }
  #gHeader .section_inner .toggler {
    display: block;
    margin-top: 0;
    width: 60px;
  }
  #gHeader .section_inner .toggler span {
    display: block;
    background: var(--color--main);
    width: 100%;
    height: 3px;
    margin: 8px 0;
    transition: transform linear 0.2s;
  }
  #gHeader .section_inner .toggler span:nth-of-type(2) {
    width: 80%;
  }
  #gHeader .section_inner .toggler span:nth-of-type(3) {
    width: 60%;
  }
  #gHeader .section_inner .toggler:hover span:nth-of-type(1), #gHeader .section_inner .toggler.is-active span:nth-of-type(1) {
    transform: translateY(12px) rotate(45deg);
    width: 90%;
  }
  #gHeader .section_inner .toggler:hover span:nth-of-type(2), #gHeader .section_inner .toggler.is-active span:nth-of-type(2) {
    display: none;
  }
  #gHeader .section_inner .toggler:hover span:nth-of-type(3), #gHeader .section_inner .toggler.is-active span:nth-of-type(3) {
    display: none;
  }
  #gHeader .section_inner .toggler:hover span:nth-of-type(4), #gHeader .section_inner .toggler.is-active span:nth-of-type(4) {
    transform: rotate(-45deg);
    width: 90%;
  }
}
@keyframes navIn {
  0% {
    transform: translate(0, -150px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*---------------------
 button
---------------------*/
a.button {
  background: var(--color--sub2);
  color: var(--color--balck);
  text-align: center;
  padding: 10px 20px;
  display: block;
  border-radius: 30px;
  font-size: clamp(1.3em, 2.4vw, 2.4em);
  font-weight: 700;
  box-shadow: 5px 14px 0 var(--color--main);
  transition: all linear 0.2s;
}
a.button:hover {
  transform: translateY(14px);
  box-shadow: none;
}

/*---------------------
 H
---------------------*/
h1,
h2 {
  font-family: "Noto Sans JP", serif;
}

h1 {
  font-size: clamp(1.8em, 3vw, 3em);
}

h2 {
  font-size: clamp(2em, 5vw, 5em);
  line-height: 1;
  margin-top: 0.4em;
}

h3 {
  font-size: clamp(1.6em, 3vw, 3em);
  line-height: 1;
}

.lead {
  font-size: clamp(1em, 1.3vw, 1.3em);
}

/*---------------------------
 * flex-wrapper
 * -------------------------*/
.flex-wrapper.half,
.flex-wrapper.one-third,
.flex-wrapper.quarter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-wrapper.reverse {
  flex-direction: row-reverse;
}

.flex-wrapper.four:after {
  display: block;
  content: "";
  width: 24%;
}

.flex-wrapper .flex-one {
  width: 100%;
}

.flex-wrapper.half .flex-one {
  width: 48%;
}

.flex-wrapper.one-third .flex-one {
  width: 32%;
}

.flex-wrapper.quarter .flex-one {
  width: 48%;
}

.flex-wrapper.quarter .flex-three {
  width: 48%;
}

@media (min-width: 768px) {
  .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .flex-wrapper.two .flex-one {
    width: 48%;
  }
  .flex-wrapper.three .flex-one {
    width: 31%;
  }
  .flex-wrapper.three .flex-two {
    width: 64%;
  }
  .flex-wrapper.four .flex-two {
    width: 48%;
  }
  .flex-wrapper.four .flex-one {
    width: 23%;
  }
  .flex-wrapper.four .flex-three {
    width: 72%;
  }
  .flex-wrapper.five .flex-one {
    width: 18%;
  }
  .flex-wrapper.six .flex-one {
    width: 15%;
  }
  .flex-wrapper.quarter .flex-one {
    width: 24%;
  }
  .flex-wrapper.quarter .flex-three {
    width: 72%;
  }
}
/*---------------------
 animate-title
---------------------*/
.animate-title,
.tween-animate-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  opacity: 0;
  font-size: 2em;
}
.animate-title.inview,
.tween-animate-title.inview {
  opacity: 1;
}
.animate-title.inview .char,
.tween-animate-title.inview .char {
  display: inline-block;
}
.animate-title .char,
.tween-animate-title .char {
  opacity: 0;
}

.animate-title.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-title.inview .char:nth-child(1) {
  animation-delay: 0.04s;
}
.animate-title.inview .char:nth-child(2) {
  animation-delay: 0.08s;
}
.animate-title.inview .char:nth-child(3) {
  animation-delay: 0.12s;
}
.animate-title.inview .char:nth-child(4) {
  animation-delay: 0.16s;
}
.animate-title.inview .char:nth-child(5) {
  animation-delay: 0.2s;
}
.animate-title.inview .char:nth-child(6) {
  animation-delay: 0.24s;
}
.animate-title.inview .char:nth-child(7) {
  animation-delay: 0.28s;
}
.animate-title.inview .char:nth-child(8) {
  animation-delay: 0.32s;
}
.animate-title.inview .char:nth-child(9) {
  animation-delay: 0.36s;
}
.animate-title.inview .char:nth-child(10) {
  animation-delay: 0.4s;
}
.animate-title.inview .char:nth-child(11) {
  animation-delay: 0.44s;
}
.animate-title.inview .char:nth-child(12) {
  animation-delay: 0.48s;
}
.animate-title.inview .char:nth-child(13) {
  animation-delay: 0.52s;
}
.animate-title.inview .char:nth-child(14) {
  animation-delay: 0.56s;
}
.animate-title.inview .char:nth-child(15) {
  animation-delay: 0.6s;
}
.animate-title.inview .char:nth-child(16) {
  animation-delay: 0.64s;
}
.animate-title.inview .char:nth-child(17) {
  animation-delay: 0.68s;
}
.animate-title.inview .char:nth-child(18) {
  animation-delay: 0.72s;
}
.animate-title.inview .char:nth-child(19) {
  animation-delay: 0.76s;
}
.animate-title.inview .char:nth-child(20) {
  animation-delay: 0.8s;
}
.animate-title.inview .char:nth-child(21) {
  animation-delay: 0.84s;
}
.animate-title.inview .char:nth-child(22) {
  animation-delay: 0.88s;
}
.animate-title.inview .char:nth-child(23) {
  animation-delay: 0.92s;
}
.animate-title.inview .char:nth-child(24) {
  animation-delay: 0.96s;
}
.animate-title.inview .char:nth-child(25) {
  animation-delay: 1s;
}
.animate-title.inview .char:nth-child(26) {
  animation-delay: 1.04s;
}
.animate-title.inview .char:nth-child(27) {
  animation-delay: 1.08s;
}
.animate-title.inview .char:nth-child(28) {
  animation-delay: 1.12s;
}
.animate-title.inview .char:nth-child(29) {
  animation-delay: 1.16s;
}
.animate-title.inview .char:nth-child(30) {
  animation-delay: 1.2s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---------------------
 #hero
---------------------*/
#hero {
  background: url(../img/newfunc/newfunc_mv_bg.png) no-repeat bottom center;
  background-size: cover;
  padding: 1em 15px 5vw;
}
#hero .hero_inner {
  max-width: 1220px;
  margin: 0 auto;
}
#hero .hero_inner figure {
  margin: 0;
}
#hero .hero_inner figure.fig02 {
  margin-top: -80px;
}
#hero .hero_inner .lead {
  font-weight: 600;
}
#hero .hero_inner .scroll {
  text-align: right;
}
#hero .hero_inner .date_wrapper {
  text-align: right;
}

@media (max-width: 767px) {
  #hero .hero_inner figure {
    margin: 0;
  }
  #hero .hero_inner figure.fig02 {
    margin-top: -40px;
  }
  #hero .hero_inner figure.fig03 img {
    width: 320px;
  }
}
/*---------------------
 main
---------------------*/
.title_wrapper {
  text-align: center;
}
.title_wrapper .title_en {
  color: var(--color--main);
  font-weight: 600;
  font-size: clamp(1.3em, 2.7vw, 2.7em);
}
.title_wrapper .title_en span {
  display: inline-block;
  border-bottom: 5px solid var(--color--main);
}

.date {
  display: inline-block;
  background: var(--color--sub);
  color: var(--color--white);
  font-weight: 600;
  font-size: clamp(1.2em, 2.2vw, 2.2em);
  padding: 10px 80px;
  margin: 0;
  border-radius: 40px;
}

@media (max-width: 767px) {
  .date {
    font-size: clamp(1em, 2.2vw, 2.2em);
    padding: 10px 20px;
    text-align: center;
  }
}
/*---------------------
 #newfunc01
---------------------*/
section#newfunc01 {
  background: url(../img/newfunc/newfunc01_bg.png) top center;
  padding: 5vw 0;
}
section#newfunc01 .section_inner .title_wrapper {
  text-align: center;
}
section#newfunc01 .section_inner .title_wrapper .icon {
  position: relative;
  z-index: 2;
}
section#newfunc01 .section_inner .title_wrapper h2 {
  margin-top: -10px;
  display: inline-block;
  font-size: clamp(1.3em, 2.2vw, 2.2em);
  background: var(--color--white);
  padding: 30px 150px;
  border-radius: 60px;
}
section#newfunc01 .section_inner .title_wrapper h2 strong {
  font-size: 1.3em;
  color: var(--color--main);
}
section#newfunc01 .section_inner .title_wrapper h3 {
  font-size: clamp(1.7em, 3.6vw, 3.6em);
  line-height: 1;
  margin: 0 0 30px 0;
}
section#newfunc01 .section_inner .title_wrapper h4 {
  position: relative;
  font-size: clamp(1.3em, 2.2vw, 2.2em);
  font-weight: 600;
  line-height: 1;
  margin: 20px 0;
  color: var(--color--main);
}
section#newfunc01 .section_inner .title_wrapper h4:after {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  background: var(--color--main);
  width: 70px;
  height: 6px;
}
section#newfunc01 .section_inner .lead {
  margin: 6vw auto 4vw;
  text-align: center;
  font-weight: 400;
  font-size: clamp(1.1em, 2.2vw, 2.2em);
}
section#newfunc01 .section_inner .lead span {
  font-weight: 600;
  font-size: 1.3em;
}
section#newfunc01 .section_inner .lead strong {
  font-size: 1.6em;
}
section#newfunc01 .section_inner .flex-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
section#newfunc01 .section_inner .flex-wrapper .frame {
  margin-left: -100px;
  margin-top: 100px;
  background: var(--color--white);
  border-radius: 30px;
  padding: 2.5em;
}
section#newfunc01 .section_inner .flex-wrapper .frame figure {
  text-align: center;
  margin-top: -120px;
}
section#newfunc01 .section_inner .flex-wrapper .frame h3 {
  line-height: 1;
  margin: 0 0 20px 0;
  text-align: center;
  font-size: clamp(1.2em, 1.9vw, 1.9em);
  font-weight: 600;
}
section#newfunc01 .section_inner .flex-wrapper .frame h3 strong {
  font-size: 2em;
  color: var(--color--main);
}
section#newfunc01 .section_inner .flex-wrapper .frame p {
  font-size: clamp(1.2em, 1.9vw, 1.9em);
  font-weight: 600;
  line-height: 1.7;
}
section#newfunc01 .section_inner .textArea {
  max-width: 1000px;
  margin: 0 auto;
}
section#newfunc01 .section_inner .textArea p {
  font-size: 1.1em;
}

@media (max-width: 767px) {
  section#newfunc01 .section_inner .title_wrapper .icon img {
    width: 130px;
  }
  section#newfunc01 .section_inner .title_wrapper h2 {
    padding: 20px 40px;
    border-radius: 60px;
  }
  section#newfunc01 .section_inner .title_wrapper h3 {
    margin: 10px 0 0 0;
  }
  section#newfunc01 .section_inner .title_wrapper h4 {
    margin-bottom: 50px;
  }
  section#newfunc01 .section_inner .title_wrapper h4:after {
    bottom: -20px;
    width: 40px;
  }
  section#newfunc01 .section_inner .lead strong {
    font-size: 1.5em;
  }
  section#newfunc01 .section_inner .pic {
    width: 260px;
  }
  section#newfunc01 .section_inner .flex-wrapper .frame {
    margin-left: 0;
    margin-top: 50px;
    padding: 1.5em;
  }
  section#newfunc01 .section_inner .flex-wrapper .frame figure {
    text-align: center;
    margin-top: -70px;
  }
  section#newfunc01 .section_inner .flex-wrapper .frame figure img {
    width: 100px;
  }
  section#newfunc01 .section_inner .textArea p {
    font-size: 1em;
  }
}
/*---------------------
 #newfunc02
---------------------*/
section#newfunc02 {
  background: url(../img/newfunc/newfunc02_bg.jpg) top center;
  padding: 5vw 0;
}
section#newfunc02 .section_inner .title_wrapper {
  text-align: center;
}
section#newfunc02 .section_inner .title_wrapper .icon {
  position: relative;
  z-index: 2;
}
section#newfunc02 .section_inner .title_wrapper h2 {
  margin-top: -10px;
  display: inline-block;
  font-size: clamp(1.4em, 3vw, 3em);
  background: var(--color--white);
  padding: 30px 100px;
  border-radius: 60px;
}
section#newfunc02 .section_inner .title_wrapper h2 strong {
  color: var(--color--main);
}
section#newfunc02 .section_inner .title_wrapper h3 {
  font-size: clamp(1.7em, 3.6vw, 3.6em);
  line-height: 1;
  margin: 0 0 30px 0;
}
section#newfunc02 .section_inner .title_wrapper h4 {
  position: relative;
  font-size: clamp(1.3em, 2.2vw, 2.2em);
  font-weight: 600;
  line-height: 1;
  margin: 20px 0;
  color: var(--color--main);
}
section#newfunc02 .section_inner .title_wrapper h4:after {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  background: var(--color--main);
  width: 70px;
  height: 6px;
}
section#newfunc02 .section_inner .lead {
  max-width: 1100px;
  margin: 0 auto 4vw;
  font-weight: 400;
  font-size: clamp(1.2em, 1.9vw, 1.9em);
}
section#newfunc02 .section_inner .mv {
  background: url(../img/newfunc/newfuc02_bg.png) top center no-repeat;
  text-align: center;
  margin: 5vw auto 2vw;
}
section#newfunc02 .section_inner .mv h3 {
  margin-top: -20px;
}
section#newfunc02 .section_inner .mv .illust02 {
  margin-top: -50px;
}
section#newfunc02 .section_inner article {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0 0 60px;
}
section#newfunc02 .section_inner article .icon {
  position: absolute;
  top: 0;
  left: 0;
}
section#newfunc02 .section_inner article .frame {
  background: var(--color--white);
  border-radius: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  padding: 0.8em 2em 3em 7.5em;
}
section#newfunc02 .section_inner article .frame p {
  font-size: clamp(1.2em, 1.9vw, 1.9em);
  font-weight: 600;
}
section#newfunc02 .section_inner article .frame p span {
  color: var(--color--main);
}
section#newfunc02 .section_inner article .frame p.attention {
  font-weight: 400;
  font-size: clamp(1.2em, 1.5vw, 1.5em);
}
section#newfunc02 .section_inner article .frame .fig {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-left: -3em;
  margin-right: 2em;
}
section#newfunc02 .section_inner article .frame .fig .text {
  padding-top: 30%;
}
section#newfunc02 .section_inner article .frame .illust-center {
  padding-left: 20%;
}
section#newfunc02 .section_inner .arrow {
  text-align: center;
  margin: 30px auto 0;
}
section#newfunc02 .section_inner .arrow_right {
  position: relative;
  z-index: 2;
  text-align: right;
  margin: -20px 20% 20px 0;
}
section#newfunc02 .section_inner .textArea {
  max-width: 900px;
  margin: 0 auto;
}
section#newfunc02 .section_inner .textArea p {
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 767px) {
  section#newfunc02 .section_inner .title_wrapper .icon img {
    width: 130px;
  }
  section#newfunc02 .section_inner .title_wrapper h2 {
    padding: 20px 20px;
    border-radius: 60px;
    line-height: 1.4;
  }
  section#newfunc02 .section_inner .title_wrapper h3 {
    margin: 10px 0 0 0;
  }
  section#newfunc02 .section_inner .title_wrapper h4 {
    margin-bottom: 50px;
  }
  section#newfunc02 .section_inner .title_wrapper h4:after {
    bottom: -20px;
    width: 40px;
  }
  section#newfunc02 .section_inner .mv {
    background: url(../img/newfunc/newfuc02_bg.png) top center no-repeat;
    text-align: center;
    margin: 5vw auto 2vw;
  }
  section#newfunc02 .section_inner .mv h3 {
    margin-top: 0;
  }
  section#newfunc02 .section_inner .mv .illust01 img {
    width: 150px;
  }
  section#newfunc02 .section_inner .mv .illust02 {
    margin-top: -20px;
  }
  section#newfunc02 .section_inner .mv .illust02 img {
    width: 150px;
  }
  section#newfunc02 .section_inner article {
    padding: 60px 0 0 20px;
  }
  section#newfunc02 .section_inner article .icon img {
    width: 90px;
  }
  section#newfunc02 .section_inner article .frame {
    padding: 0.8em 2em 3em 2.5em;
  }
  section#newfunc02 .section_inner article .frame p.attention {
    font-weight: 400;
    font-size: clamp(1.2em, 1.5vw, 1.5em);
  }
  section#newfunc02 .section_inner article .frame .fig {
    margin-left: 0;
    margin-right: 0;
  }
  section#newfunc02 .section_inner article .frame .fig .text {
    padding-top: 30%;
  }
  section#newfunc02 .section_inner article .frame .illust-center {
    padding-left: 10%;
  }
  section#newfunc02 .section_inner article .frame .illust-center img {
    width: 200px;
  }
  section#newfunc02 .section_inner .arrow img {
    width: 80px;
    padding-left: 20px;
  }
  section#newfunc02 .section_inner .arrow_right {
    margin: -20px 15% 20px 0;
  }
  section#newfunc02 .section_inner .arrow_right img {
    width: 80px;
  }
  section#newfunc02 .section_inner .textArea p {
    font-size: 1em;
  }
}
/*---------------------
 #newfunc03
---------------------*/
section#newfunc03 {
  background: url(../img/newfunc/newfunc03_bg.png) top center;
  padding: 5vw 0;
}
section#newfunc03 .section_inner .title_wrapper {
  text-align: center;
}
section#newfunc03 .section_inner .title_wrapper .icon {
  position: relative;
  z-index: 2;
}
section#newfunc03 .section_inner .title_wrapper h2 {
  margin-top: -10px;
  display: inline-block;
  font-size: clamp(1.4em, 3vw, 3em);
  background: var(--color--white);
  padding: 30px 60px;
  border-radius: 60px;
}
section#newfunc03 .section_inner .title_wrapper h2 strong {
  color: var(--color--main);
}
section#newfunc03 .section_inner .title_wrapper h3 {
  font-size: clamp(1.7em, 3.6vw, 3.6em);
  line-height: 1;
  margin: 0 0 30px 0;
}
section#newfunc03 .section_inner .title_wrapper h4 {
  position: relative;
  font-size: clamp(1.3em, 2.2vw, 2.2em);
  font-weight: 600;
  line-height: 1;
  margin: 20px 0;
  color: var(--color--main);
}
section#newfunc03 .section_inner .title_wrapper h4:after {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  background: var(--color--main);
  width: 70px;
  height: 6px;
}
section#newfunc03 .section_inner .lead {
  margin: 6vw auto 4vw;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.2em, 2vw, 2em);
  line-height: 1.8;
}
section#newfunc03 .section_inner .lead strong {
  font-size: 1.5em;
  font-weight: 600;
  padding: 0 0.2em;
  color: var(--color--main);
}
section#newfunc03 .section_inner article {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  margin: 7vw auto 2vw;
}
section#newfunc03 .section_inner article .frame {
  background: var(--color--white);
  border-radius: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  padding: 3em 1.5em 1.5em;
}
section#newfunc03 .section_inner article .frame h3 {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  border-radius: 40px;
  font-size: clamp(1.3em, 2vw, 2em);
  color: var(--color--white);
  background: #4aaa04;
  padding: 15px 60px;
  font-weight: 600;
}
section#newfunc03 .section_inner article .frame .map {
  position: relative;
}
section#newfunc03 .section_inner article .frame .map .pin {
  position: absolute;
  width: 40px;
  top: 48%;
  left: 48%;
}
section#newfunc03 .section_inner article .frame .map .balloon {
  position: absolute;
  top: 5%;
  left: 45%;
}
section#newfunc03 .section_inner article.member h3 {
  background: var(--color--main);
}
section#newfunc03 .section_inner article.member .map .pin {
  top: 48%;
  left: 48%;
}
section#newfunc03 .section_inner article.member .map .balloon {
  top: 5%;
  left: 55%;
}
section#newfunc03 .section_inner .textArea {
  max-width: 1000px;
  margin: 0 auto;
}
section#newfunc03 .section_inner .textArea p {
  font-size: 1.1em;
}

@media (max-width: 767px) {
  section#newfunc03 .section_inner .title_wrapper .icon img {
    width: 130px;
  }
  section#newfunc03 .section_inner .title_wrapper h2 {
    padding: 20px 40px;
    border-radius: 60px;
    line-height: 1.5;
  }
  section#newfunc03 .section_inner .title_wrapper h3 {
    margin: 10px 0 0 0;
  }
  section#newfunc03 .section_inner .title_wrapper h4 {
    margin-bottom: 50px;
  }
  section#newfunc03 .section_inner .title_wrapper h4:after {
    bottom: -20px;
    width: 40px;
  }
  section#newfunc03 .section_inner .lead strong {
    font-size: 1.3em;
  }
  section#newfunc03 .section_inner article {
    margin: 60px auto 2vw;
  }
  section#newfunc03 .section_inner article .frame {
    border-radius: 20px;
    padding: 3em 1em 1em;
  }
  section#newfunc03 .section_inner article .frame h3 {
    top: -40px;
    padding: 15px;
    width: 80%;
  }
  section#newfunc03 .section_inner article .frame .map .pin {
    width: 30px;
  }
  section#newfunc03 .section_inner article .frame .map .balloon {
    top: 0;
    left: 30%;
  }
  section#newfunc03 .section_inner article.member .map .pin {
    top: 48%;
    left: 48%;
  }
  section#newfunc03 .section_inner article.member .map .balloon {
    top: 0;
    left: 35%;
  }
  section#newfunc03 .section_inner .textArea p {
    font-size: 1em;
  }
}
/*---------------------
 #campaign
---------------------*/
section#campaign {
  background: url(../img/campaign_bg.png) top center;
  padding: 2vw 0;
}
section#campaign h3.campaing_catch {
  line-height: 1;
  margin: 0;
}
section#campaign h3 span {
  display: block;
  font-size: 0.8em;
  line-height: 1.6;
}
section#campaign .date {
  margin: 10px auto;
}
section#campaign .frame {
  position: relative;
  max-width: 980px;
  margin: 6vw auto;
  background: var(--color--white);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  border-radius: 45px;
  padding: 3em;
}
section#campaign .frame h3 {
  position: relative;
  margin: 20px 0 20px 0;
  z-index: 2;
}
section#campaign .frame:last-child {
  margin-top: 8vw;
}
section#campaign .frame:last-child h3 strong {
  font-size: 1.2em;
}
section#campaign .frame .badge {
  position: absolute;
  transform: translateY(-70%);
}
section#campaign .frame h4 {
  font-weight: 600;
  color: var(--color--main);
  font-size: clamp(1.3em, 1.8vw, 1.8em);
  border: 4px solid var(--color--main);
  padding: 5px;
  text-align: center;
  border-radius: 30px;
}
section#campaign .frame ul {
  font-size: clamp(1.1em, 1.2vw, 1.2em);
  line-height: 2;
}
section#campaign .button_area {
  max-width: 740px;
  margin: 3vw auto 10vw;
}
section#campaign .button_area .button {
  border-radius: 40px;
}
section#campaign .button_area .button img {
  width: 80px;
  height: auto;
  padding: 0 10px;
}

@media (max-width: 767px) {
  section#campaign {
    background: url(../img/campaign_bg_sp.png) center top;
  }
  section#campaign .frame {
    padding: 1.5em;
    border-radius: 20px;
    margin-top: 8vw;
  }
  section#campaign .frame .badge {
    width: 80px;
  }
  section#campaign .frame ul {
    margin: 0;
    padding-left: 1em;
  }
  section#campaign .button_area {
    margin: 3vw auto 15vw;
  }
  section#campaign .button_area .button {
    border-radius: 40px;
  }
  section#campaign .button_area .button img {
    width: 50px;
    padding: 5px;
  }
}
/*---------------------
 #about
---------------------*/
section#about {
  background: url(../img/about_bg.png) top center;
  padding: 4vw 0;
}
section#about .title_area {
  text-align: center;
  margin-bottom: 6vw;
}
section#about .lead {
  font-size: clamp(1.2em, 1.6vw, 1.6em);
  line-height: 1.8;
  font-weight: 700;
}
section#about .lead strong {
  color: var(--color--sub);
  font-size: 1.4em;
}
section#about .lead.large strong {
  font-size: clamp(1.2em, 2.4vw, 2.4em);
}
section#about figure.map_user {
  max-width: 600px;
  margin: 4em auto 2em;
  background: var(--color--white);
  border-radius: 30px;
  padding: 2em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
section#about figure.map {
  position: relative;
  margin: 0 auto;
  max-width: 640px;
}
section#about figure.map .pin {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 640px;
}
section#about article {
  margin: 6vw auto;
}
section#about article h3 {
  background: url(../img/about_subt_bg.png) no-repeat center;
  text-align: center;
  font-size: clamp(1.8em, 4vw, 4em);
  font-weight: 600;
  padding: 30px;
}
section#about article .flex-wrapper {
  margin: 0 30px;
}
section#about article .frame {
  position: relative;
  max-width: 1100px;
  background: var(--color--white);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  border-radius: 45px;
  padding: 3em;
  margin: 0 30px;
}

@media (max-width: 1220px) {
  section#about article h3 {
    max-width: 360px;
    background-size: contain;
    margin-right: auto;
    margin-left: auto;
  }
  section#about article .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }
  section#about article .flex-wrapper .flex-one {
    width: 48%;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  section#about article .frame {
    padding: 1em;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  section#about article h3 {
    padding: 20px;
  }
  section#about article .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }
  section#about article .flex-wrapper .flex-one {
    width: 48%;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  section#about article .frame {
    padding: 1em;
    margin: 0 auto;
  }
}
/*---------------------
 #merit
---------------------*/
section#merit {
  background: #ffd99d url(../img/merit_bg.png) top center;
  padding: 4vw 0;
}
section#merit .title_area {
  text-align: center;
  margin-bottom: 6vw;
}
section#merit .lead {
  font-size: clamp(1.1em, 1.4vw, 1.4em);
  line-height: 1.8;
}
section#merit .lead strong {
  color: var(--color--main);
  font-size: 1.3em;
}
section#merit .button_area .flex-wrapper .flex-one {
  position: relative;
  background: var(--color--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  text-align: center;
}
section#merit .button_area .flex-wrapper .flex-one h4 {
  font-size: clamp(1.2em, 1.6vw, 1.6em);
  line-height: 1.4;
  margin: 20px 0 10px;
}
section#merit .button_area .flex-wrapper .flex-one img.icon {
  height: 72px;
  width: auto;
}
section#merit .button_area .flex-wrapper .flex-one .boxlink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section#merit article {
  margin: 3vw auto;
}
section#merit article .section_inner.sp {
  margin-top: 8vw;
}
section#merit article h3 {
  text-align: center;
  font-size: clamp(1.8em, 3.6vw, 3.6em);
  font-weight: 700;
  padding: 30px;
}
section#merit article h3 strong {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
}
section#merit article h3 strong::before {
  position: absolute;
  top: 0;
  left: -0.8em;
  display: block;
  content: "";
  height: 90px;
  width: 4px;
  background: var(--color--black);
  transform: rotate(-30deg);
}
section#merit article h3 strong::after {
  position: absolute;
  top: 0;
  right: -0.8em;
  display: block;
  content: "";
  height: 90px;
  width: 4px;
  background: var(--color--black);
  transform: rotate(30deg);
}
section#merit article h4 {
  font-size: clamp(1.4em, 2vw, 2em);
  font-weight: 600;
}
section#merit article h4.large {
  font-size: clamp(1.5em, 3.2vw, 3.2em);
}
section#merit article h4.x-large {
  font-size: clamp(1.5em, 3.4vw, 3.4em);
  text-align: center;
}
section#merit article h4.x-large strong {
  color: var(--color--main);
}
section#merit article h4 strong {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--color--main);
}
section#merit article .box {
  background: var(--color--white);
}
section#merit article .box .textArea {
  padding: 1em 2em;
}
section#merit article .frame {
  position: relative;
  background: var(--color--white);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  border-radius: 45px;
  padding: 3em;
}
section#merit article#merit01 .box_wrapper {
  background: linear-gradient(to right, var(--color--white) 50%, transparent 50%);
}
section#merit article#merit01 .box_wrapper.bg_reverse {
  background: linear-gradient(to left, var(--color--white) 50%, transparent 50%);
}
section#merit article#merit01 .box_wrapper.sp {
  transform: translateY(-80px);
}
section#merit article#merit01 .box_wrapper.sp .flex-wrapper {
  align-items: flex-start;
}
section#merit article#merit01 .box_wrapper.sp .flex-wrapper .flex-one .textArea {
  padding: 3em 2em 3em 0;
}
section#merit article#merit01 .box {
  margin-top: 100px;
}
section#merit article#merit01 .box .flex-wrapper {
  align-items: center;
}
section#merit article#merit01 .box .flex-wrapper.three .flex-two {
  width: 60%;
}
section#merit article#merit01 .box .flex-wrapper.three .flex-one {
  width: 40%;
}
section#merit article#merit01 .box .flex-wrapper.two .flex-one {
  position: relative;
}
section#merit article#merit01 .box .flex-wrapper.two .flex-one figure {
  position: absolute;
  top: -260px;
}
section#merit article#merit01 .down {
  max-width: 1200px;
  margin: 0 auto;
  background: url(../img/merit01_down.png) no-repeat center bottom;
  background-size: cover;
  height: 110px;
}
section#merit article#merit01 h4 {
  text-align: left;
  line-height: 1.4;
  margin: 10px 0 1em;
  font-weight: 700;
  font-size: clamp(1.4em, 2.2vw, 2.2em);
}
section#merit article#merit01 h4.large {
  font-size: clamp(1.4em, 3vw, 3em);
  text-align: center;
}
section#merit article#merit01 h4.pad {
  text-align: center;
}
section#merit article#merit01 h4.sub-title {
  text-align: left;
  line-height: 1.6;
}
section#merit article#merit01 h4.sub-title strong {
  font-size: 1em;
}
section#merit article#merit01 h4.sub-title span {
  font-size: 0.8em;
}
section#merit article#merit01 h4 strong {
  font-size: 2em;
}
section#merit article#merit02 .box_wrapper {
  background: linear-gradient(to right, var(--color--white) 50%, transparent 50%);
}
section#merit article#merit02 .box_wrapper.bg_reverse {
  background: linear-gradient(to left, var(--color--white) 50%, transparent 50%);
}
section#merit article#merit02 h4 {
  font-weight: 700;
  font-size: clamp(1.3em, 2.5vw, 2.5em);
  text-align: center;
}
section#merit article#merit02 h4 strong {
  font-size: 1em;
}
section#merit article#merit02 h4.titlebox {
  display: inline-block;
  padding: 7px 20px;
  background: var(--color--white);
  box-shadow: 10px 10px 0 var(--color--main);
  margin-bottom: 1em;
}
section#merit article#merit02 h4.titlebox h4 {
  font-size: clamp(1.3em, 2.8vw, 2.8em);
}
section#merit article#merit02 .lead {
  position: relative;
  font-size: clamp(1.1em, 1.9vw, 1.9em);
  font-weight: 600;
}
section#merit article#merit02 .lead.underline {
  display: inline-block;
  margin: 0 0 7px 0;
}
section#merit article#merit02 .lead.underline span {
  position: relative;
  z-index: 2;
}
section#merit article#merit02 .lead.underline::before {
  display: block;
  position: absolute;
  bottom: 5px;
  content: "";
  width: 100%;
  height: 10px;
  background: var(--color--main);
  border-radius: 10px;
}
section#merit article#merit02 .lead.large strong {
  color: var(--color--main);
}
section#merit article#merit02 .lead.x-large {
  margin-top: 10px;
}
section#merit article#merit02 .lead.x-large strong {
  color: var(--color--main);
  font-size: 1.6em;
}
section#merit article#merit02 .box {
  margin-top: 5vw;
}
section#merit article#merit02 .box.inner {
  padding: 3em 2em;
}
section#merit article#merit02 .box.inner h4 {
  text-align: center;
  margin-top: 0;
}
section#merit article#merit02 .box.inner .flex-wrapper .flex-one {
  width: 22%;
  border: 4px solid var(--color--main);
  border-radius: 20px;
  text-align: center;
  padding: 1em;
}
section#merit article#merit02 .box.inner .flex-wrapper .flex-one img {
  width: 140px;
  margin-bottom: 10px;
}
section#merit article#merit02 .box.inner .flex-wrapper .flex-one h5 {
  font-size: clamp(1.1em, 1.4vw, 1.4em);
  font-weight: 600;
  margin: 0;
}
section#merit article#merit03 .lead {
  font-size: 1.7em;
}
section#merit article#merit03 figure.cost {
  position: relative;
}
section#merit article#merit03 figure.cost .textArea {
  position: absolute;
  top: 30px;
  left: 42%;
  text-align: left;
}
section#merit article#merit03 figure.cost .textArea figure {
  margin-bottom: 30px;
}
section#merit article#merit04 h3 {
  margin: 0;
}
section#merit article#merit04 h4.catch {
  margin-top: 0;
}
section#merit article#merit04 .voice {
  max-width: 720px;
  padding: 2em;
  margin: 6vw 0;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-left: 10%;
  background: var(--color--white);
}
section#merit article#merit04 .voice:nth-child(3) {
  margin-left: 30%;
}
section#merit article#merit04 .voice h5 {
  color: var(--color--main);
  font-size: clamp(1.2em, 2.2vw, 2.2em);
  margin: 0 0 10px 0;
}
section#merit article#merit04 .voice ul {
  font-size: clamp(1.1em, 1.8vw, 1.8em);
  margin: 0;
}
section#merit article#merit04 .voice .flex-wrapper {
  display: flex;
  justify-content: space-between;
}
section#merit article#merit04 .voice .flex-wrapper .image {
  position: relative;
  width: 20%;
}
section#merit article#merit04 .voice .flex-wrapper .image img {
  position: absolute;
  top: -80px;
}
section#merit article#merit04 .voice .flex-wrapper .text {
  width: 78%;
}
section#merit article#merit04 .box_wrapper {
  background: linear-gradient(to right, var(--color--white) 50%, transparent 50%);
}
section#merit article#merit04 .box_wrapper .box h4 {
  font-size: clamp(1.4em, 2.2vw, 2.2em);
  font-weight: 700;
}
section#merit article#merit04 .box_wrapper .box .flex-wrapper {
  align-items: center;
}
section#merit article#merit04 .box_wrapper .box .flex-wrapper .flex-one {
  width: 50%;
}
section#merit article#merit04 .box_wrapper .box .flex-wrapper .flex-one figure {
  transform: translateY(-60px);
  text-align: center;
}
section#merit article#merit04 .box_wrapper .box .flex-wrapper .flex-one figure img {
  text-align: center;
}

@media (max-width: 1220px) {
  section#merit .title_area img {
    width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  section#merit article h3 {
    line-height: 1.3;
    margin-bottom: 0;
    padding: 10px 20px;
  }
  section#merit article h3 strong::before {
    height: 60px;
  }
  section#merit article h3 strong::after {
    height: 60px;
  }
  section#merit article#merit01 .box_wrapper.sp {
    background: linear-gradient(to bottom, transparent 10%, var(--color--white) 10%);
    margin-top: -80px;
  }
  section#merit article#merit01 .box_wrapper.sp .box {
    background: none;
  }
  section#merit article#merit01 .textArea {
    padding: 2em;
  }
  section#merit article#merit01 .down {
    height: 70px;
  }
  section#merit article#merit01 .box .flex-wrapper.two .flex-one figure {
    text-align: center;
    position: relative;
    top: -60px;
  }
  section#merit article#merit01 .box .flex-wrapper.two .flex-one figure.sp {
    padding: 10px 0 20px;
  }
  section#merit article#merit01 .box .flex-wrapper.two .flex-one figure.sp img {
    width: 380px;
  }
  section#merit article#merit03 figure.cost .textArea {
    top: 10px;
    left: 40%;
  }
  section#merit article#merit03 figure.cost .textArea figure {
    margin-bottom: 5px;
  }
  section#merit article#merit04 .voice {
    max-width: 520px;
  }
}
@media (max-width: 767px) {
  section#merit .title_area img {
    width: auto;
  }
  section#merit .button_area .flex-wrapper .flex-one {
    margin-bottom: 20px;
    padding: 5px;
  }
  section#merit .button_area .flex-wrapper .flex-one .icon {
    display: none;
  }
  section#merit article h3 {
    line-height: 1.3;
    margin-bottom: 0;
    padding: 10px 20px;
  }
  section#merit article h3 strong {
    padding: 0;
  }
  section#merit article h3 strong::before {
    transform: rotate(-20deg);
    left: -0.6em;
  }
  section#merit article h3 strong::after {
    transform: rotate(20deg);
    right: -0.6em;
  }
  section#merit article#merit01 .section_inner {
    padding: 0;
  }
  section#merit article#merit01 .box_wrapper.sp {
    background: linear-gradient(to bottom, transparent 20%, var(--color--white) 20%);
  }
  section#merit article#merit01 .box_wrapper.sp .box {
    background: none;
  }
  section#merit article#merit01 h4 {
    line-height: 1.3;
  }
  section#merit article#merit01 h4 strong {
    font-size: 1.4em;
  }
  section#merit article#merit01 h4.pad {
    padding: 15px;
  }
  section#merit article#merit01 h4.sub-title {
    padding-left: 1em;
  }
  section#merit article#merit01 .textArea {
    margin: 0;
    padding: 10px;
  }
  section#merit article#merit01 .down {
    height: 50px;
  }
  section#merit article#merit01 .box .flex-wrapper.two .flex-one .textArea {
    padding-left: 1em;
  }
  section#merit article#merit01 .box .flex-wrapper.two .flex-one figure {
    text-align: center;
    position: relative;
    top: auto;
  }
  section#merit article#merit01 .box .flex-wrapper.two .flex-one figure.sp {
    padding: 10px 0 20px;
  }
  section#merit article#merit01 .box .flex-wrapper.two .flex-one figure.sp img {
    margin-top: 80px;
    width: 280px;
  }
  section#merit article#merit01 .box .flex-wrapper.three .flex-two {
    width: 100%;
  }
  section#merit article#merit01 .box .flex-wrapper.three .flex-two figure {
    padding: 15px 10px 10px;
  }
  section#merit article#merit01 .box .flex-wrapper.three .flex-one {
    width: 100%;
  }
  section#merit article#merit02 {
    margin-top: -60px;
  }
  section#merit article#merit02 .section_inner.bg {
    background: var(--color--white);
  }
  section#merit article#merit02 h3 span {
    padding: 0;
  }
  section#merit article#merit02 h4.sub_title {
    margin: 20px 0;
  }
  section#merit article#merit02 .textArea {
    padding: 0 15px;
  }
  section#merit article#merit02 .lead.underline {
    text-align: left;
    border-bottom: 6px solid var(--color--main);
    display: inline;
  }
  section#merit article#merit02 .lead.underline::before {
    display: none;
  }
  section#merit article#merit02 .box.inner {
    padding: 1em 0.5em;
  }
  section#merit article#merit02 .box.inner .flex-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  section#merit article#merit02 .box.inner .flex-wrapper .flex-one {
    width: 48%;
    margin-bottom: 15px;
  }
  section#merit article#merit02 .box.inner .flex-wrapper .flex-one img {
    width: 90px;
  }
  section#merit article#merit03 h3 {
    margin-bottom: 30px;
  }
  section#merit article#merit03 h3 strong::before {
    height: 50px;
  }
  section#merit article#merit03 h3 strong::after {
    height: 50px;
  }
  section#merit article#merit03 .lead {
    font-size: 1.2em;
  }
  section#merit article#merit03 figure.cost .textArea {
    top: 45%;
    left: 7%;
  }
  section#merit article#merit03 figure.cost .textArea figure {
    margin-bottom: 5px;
    max-width: 260px;
  }
  section#merit article#merit04 .section_inner {
    margin-top: 80px;
  }
  section#merit article#merit04 .section_inner.bg {
    background: var(--color--white);
  }
  section#merit article#merit04 h3 {
    margin-bottom: 20px;
  }
  section#merit article#merit04 h3 strong::before {
    height: 50px;
  }
  section#merit article#merit04 h3 strong::after {
    height: 50px;
  }
  section#merit article#merit04 h4 {
    margin-bottom: 30px;
  }
  section#merit article#merit04 .voice {
    margin-left: 0;
    margin-top: 50px;
    padding: 1em;
  }
  section#merit article#merit04 .voice:nth-child(3) {
    margin-left: 0;
  }
  section#merit article#merit04 .voice .flex-wrapper {
    display: block;
  }
  section#merit article#merit04 .voice .flex-wrapper .image {
    width: 80%;
    text-align: right;
  }
  section#merit article#merit04 .voice .flex-wrapper .image img {
    width: 60px;
    top: -60px;
  }
  section#merit article#merit04 .voice .flex-wrapper .text {
    width: 100%;
  }
  section#merit article#merit04 .box_wrapper .box .flex-wrapper.two .flex-one {
    width: 100%;
  }
  section#merit article#merit04 .box_wrapper .box .flex-wrapper.two .flex-one figure {
    width: 240px;
    margin: 0 auto;
  }
  section#merit article#merit04 .box_wrapper .box .flex-wrapper.two .flex-one .textArea {
    margin-top: -50px;
    padding: 1em 0;
  }
}
/*---------------------
 #flow
---------------------*/
section#flow {
  padding: 4vw 0;
  background-color: #fff04e;
}
section#flow .title_wrapper h2 {
  color: var(--color--main);
}
section#flow h3.comment {
  font-size: clamp(1.4em, 2.4vw, 2.4em);
  text-align: center;
}
section#flow h3.comment strong {
  font-size: 1.8em;
  color: var(--color--main);
}
section#flow .button {
  background: var(--color--white);
  border-radius: 60px;
  max-width: 430px;
  margin: 30px auto;
  font-size: clamp(1.3em, 2.8vw, 2.8em);
  padding: 15px;
}
section#flow .button img {
  width: 60px;
}
section#flow .flex-wrapper {
  padding: 2em;
}
section#flow .flex-wrapper .flex-one {
  position: relative;
  background: var(--color--white);
  border-radius: 20px;
  padding: 2em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 30%;
}
section#flow .flex-wrapper .flex-one .step {
  position: absolute;
  top: -40px;
}
section#flow .flex-wrapper .flex-one::after {
  position: absolute;
  display: block;
  content: "";
  background: url(../img/arrow_oarange_right.png) no-repeat center;
  width: 60px;
  height: 100%;
  top: 0;
  right: -60px;
}
section#flow .flex-wrapper .flex-one:last-child::after {
  display: none;
}
section#flow .flex-wrapper .flex-one figure {
  text-align: center;
}
section#flow .flex-wrapper .flex-one figure img {
  height: 120px;
}
section#flow .flex-wrapper .flex-one h5 {
  font-size: clamp(1.3em, 1.8vw, 1.8em);
  text-align: center;
  margin: 0 0 10px 0;
  height: 2.8em;
}
section#flow .flex-wrapper .flex-one p {
  line-height: 1.6;
  font-size: clamp(1.2em, 1.3vw, 1.3em);
}

@media (max-width: 767px) {
  section#flow .flex-wrapper {
    padding: 0;
    margin-top: 60px;
  }
  section#flow .flex-wrapper .flex-one {
    width: 100%;
    margin-bottom: 50px;
    padding: 1em;
  }
  section#flow .flex-wrapper .flex-one h5 {
    height: auto;
  }
  section#flow .flex-wrapper .flex-one figure {
    margin-bottom: 20px;
  }
  section#flow .flex-wrapper .flex-one figure img {
    width: 100px;
  }
  section#flow .flex-wrapper .flex-one::after {
    display: none;
  }
  section#flow h3.comment {
    line-height: 1.4;
  }
}
/*---------------------
 footer
---------------------*/
#footer {
  background: #414545;
  padding: 20px 0;
}
#footer .logoArea {
  background: #cdcdcd;
  padding: 10px;
  text-align: center;
}
#footer ul {
  padding: 10px 0;
  margin: 0;
}
#footer ul.menu {
  display: flex;
  list-style: none;
  justify-content: center;
}
#footer ul.menu li {
  display: block;
  color: var(--color--white);
  padding: 20px;
}
#footer .copyright {
  font-size: 0.9em;
  padding: 20px auto;
  color: var(--color--white);
  text-align: center;
}
#footer .copyright figure {
  text-align: center;
  padding: 5px 0;
  margin: 0 auto;
}
#footer .copyright figure img {
  max-width: 320px;
}

@media (max-width: 1199px) {
  #footer ul {
    padding: 15px 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  #footer ul.menu {
    display: block;
  }
  #footer ul.menu li {
    width: 100%;
    border-bottom: 1px solid var(--color--gray);
  }
  #footer ul.menu li a {
    padding: 10px 0;
  }
  #footer .copyright figure img {
    max-width: 180px;
  }
}
.fixed_button {
  position: fixed;
  right: 10px;
  bottom: 30px;
  background: var(--color--white);
  padding: 15px 20px 30px 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
  text-align: center;
}
.fixed_button h5 {
  font-size: clamp(1.2em, 1.3vw, 1.3em);
  margin: 0 0 10px 0;
}
.fixed_button img {
  box-shadow: 5px 14px 0 var(--color--black);
  transition: all linear 0.2s;
  border-radius: 10px;
}
.fixed_button:hover img {
  transform: translateY(14px);
  box-shadow: none;
}

@media (max-width: 767px) {
  .fixed_button {
    padding: 10px 10px 20px 10px;
    border-radius: 10px;
    text-align: center;
  }
  .fixed_button h5 {
    margin-bottom: 5px;
  }
  .fixed_button img {
    width: 100px;
    box-shadow: 4px 10px 0 var(--color--black);
  }
  .fixed_button:hover img {
    transform: translateY(14px);
    box-shadow: none;
  }
}
/*----------------------------
* スマホメニュー
*----------------------------*/
#navAll {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #555;
}
#navAll .menu__item {
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

/* アニメーション前のメニューの状態 */
#navAll {
  pointer-events: none;
  opacity: 0;
  transform-origin: center;
  transform: scale(0.5);
  transition: all 0.3s ease;
}
#navAll ul {
  list-style: none;
}
#navAll ul li a {
  color: var(--color--white);
  display: block;
  padding: 10px 0;
}

/* アニメーション後のメニューの状態 */
#navAll.is-active {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
}

/*---------------------
 #areamap_mv
---------------------*/
section#areamap_mv {
  position: relative;
  background: url(../img/areamap/areamap_mv_bg.png) no-repeat top center;
  padding: 2vw 0;
  text-align: center;
}
section#areamap_mv .section_inner {
  position: relative;
  max-width: 1400px;
}
section#areamap_mv .section_inner .titleArea {
  position: absolute;
  top: 3%;
  left: 0;
  width: 100%;
  text-align: center;
}
section#areamap_mv .section_inner .titleArea h1 {
  width: 100%;
  text-align: center;
  padding: 0 10px;
  margin: 0 auto;
}
section#areamap_mv .section_inner .titleArea h2 {
  text-align: center;
  padding: 0 10px;
  margin: 0 auto;
}
section#areamap_mv .map {
  text-align: center;
  margin: 0 auto;
}
section#areamap_mv .speech {
  width: 100%;
  text-align: right;
  margin-top: -400px;
}

@media (max-width: 767px) {
  section#areamap_mv {
    padding: 5vw 0;
    height: 60vh;
  }
  section#areamap_mv .section_inner .map {
    text-align: center;
    margin: 0 auto;
  }
  section#areamap_mv .section_inner .speech {
    margin-top: -140px;
  }
  section#areamap_mv .section_inner .speech img {
    max-width: 220px;
  }
}
/*---------------------
 #areamap_about
---------------------*/
section#areamap_about {
  padding: 8vw 0 2vw;
  background: var(--color--sub2) url(../img/merit_bg.png) top center;
}
section#areamap_about figure {
  text-align: center;
}
section#areamap_about .frame {
  background: var(--color--white);
  border-radius: 40px;
  padding: 30px 10vw;
  margin-bottom: 6vw;
}
section#areamap_about .frame h2 {
  margin: -100px auto 0;
  text-align: center;
}
section#areamap_about .frame.frame02 {
  padding: 30px 4vw;
  margin-top: 40px;
}
section#areamap_about .frame.frame02 h2 {
  margin: -150px auto 30px;
  text-align: center;
}
section#areamap_about .frame h3 {
  font-size: clamp(1.4em, 2.4vw, 2.4em);
}
section#areamap_about .frame h3.subt {
  font-size: clamp(1.3em, 2vw, 2em);
  margin: 0;
  padding: 0;
  color: var(--color--main);
}
section#areamap_about .frame .check {
  list-style: none;
  color: var(--color--main);
  font-weight: 600;
  font-size: clamp(1.3em, 2vw, 2em);
  padding: 0;
}
section#areamap_about .frame .check li {
  background: url(../img/areamap/areamap_check.svg) no-repeat left center;
  padding-left: 60px;
  margin-bottom: 0.5em;
}
section#areamap_about .frame p {
  font-size: clamp(1.3em, 2vw, 2em);
  line-height: 1.8;
  font-weight: 700;
  margin: 0;
}
section#areamap_about .frame p.normal {
  font-weight: normal;
  font-size: clamp(1.2em, 1.6vw, 1.6em);
}
section#areamap_about .frame .disc {
  list-style: disc;
  font-weight: 700;
  font-size: clamp(1.2em, 1.8vw, 1.8em);
}
section#areamap_about .frame .disc li {
  margin-bottom: 0.3em;
}

@media (max-width: 767px) {
  section#areamap_about {
    padding: 5vh 0 15vh;
  }
  section#areamap_about .frame {
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 6vw;
  }
  section#areamap_about .frame h2 {
    margin: -50px auto 0;
  }
  section#areamap_about .frame.frame02 {
    padding: 30px 4vw;
    margin-top: 40px;
  }
  section#areamap_about .frame.frame02 h2 {
    margin: -100px auto 30px;
    text-align: center;
  }
  section#areamap_about .frame h3 img {
    width: 120px;
  }
  section#areamap_about .frame h3.subt {
    font-size: clamp(1.3em, 2vw, 2em);
    margin: 0;
    padding: 0;
    color: var(--color--main);
  }
  section#areamap_about .frame .check li {
    background: url(../img/areamap/areamap_check.svg) no-repeat left top;
    background-size: 30px;
    padding-left: 40px;
  }
}
/*---------------------
 #areamap_merit
---------------------*/
section#areamap_merit {
  padding: 0 0 2vw;
  background: linear-gradient(to top, var(--color--white) 10%, var(--color--white) 10%);
  margin-top: -100px;
}
section#areamap_merit h2.title {
  text-align: center;
  margin-bottom: 8vw;
  position: relative;
}
section#areamap_merit h2.title span {
  font-size: 0.5em;
  color: var(--color--main);
  display: block;
  margin-bottom: 1em;
  font-weight: 600;
}
section#areamap_merit h2.title:after {
  position: absolute;
  bottom: -40px;
  left: 50%;
  content: "";
  width: 80px;
  height: 6px;
  background: var(--color--main);
  transform: translateX(-50%);
}
section#areamap_merit .merit_top {
  padding: 4vw 0;
  background: linear-gradient(to bottom, var(--color--sub2) 0, var(--color--white) 100%);
}
section#areamap_merit .button_area .flex-wrapper .flex-one {
  position: relative;
  background: var(--color--white);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  text-align: center;
}
section#areamap_merit .button_area .flex-wrapper .flex-one h4 {
  font-size: clamp(1.2em, 1.6vw, 1.6em);
  line-height: 1.4;
  margin: 20px 0 10px;
}
section#areamap_merit .button_area .flex-wrapper .flex-one img.icon {
  height: 72px;
  width: auto;
}
section#areamap_merit .button_area .flex-wrapper .flex-one .boxlink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section#areamap_merit article {
  margin: 4vw auto;
  padding: 2vw 0;
  background: url(../img/areamap/areamap_merit_bg.png) no-repeat center top;
}
section#areamap_merit article h2 {
  font-size: clamp(1.6em, 3.7vw, 3.7em);
  line-height: 1.4;
}
section#areamap_merit article h2 strong {
  position: relative;
  display: inline-block;
  padding: 15px 0.5em;
  margin-right: 0.3em;
  font-size: 1.2em;
}
section#areamap_merit article h2 strong span {
  position: relative;
  z-index: 2;
}
section#areamap_merit article h2 strong:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color--white);
  transform: skewX(-20deg);
  z-index: 1;
}
section#areamap_merit article h3 {
  position: relative;
  font-size: clamp(1.4em, 2.4vw, 2.4em);
  margin: 0;
  line-height: 1.6;
  display: inline-block;
}
section#areamap_merit article h3 strong {
  font-weight: 700;
  color: var(--color--main);
}
section#areamap_merit article h3 span {
  position: relative;
  z-index: 2;
}
section#areamap_merit article h3:before {
  display: block;
  position: absolute;
  content: "";
  height: 6px;
  width: 100%;
  background: yellow;
  bottom: 4px;
  left: 0;
  z-index: 1;
}
section#areamap_merit article h4 {
  display: inline-block;
  background: var(--color--white);
  padding: 0.5em;
  font-size: clamp(1.3em, 2.1vw, 2.1em);
  margin: 20px 0;
}
section#areamap_merit article h4 strong {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--color--main);
}

@media (max-width: 767px) {
  section#areamap_merit h2.title {
    margin-bottom: 12vw;
  }
  section#areamap_merit h2.title:after {
    position: absolute;
    bottom: -20px;
    content: "";
    width: 40px;
    height: 4px;
  }
  section#areamap_merit .button_area .flex-wrapper .flex-one {
    margin-bottom: 20px;
    padding: 5px;
  }
}
/*---------------------
 #areamap_ability
---------------------*/
section#areamap_ability {
  padding: 0 0 6vw;
}
section#areamap_ability h2 {
  font-size: clamp(1.5em, 3.2vw, 3.2em);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2vw;
}
section#areamap_ability h2 strong {
  color: var(--color--main);
  font-size: 1.3em;
}
section#areamap_ability .fig {
  position: relative;
  padding-top: 5vw;
}
section#areamap_ability .fig ul {
  list-style: none;
  padding: 0;
  display: flex;
  position: absolute;
  top: 0;
  width: 100%;
  justify-content: space-around;
}
section#areamap_ability .fig ul li:nth-child(1) {
  padding-top: 5%;
}
section#areamap_ability .fig ul li:nth-child(4) {
  padding-top: 5%;
}
section#areamap_ability h3 {
  text-align: center;
  position: relative;
  display: inline-block;
  font-size: clamp(1.4em, 2.4vw, 2.4em);
  padding: 0 10px;
}
section#areamap_ability h3 strong {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--color--main);
}
section#areamap_ability h3:after {
  display: block;
  position: absolute;
  content: "";
  height: 6px;
  width: 100%;
  background: var(--color--main);
  bottom: -15px;
  left: 0;
  transform: scaleX(0);
}
section#areamap_ability h3.is-visible:after {
  animation: lineani 1.5s ease-in-out 1s forwards;
}

@keyframes lineani {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
/*---------------------
 #areamap_case
---------------------*/
section#areamap_case {
  padding: 4vw 0;
  background: var(--color--sub2) url(../img/merit_bg.png) top center;
}
section#areamap_case h2.title {
  text-align: center;
  margin-bottom: 8vw;
  position: relative;
}
section#areamap_case h2.title span {
  font-size: 0.5em;
  color: var(--color--main);
  display: block;
  margin-bottom: 1em;
  font-weight: 600;
}
section#areamap_case h2.title:after {
  position: absolute;
  bottom: -40px;
  left: 50%;
  content: "";
  width: 80px;
  height: 6px;
  background: var(--color--main);
  transform: translateX(-50%);
}
section#areamap_case article {
  position: relative;
  margin-bottom: 5vw;
}
section#areamap_case article.case01_before {
  margin-bottom: 9vw;
}
section#areamap_case article.case01_before .before_bg {
  position: absolute;
  top: 20%;
  left: -20%;
  height: 85%;
  width: 0;
  background: linear-gradient(to right, #ff9900 50%, transparent 50%);
  transform: skewX(20deg);
  z-index: 1;
}
section#areamap_case article.case01_before.is-visible .before_bg {
  animation: bgin 1s ease-in-out 1s forwards;
}
section#areamap_case article.case01_before .section_inner {
  position: relative;
  z-index: 2;
}
section#areamap_case article.case01_before .section_inner .speech {
  margin-top: -60px;
}
section#areamap_case article.case01_before .section_inner h3 {
  position: absolute;
  top: -2em;
  right: 5%;
}
section#areamap_case article.case01_after .after_bg {
  position: absolute;
  top: 20%;
  right: -20%;
  height: 85%;
  width: 0;
  background: linear-gradient(to left, #ff9900 50%, transparent 50%);
  transform: skewX(-20deg);
  z-index: 1;
}
section#areamap_case article.case01_after.is-visible .after_bg {
  animation: bgin 1s ease-in-out 1s forwards;
}
section#areamap_case article.case01_after .section_inner {
  position: relative;
  z-index: 2;
}
section#areamap_case article.case01_after .section_inner figure {
  text-align: right;
}
section#areamap_case article.case01_after .section_inner .speech {
  margin-top: -60px;
  text-align: right;
}
section#areamap_case article.case01_after .section_inner h3 {
  position: absolute;
  top: -2em;
  left: 5%;
}
section#areamap_case h3 {
  text-align: center;
  font-size: clamp(1.5em, 3vw, 3em);
  line-height: 1.5;
  font-weight: 600;
}
section#areamap_case h2.subtitle {
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 30px 0.5em;
  font-size: clamp(1.5em, 3vw, 3em);
}
section#areamap_case h2.subtitle span {
  position: relative;
  z-index: 2;
}
section#areamap_case h2.subtitle span strong {
  color: var(--color--main);
}
section#areamap_case h2.subtitle:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color--white);
  transform: skewX(-20deg);
  z-index: 1;
}
section#areamap_case .flex-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
section#areamap_case .flex-wrapper .flex-one h3 {
  height: 80px;
}
section#areamap_case .flex-wrapper .flex-one.before::after {
  display: block;
  position: absolute;
  content: "";
  background: url(../img/areamap/areamap_case02_arrow.png) no-repeat center;
  width: 80px;
  height: 100%;
  top: -50px;
  right: -60px;
}
section#areamap_case .flex-wrapper .flex-one figure .shadow {
  margin-top: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

@keyframes bgin {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    width: 140%;
  }
}
@media (max-width: 767px) {
  section#areamap_case h2.title {
    margin-bottom: 12vw;
  }
  section#areamap_case h2.title:after {
    position: absolute;
    bottom: -20px;
    content: "";
    width: 40px;
    height: 4px;
  }
  section#areamap_case article {
    position: relative;
    margin-bottom: 5vw;
  }
  section#areamap_case article.case01_before {
    margin-bottom: 9vw;
  }
  section#areamap_case article.case01_before .section_inner h3 img {
    width: 100px;
  }
  section#areamap_case article.case01_after .section_inner h3 img {
    width: 100px;
  }
  section#areamap_case .flex-wrapper {
    max-width: 1000px;
    margin: 0 auto;
  }
  section#areamap_case .flex-wrapper .flex-one h3 {
    height: auto;
  }
  section#areamap_case .flex-wrapper .flex-one h3 img {
    width: 140px;
  }
  section#areamap_case .flex-wrapper .flex-one h4 img {
    max-width: 280px;
    margin-top: -40px;
  }
  section#areamap_case .flex-wrapper .flex-one.before::after {
    display: block;
    position: relative;
    content: "";
    background: url(../img/areamap/areamap_case02_arrow_sp.png) no-repeat center;
    width: 100%;
    height: 60px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  section#areamap_case .flex-wrapper .flex-one figure .shadow {
    margin-top: 0;
    max-width: 240px;
  }
  section#areamap_case h3 {
    font-size: 1.2em;
  }
}/*# sourceMappingURL=style.css.map */