@charset "UTF-8";
/*---------------------------------------- 
	importFont
------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* その場で */
.fadeIn,
.fadeIn2,
.fadeIn3,
.fadeIn4,
[class*=scroll-up-conte] {
  opacity: 0;
}

.fadeIn.done {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fadeIn2.done {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.fadeIn3.done {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.fadeIn4.done {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*----------------
ふわっと表示
-----------------*/
/*
下から
*/
.scroll-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 2s;
}

.scroll-up.done {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}

@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*---------------------------------------- 
	setting Layout
------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, div, span, applet, object,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

article, aside, details, figcaption, figure, picture, footer, header, hgroup, main, menu, nav, section, details, summary {
  display: block;
}

html {
  -webkit-text-size-adjust: none;
  height: 100%;
  max-width: 2560px;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 3.125vw;
  }
}
/*-------------------------------------
base 16px
********************

12px | 0.750em	13px | 0.813em
14px | 0.875em	15px | 0.938em
16px | 1.000em	17px | 1.063em
18px | 1.125em	19px | 1.188em
20px | 1.250em	21px | 1.313em
22px | 1.375em	23px | 1.438em
24px | 1.500em	25px | 1.563em
26px | 1.625em	27px | 1.688em
28px | 1.750em	29px | 1.813em
30px | 1.875em

34px | 2.125em	36px | 2.250em
40px | 2.500em
--------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: bold;
}

ol, ul, ul li, ol li {
  list-style: none;
}

img {
  border: none;
  vertical-align: text-bottom;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.8);
  outline: none;
  text-decoration: none;
  transition: all 0.4s;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

a:hover {
  opacity: 0.4;
}

a:active {
  color: #666;
}

a:link {
  text-decoration: none;
}

a:focus {
  overflow: hidden;
  outline: none;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.red {
  color: #E60012;
}

.relative {
  position: relative;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

option {
  padding-right: 10px;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.ft14 {
  font-size: 0.875em;
}

.ft16 {
  font-size: 1em;
}

.ft20 {
  font-size: 1.25em;
}

.ft24 {
  font-size: 1.5em;
}

.mt16 {
  margin-top: 16px;
}

.mt24 {
  margin-top: 24px;
}

.mt40 {
  margin-top: 40px;
}

.mt80 {
  margin-top: 80px;
}

.mt120 {
  margin-top: 120px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  br.sp {
    display: none;
  }
}
/*---------------------------------------- 
	print Layout
------------------------------------------*/
@media print {
  body {
    zoom: 1;
    width: 1400px;
    transform: scale(0.5);
    transform-origin: 0 0;
  }
  .header,
.footer {
    display: none;
  }
  .container {
    margin: 0;
  }
}
html {
  line-height: 1.75;
  height: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 10px;
  max-width: 100%;
}
html body {
  overflow-x: hidden;
}

.wrapper {
  overflow: hidden;
  color: #272727;
}
.wrapper a {
  color: #272727;
}
.wrapper .inner_900 {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.wrapper .pc-only {
  display: block;
}
.wrapper .sp-only {
  display: none;
}
.wrapper picture,
.wrapper picture img {
  max-width: 100%;
  height: auto;
  display: block;
}

header > h1 img {
  width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 8% 0;
}
section .headingBox {
  position: relative;
  margin-bottom: 32px;
}
section .headingBox_main {
  font-size: 5.1rem;
  color: #E6785D;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
section .headingBox_main > span {
  font-size: 9.6rem;
}
section .headingBox_main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-image: repeating-linear-gradient(to right, #E6785D, #E6785D 5px, transparent 5px, transparent 10px);
}
section .headingBox_main.whitebg-txt {
  background-color: #fff;
  padding: 8px 16px;
}
section .headingBox_main.whitebg-txt::after {
  display: none;
}
section .headingBox_sub {
  position: absolute;
  left: -160px;
  top: 0;
  width: 110px;
  height: auto;
}
section .headingBox_sub.right {
  left: auto;
  right: -160px;
}
section .mainTxt {
  font-size: 2.1rem;
  margin-bottom: 24px;
}
section .mamechishiki {
  padding-top: 3%;
}

.intro {
  background-color: #F6F6F2;
  position: relative;
  padding: 7% 0 10%;
}
.intro__catch {
  font-size: 5.2rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}
.intro__body > p {
  padding-top: 32px;
  font-size: 2.3rem;
  text-align: center;
}
.intro__imgArea {
  display: grid;
  place-items: center;
  margin: 5% 1%;
  height: 100%;
  -moz-column-gap: 1%;
       column-gap: 1%;
  row-gap: 4%;
  grid-template-columns: 16% 16% 32% 16% 16%;
  grid-template-rows: 46% 46%;
  grid-template-areas: "lefttop lefttop center righttop-1 righttop-2" "leftbottom-1 leftbottom-2 center rightbottom rightbottom";
}
.intro__imgArea > div {
  height: 100%;
  width: 100%;
}
.intro__imgArea > * img {
  border-radius: 20px;
  vertical-align: bottom;
  height: 100%;
  width: 100%;
}
.intro__imgArea .lefttop {
  grid-area: lefttop;
}
.intro__imgArea .center {
  grid-area: center;
}
.intro__imgArea .righttop-1 {
  grid-area: righttop-1;
}
.intro__imgArea .righttop-2 {
  grid-area: righttop-2;
}
.intro__imgArea .leftbottom-1 {
  grid-area: leftbottom-1;
}
.intro__imgArea .leftbottom-2 {
  grid-area: leftbottom-2;
}
.intro__imgArea .rightbottom {
  grid-area: rightbottom;
}
.intro__imgArea_sp {
  display: none;
}
.intro .pageNav {
  position: absolute;
  bottom: -11.5%;
  left: 50%;
  translate: -50%;
  z-index: 10;
  background-color: #fff;
  border: 2px solid #F6F6F2;
  border-radius: 20px;
  padding: 2% 3.5%;
  width: 45%;
}
.intro .pageNav h2 {
  position: absolute;
  left: -24px;
  top: -24px;
  background-color: #E6785D;
  color: #fff;
  font-size: 3.6rem;
  padding: 8px 12px;
  line-height: 1;
  font-weight: 500;
}
.intro .pageNav_menu {
  font-size: 2.1rem;
  letter-spacing: 1px;
  margin: 0;
}
.intro .pageNav_menu li {
  border-bottom: 1px solid #E3E3DD;
}
.intro .pageNav_menu li:last-child {
  border-bottom: none;
}
.intro .pageNav_menu li a {
  padding: 8px 0;
  display: block;
}
.intro .pageNav_menu li a > span {
  margin-right: 16px;
}

.idx__what {
  padding: 15% 0 0;
  padding-bottom: 0;
  background-image: linear-gradient(to right, #F6F6F2 1px, transparent 1px), linear-gradient(to bottom, #F6F6F2 1px, transparent 1px);
  background-size: 20px 20px;
}
.idx__why {
  background-image: linear-gradient(to right, #F6F6F2 1px, transparent 1px), linear-gradient(to bottom, #F6F6F2 1px, transparent 1px);
  background-size: 20px 20px;
}
.idx__why_imgArea {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 32px;
  padding: 18px 0 36px;
}
.idx__example {
  background-color: #5F5786;
  color: #fff;
}
.idx__example .whitebg-txt {
  color: #5F5786;
}
.idx__example .mainTxt {
  margin-bottom: 5%;
}
.idx__example_cardWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 32px;
}
.idx__example_cardWrap li {
  background-color: #423E5E;
  padding: 5% 8%;
  border-radius: 20px;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
}
.idx__example_cardWrap li .card-heading {
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  line-height: 1;
  display: flex;
  align-items: end;
}
.idx__example_cardWrap li .card-heading h3 {
  font-size: 2.7rem;
  font-weight: 400;
}
.idx__example_cardWrap li .card-heading .icon {
  display: inline-block;
  margin-right: 6px;
}
.idx__example_cardWrap li .card-heading .icon img {
  height: 50px;
  width: auto;
}
.idx__example_cardWrap li .card-txt {
  margin-top: 5%;
  font-size: 1.8rem;
  font-weight: 400;
}
.idx__example .mamechishiki {
  margin-top: 5%;
}
.idx__example .inner_900 {
  position: relative;
}
.idx__example .inner_900 .example_pattern_1 {
  position: absolute;
  right: -35%;
  top: 15%;
}
.idx__example .inner_900 .example_pattern_2 {
  position: absolute;
  left: -35%;
  bottom: 15%;
  rotate: 180deg;
}
.idx__how-to {
  background-color: #FFA893;
  color: #fff;
}
.idx__how-to .whitebg-txt {
  color: #E6785D;
}
.idx__how-to .mainTxt {
  margin-bottom: 5%;
}
.idx__how-to_listWrap {
  background-color: #fff;
  padding: 6%;
  border-radius: 20px;
}
.idx__how-to_listWrap .listConte {
  border-bottom: 1px solid #FFB29F;
  display: grid;
  grid-template-columns: 76px auto;
  gap: 32px;
  padding: 32px 0;
  place-items: center;
  justify-items: start;
  z-index: 1;
}
.idx__how-to_listWrap .listConte:last-child {
  border-bottom: none;
}
.idx__how-to_listWrap .listConte_txt h3 {
  color: #E6785D;
  font-size: 2.7rem;
  padding-bottom: 16px;
}
.idx__how-to_listWrap .listConte_txt > p {
  color: #272727;
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: -1px;
}
.idx__how-to .mamechishiki {
  margin-top: 10%;
}
.idx__how-to .inner_900 {
  position: relative;
}
.idx__how-to .inner_900 .how-to_pattern_1 {
  position: absolute;
  left: -25%;
  top: 17%;
}
.idx__how-to .inner_900 .how-to_pattern_2 {
  position: absolute;
  right: -25%;
  bottom: 16%;
}

@media (min-width: 767px) and (max-width: 960px) {
  .intro .pageNav {
    padding: 1% 2%;
    width: 60%;
  }
  .intro .pageNav h2 {
    font-size: 2.4rem;
  }
  .intro .pageNav_menu li a {
    padding: 4px 0;
  }
  .idx__what {
    padding: 15% 0 0;
    padding-bottom: 0;
    background-image: linear-gradient(to right, #F6F6F2 1px, transparent 1px), linear-gradient(to bottom, #F6F6F2 1px, transparent 1px);
    background-size: 20px 20px;
  }
  .idx__why {
    background-image: linear-gradient(to right, #F6F6F2 1px, transparent 1px), linear-gradient(to bottom, #F6F6F2 1px, transparent 1px);
    background-size: 20px 20px;
  }
  .idx__why_imgArea {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 32px;
    padding: 18px 0 36px;
  }
  .idx__example {
    background-color: #5F5786;
    color: #fff;
  }
  .idx__example .whitebg-txt {
    color: #5F5786;
  }
  .idx__example .mainTxt {
    margin-bottom: 5%;
  }
  .idx__example_cardWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 32px;
  }
  .idx__example_cardWrap li {
    background-color: #423E5E;
    padding: 5% 8%;
    border-radius: 20px;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
  }
  .idx__example_cardWrap li .card-heading {
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
    line-height: 1;
    display: flex;
    align-items: end;
  }
  .idx__example_cardWrap li .card-heading h3 {
    font-size: 2.7rem;
    font-weight: 400;
  }
  .idx__example_cardWrap li .card-heading .icon {
    display: inline-block;
    margin-right: 6px;
  }
  .idx__example_cardWrap li .card-heading .icon img {
    height: 50px;
    width: auto;
  }
  .idx__example_cardWrap li .card-txt {
    margin-top: 5%;
    font-size: 1.8rem;
    font-weight: 400;
  }
  .idx__example .mamechishiki {
    margin-top: 5%;
  }
  .idx__example .inner_900 {
    position: relative;
  }
  .idx__example .inner_900 .example_pattern_1 {
    position: absolute;
    right: -35%;
    top: 15%;
  }
  .idx__example .inner_900 .example_pattern_2 {
    position: absolute;
    left: -35%;
    bottom: 15%;
    rotate: 180deg;
  }
  .idx__how-to {
    background-color: #FFA893;
    color: #fff;
  }
  .idx__how-to .whitebg-txt {
    color: #E6785D;
  }
  .idx__how-to .mainTxt {
    margin-bottom: 5%;
  }
  .idx__how-to_listWrap {
    background-color: #fff;
    padding: 6%;
    border-radius: 20px;
  }
  .idx__how-to_listWrap .listConte {
    border-bottom: 1px solid #FFB29F;
    display: grid;
    grid-template-columns: 76px auto;
    gap: 32px;
    padding: 32px 0;
    place-items: center;
    justify-items: start;
    z-index: 1;
  }
  .idx__how-to_listWrap .listConte:last-child {
    border-bottom: none;
  }
  .idx__how-to_listWrap .listConte_txt h3 {
    color: #E6785D;
    font-size: 2.7rem;
    padding-bottom: 16px;
  }
  .idx__how-to_listWrap .listConte_txt > p {
    color: #272727;
    font-size: 2.1rem;
    font-weight: 400;
    letter-spacing: -1px;
  }
  .idx__how-to .mamechishiki {
    margin-top: 10%;
  }
  .idx__how-to .inner_900 {
    position: relative;
  }
  .idx__how-to .inner_900 .how-to_pattern_1 {
    position: absolute;
    left: -25%;
    top: 17%;
  }
  .idx__how-to .inner_900 .how-to_pattern_2 {
    position: absolute;
    right: -25%;
    bottom: 16%;
  }
}
@media (max-width: 767px) {
  .intro {
    padding: 10% 5% 8%;
  }
  .intro__catch {
    font-size: 2.6rem;
    letter-spacing: -1px;
  }
  .intro__body > p {
    font-size: 1.8rem;
  }
  .intro__imgArea {
    display: none;
  }
  .intro__imgArea_sp {
    display: block;
    margin: 10% 0 45%;
  }
  .intro .pageNav {
    bottom: -8%;
    border-radius: 5px;
    padding: 0;
    width: 90%;
  }
  .intro .pageNav h2 {
    position: static;
    text-align: center;
    border-radius: 5px 5px 0 0;
    font-size: 2.6rem;
  }
  .intro .pageNav_menu {
    font-size: 1.7rem;
    padding: 3% 5%;
  }
  .intro .pageNav_menu li a {
    letter-spacing: -0.5px;
  }
  .intro .pageNav_menu li a > span {
    margin-right: 4px;
  }
  .wrapper .inner_900 {
    max-width: 100%;
    padding: 0 7%;
  }
  .wrapper .pc-only {
    display: none;
  }
  .wrapper .sp-only {
    display: block;
  }
  section .headingBox {
    text-align: center;
  }
  section .headingBox_main {
    font-size: 2.7rem;
    display: inline;
    padding-bottom: 0;
    line-height: 1.4;
    border-bottom: 3px #E6785D dotted;
  }
  section .headingBox_main > span {
    font-size: 4.5rem;
  }
  section .headingBox_main::after {
    height: 3px;
    background-image: none;
  }
  section .headingBox_main.whitebg-txt {
    padding: 12px 4px 0;
    line-height: 1.8;
    border-bottom: none;
  }
  section .headingBox_main.whitebg-txt .sp-space {
    padding: 0 24px;
    display: block;
  }
  section .headingBox_sub {
    position: relative;
    left: 0;
    margin: 0 auto;
    width: 150px;
    height: auto;
    margin-bottom: -10px;
  }
  section .headingBox_sub.right {
    right: 0;
  }
  section .mainTxt {
    font-size: 1.6rem;
  }
  section .mainTxt p {
    line-height: 1.75;
  }
  .idx__what {
    padding: 35% 0 0;
  }
  .idx__why_imgArea {
    gap: 8px;
    padding: 0 0 24px;
  }
  .idx__example .whitebg-txt {
    z-index: 1;
  }
  .idx__example_cardWrap {
    display: block;
  }
  .idx__example_cardWrap li {
    border-radius: 10px;
    margin-bottom: 24px;
  }
  .idx__example_cardWrap li .card-heading h3 {
    font-size: 2.1rem;
    white-space: nowrap;
    font-weight: bold;
  }
  .idx__example_cardWrap li .card-heading .icon {
    margin-right: 4px;
  }
  .idx__example_cardWrap li .card-heading .icon img {
    height: 40px;
  }
  .idx__example_cardWrap li .card-txt {
    font-size: 1.6rem;
  }
  .idx__example_cardWrap li .card-txt p {
    line-height: 1.6;
  }
  .idx__example .inner_900 .example_pattern_1 {
    right: 0;
    top: -0.5%;
    width: 28%;
    height: auto;
  }
  .idx__example .inner_900 .example_pattern_2 {
    left: 0;
    bottom: -0.5%;
    width: 28%;
    height: auto;
  }
  .idx__how-to_listWrap .listConte {
    display: flex;
    padding: 24px 0;
  }
  .idx__how-to_listWrap .listConte_txt_titleWrap {
    display: flex;
    align-items: flex-end;
    padding-bottom: 8px;
  }
  .idx__how-to_listWrap .listConte_txt_titleWrap span {
    margin-right: 6px;
  }
  .idx__how-to_listWrap .listConte_txt_titleWrap span img {
    width: 40px;
    height: auto;
  }
  .idx__how-to_listWrap .listConte_txt h3 {
    font-size: 2.1rem;
    padding-bottom: 0;
  }
  .idx__how-to_listWrap .listConte_txt > p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .idx__how-to .inner_900 .how-to_pattern_1 {
    left: auto;
    right: 0;
    top: 0;
    width: 22%;
    height: auto;
  }
  .idx__how-to .inner_900 .how-to_pattern_2 {
    right: 0;
    bottom: 1%;
    width: 22%;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */