@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Zen+Maru+Gothic:wght@400;500;700;900&family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap');

/*-------------------------------------------
Reset
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{display:block;}
body{line-height:1;}
ol, ul{list-style:none;}
blockquote, q{quotes:none;}
blockquote:before, blockquote:after,
q:before, q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}

/*form*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

html {
  width: 100%;
  height: 100%;
  font-size: calc(100vw / 37.5);
}

body {
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.0rem;
  color: #555;
  line-height: 1.88;
  text-align: justify;
  overflow-y: scroll;
  overflow-x: hidden;
}
body.bodyFix {
  position: fixed;
  left: 0;
  overflow: hidden;
}

main {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  html {
    font-size: calc(100vw / 60);
  }
}

@media screen and (min-width: 1280px) {
  html {
    font-size: 13.33px; /* メインエリア基準 */
  }
}



/*-------------------------------------------
Setting
--------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
}

/* font family */
.fontMaru {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.fontKaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.fontRound {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* display */
.onlyPC {
  display: none !important;
}

@media screen and (min-width: 1280px) {
  a {
    transition: .3s linear;
  }

	.onlyPC {
    display: block !important;
  }
	.onlySP {
    display: none !important;
  }
}



/*-------------------------------------------
pc base
--------------------------------------------*/
.pcLeft-btm {
  display: none;
}

@media screen and (min-width: 768px) {
  .pcWrap {
    position: relative;
    padding-right: calc(100% - 37.5rem);
    background-color: #FDEBE8;
    overflow: hidden;
  }

  .pcMain {
    position: relative;
    width: 37.5rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 1280px) {
  .pcWrap {
    max-width: 1440px;
    margin: 0 auto;
    padding-right: 300px;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, .1), -4px -4px 5px rgba(0, 0, 0, .1);
  }

  .pcMain {
    width: 500px;
  }

  .pcLeft {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(100% - 800px);
    background-color: #FBC9C3;
    overflow: hidden;
  }
  .pcLeft {
    left: 0;
    width: calc(100% - 800px);
  }
  .pcLeft-top {
    position: absolute;
    top: -100vh;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding-top: 35px;
    background: url('../img/top_bg.svg') top center / 100% auto no-repeat;
    opacity: 0;
    transition: top .5s cubic-bezier(0.65, 0, 0.35, 1), opacity .5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
  }
  .pcLeft-btm {
    position: absolute;
    top: 100vh;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding-top: 35px;
    opacity: 0;
    transition: top .5s cubic-bezier(0.65, 0, 0.35, 1), opacity .5s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
  }
  .pcLeft-top.active,
  .pcLeft-btm.active {
    top: 0;
    opacity: 1;
    z-index: 1;
  }
}

@media screen and (min-width: 1440px) {
  .pcLeft {
    left: calc((100% - 1440px) / 2);
    width: calc(1440px - 800px);
  }
  .pcLeft-btm {
    min-height: 620px;
  }
}



/*-------------------------------------------
pc nav
--------------------------------------------*/
.pcNav {
  display: none;
}

@media screen and (min-width: 768px) {
  .pcNav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 37.5rem);
    font-size: 1.3rem;
    font-weight: 500;
    color : #F57969;
    text-align: center;
    overflow: hidden;
    z-index: 11;
  }
  .pcNav-list {
    width: 100%;
    margin: 0 auto;
  }
  .pcNav-list li {
    position: relative;
  }
  .pcNav-list li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 13.8rem;
    height: .3rem;
    margin: 0 auto;
    background: linear-gradient(to right, #fff .3rem, transparent .3rem) top left / .8rem .3rem repeat-x;
    z-index: 0;
  }
  .pcNav-list li p {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 1.8rem;
    transition: all .3s ease-in-out;
  }
  .pcNav-list li p span {
    letter-spacing: .1em;
  }
  .pcNav-list li p::before {
    content: '【';
    margin-right: 1em;
  }
  .pcNav-list li p::after {
    content: '】';
    margin-left: 1em;
  }
  .pcNav-list li a {
    display: block;
    padding: .6rem 0 .9rem;
  }
}

@media screen and (min-width: 1280px) {
  .pcNav {
    right: 0;
    width: 300px;
    padding-top: 40px;
    padding-right: 13px;
    font-size: 13px;
  }
  .pcNav-list li::before {
    width: 138px;
    height: 3px;
    background: linear-gradient(to right, #fff 3px, transparent 3px) top left / 8px 3px repeat-x;
  }
  .pcNav-list li p {
    padding-bottom: 18px;
  }
  .pcNav-list li a {
    padding: 6px 0 9px;
    transition: .3s ease-out;
  }
  .pcNav-list li a:hover {
    letter-spacing: .2em;
  }
}

@media screen and (min-width: 1440px) {
  .pcNav {
    right: calc((100% - 1440px) / 2);
  }
}



/*-------------------------------------------
header
--------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 2.6rem 0 2rem;
  background-color: #fff;
  overflow: hidden;
  transition: top .5s;
  z-index: 99;
}
.header-logo {
  position: relative;
  width: 17.6rem;
  opacity: 1;
  transition: opacity .3s;
  z-index: 10;
}

.header-navBtn {
  position: relative;
  width: 2.2rem;
  height: 1.6rem;
  cursor: pointer;
  z-index: 20;
}
.header-navBtn span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: .12rem;
  background-color: #666464;
  border-radius: .12rem;
  transition: all .5s;
}
.header-navBtn span:nth-child(1) {
  top: 0;
}
.header-navBtn span:nth-child(2) {
  top: .7rem;
}
.header-navBtn span:nth-child(3) {
  bottom: 0;
}
.header-navBtn.open span:nth-child(1) {
  transform: rotate(-45deg) translateY(.55em) translateX(-.55em);
}
.header-navBtn.open span:nth-child(2) {
  left: 80%;
  opacity: 0;
  animation: navBtnOpen .8s forwards;
}
.header-navBtn.open span:nth-child(3) {
  transform: rotate(45deg) translateY(-.5em) translateX(-.5em);
}
@keyframes navBtnOpen {
  100% {
    height: 0;
  }
}

.header-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5rem 0 10rem;
  background-color: #fff;
  transition: all .5s;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 19;
}
.header-nav.close {
  transform: translateX(110vw);
}
.header-nav.open {
  transform: translateX(0);
}
.header-nav-list > li:not(:first-child) {
  margin-top: 1.4rem;
}
.header-nav-list > li:nth-last-child(-n+2) {
  margin-top: 0;
}
.header-nav-list li a .blank {
  padding-right: 2.5rem;
  background: url('../img/blank.svg') center right / 1.2rem auto no-repeat;
}
.header-nav-list > li > a,
.header-nav-list > li > p {
  display: block;
  padding-left: 4rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.header-nav-list > li:nth-last-child(-n+3) > a {
  font-weight: 400;
}
.header-nav-list-about ul {
  margin-top: 1.7rem;
}
.header-nav-list-about ul li {
  padding-left: 6.5rem;
}
.header-nav-list-about ul li:not(:first-child) {
  margin-top: .7rem;
}
.header-nav-list-about ul li a {
  padding-left: 2rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iX+ODrOOCpOODpOODvF8yIiBkYXRhLW5hbWU9IuODrOOCpOODpOODvCAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA3LjMzIDkuMjUiPiA8ZGVmcz4gPHN0eWxlPiAuY2xzLTEgeyBmaWxsOiAjNTU1OyB9IDwvc3R5bGU+IDwvZGVmcz4gPGcgaWQ9Il/jg6Hjg4vjg6Xjg7wiIGRhdGEtbmFtZT0i44Oh44OL44Ol44O8Ij4gPHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMCwuNzR2Ny43N2MwLC41OS42Ni45NCwxLjE1LjYybDUuODUtMy44OGMuNDQtLjI5LjQ0LS45NCwwLTEuMjNMMS4xNS4xMmMtLjQ5LS4zMy0xLjE1LjAzLTEuMTUuNjJaIi8+IDwvZz48L3N2Zz4=");
  background-position: center left;
  background-size: .7rem auto;
  background-repeat: no-repeat;
  font-size: 1.6rem;
  font-weight: 500;
}
.header-nav-list li.header-nav-list-group {
  margin-top: 4rem;
  padding-bottom: .6rem;
}
.header-nav-list-group ul {
  margin-top: 1rem;
}
.header-nav-list-group ul li a,
.header-nav-list-group p {
  display: block;
  padding-left: 4rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -.1em;
}
.header-nav-list-group p {
  padding-left: 4rem;
}
.header-nav-list li a.header-nav-list-insta {
  width: 2.5rem;
  margin: 1rem 0 0 4rem;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .header {
    width: 37.5rem;
  }

  .header-navBtn {
    position: fixed;
    top: 1.7rem;
    right: 2.2rem;
  }
  .header-navBtn span {
    height: .13rem;
    background-color: #848383;
  }

  .header-nav-list {
    width: 40rem;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1280px) {
  .header {
    width: 100%;
    max-width: 1440px;
    height: 50px;
    margin: 0 auto;
    padding: 0 26px 0 25px;
    background-color: transparent;
  }
  .header-logo {
    width: 176px;
  }

  .header-navBtn {
    right: 22px;
    width: 22px;
    height: 16px;
  }
  .header-navBtn span {
    height: 1px;
    border-radius: 1px;
  }
  .header-navBtn span:nth-child(2) {
    top: 7px;
  }
  .header-navBtn.open span:nth-child(1) {
    transform: rotate(-45deg) translateY(5px) translateX(-5px);
  }
  .header-navBtn.open span:nth-child(3) {
    transform: rotate(45deg) translateY(-6px) translateX(-6px);
  }

  .header-nav {
    padding: 50px 0 100px;
  }
  .header-nav-list > li:not(:first-child) {
    margin-top: 14px;
  }
  .header-nav-list li a {
    transition: .3s ease-out;
  }
  .header-nav-list li a:hover {
    letter-spacing: .1em;
  }
  .header-nav-list li a .blank {
    padding-right: 25px;
    background-size: 12px auto;
  }
  .header-nav-list > li > a,
  .header-nav-list > li > p {
    padding-left: 40px;
    font-size: 16px;
  }
  .header-nav-list-about ul {
    margin-top: 17px;
  }
  .header-nav-list-about ul li {
    padding-left: 65px;
  }
  .header-nav-list-about ul li:not(:first-child) {
    margin-top: 7px;
  }
  .header-nav-list-about ul li a {
    padding-left: 20px;
    background-size: 7px auto;
    font-size: 16px;
  }
  .header-nav-list li.header-nav-list-group {
    margin-top: 40px;
    padding-bottom: 6px;
  }
  .header-nav-list-group ul {
    margin-top: 10px;
  }
  .header-nav-list-group ul li a,
  .header-nav-list-group p {
    padding-left: 40px;
    font-size: 14px;
    letter-spacing: -.04em;
  }
  .header-nav-list-group p {
    padding-left: 40px;
  }
  .header-nav-list-group ul li a:hover {
    letter-spacing: 0;
  }
  .header-nav-list li a.header-nav-list-insta {
    width: 25px;
    margin: 10px 0 0 40px;
  }
}

@media screen and (min-width: 1440px) {
  .header-navBtn {
    right: calc(((100% - 1440px) / 2) + 22px);
  }
}



/*-------------------------------------------
cta
--------------------------------------------*/
.cta {
  padding: 2.1rem 0 2.5rem;
  background-color: #EFEFEF;
}
.aboutUs + .cta {
  padding-bottom: 3.5rem;
}
.cta-txt {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.cta-txt-01,
.cta-txt-02 {
  display: inline-block;
  width: 13.8rem;
  margin-right: .7rem;
  margin-bottom: .3rem;
  padding: .6rem 0 .8rem;
  background-color: #fff;
  border-radius: .7rem;
  color: #F57969;
  line-height: 1;
}
.cta-txt-02 {
  width: 13.2rem;
  margin-right: 0;
  margin-left: .7rem;
  color: #26B196;
}
.cta-txt-or {
  font-size: 1.8rem;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28.6rem;
  height: 5.6rem;
  margin: 1rem auto 0;
  padding: 0 0 0 1rem;
  background-color: #F57969;
  border: .3rem solid #fff;
  border-radius: 2.8rem;
  font-weight: 700;
}
.cta-btn span {
  display: inline-block;
  padding-right: 2.6rem;
  background: url('../img/btn_arrow.svg') top 1.4rem right / .7rem auto no-repeat;
  font-size: 1.9rem;
  color: #fff;
  letter-spacing: .02em;
}
.cta-img {
  width: 29.8rem;
  margin: 2.2rem auto 2rem;
}
.cta-tel {
  display: block;
  width: 24rem;
  margin: 2rem auto 0;
}

@media screen and (min-width: 1280px) {
  .cta-btn:hover {
    background-color: #fff;
    border-color: #F57969;
  }
  .cta-btn:hover span {
    background-image: url('../img/btn_arrow_hover.svg');
    color: #F57969;
  }

  .pcLeft .cta {
    width: 356px;
    margin: 32px auto 0;
    padding: 18px 0 22px;
    border-radius: 22px;
  }
  .pcLeft .cta-txt {
    font-size: 16px;
    line-height: 1.7;
  }
  .pcLeft .cta-txt-01,
  .pcLeft .cta-txt-02 {
    width: 131px;
    margin-right: 4px;
    margin-bottom: 5px;
    padding: 6px 0 8px;
    border-radius: 7px;
    font-size: 15px;
  }
  .pcLeft .cta-txt-02 {
    width: 125px;
    margin-right: 0;
    margin-left: 4px;
  }
  .pcLeft .cta-txt-or {
    font-size: 18px;
  }
  .pcLeft .cta-btn {
    width: 271px;
    height: 54px;
    margin-top: 5px;
    padding-bottom: 0;
    border-width: 3px;
    border-radius: 27px;
  }
  .pcLeft .cta-btn span {
    padding-right: 22px;
    padding-bottom: .2em;
    background-position: top .7em right;
    background-size: 7px auto;
    font-size: 18px;
    letter-spacing: 0;
  }
  .pcLeft .cta-tel {
    width: 228px;
    margin-top: 13px;
  }
}



/*-------------------------------------------
top
--------------------------------------------*/
.top {
  padding-top: 5rem;
  background-color: #FAC3BB;
}
.top-mv {
  padding-top: 2.4rem;
}
.top-mv-img {
  width: 28.5rem;
  margin: 0 auto;
}

@media screen and (min-width: 1280px) {
  .top {
    padding-top: 0;
    background-color: transparent;
    transform-origin: top center;
  }
  .top-mv {
    padding-top: 0;
  }
  .top-mv-img {
    width: 95%;
    max-width: 372px;
  }
}



/*-------------------------------------------
comic
--------------------------------------------*/
.comic {
  padding-top: 3.3rem;
  background: url('../img/comic_prof_bg.svg') top 1.5rem left 1rem / 34.8rem auto no-repeat #FEF4F3;
}
.comic-ttl {
  padding-left: 1.5rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #F57969;
  text-align: center;
  line-height: 1.65;
  letter-spacing: .02em;
}
.comic-txt {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  letter-spacing: .02em;
}
.comic-prof {
  width: 33.6rem;
  margin: 2rem auto 0;
}

.comic-main {
  margin-top: 3.2rem;
  background-color: #fff;
}
.comic-main-img {
  width: 100%;
}

@media screen and (min-width: 1280px) {
  .comic {
    padding-top: 4.3rem;
    background-position: top 2.2rem left 1rem;
  }
  .comic-ttl {
    line-height: 1.6;
  }
  .comic-txt {
    margin-top: 1.1rem;
  }

  .comic-main {
    margin-top: 2.5rem;
  }
}



/*-------------------------------------------
storyTop
--------------------------------------------*/
@media screen and (min-width: 1280px) {
  .storyTop {
    width: 100%;
    padding: 0 0 0 6px;
    transform-origin: top center;
  }
  .storyTop-img {
    width: 95%;
    max-width: 552px;
    margin: 0 auto;
  }
}



/*-------------------------------------------
story
--------------------------------------------*/
.story {
  padding-top: 2.5rem;
  background-color: #FAECE9;
}
.story-ttl {
  font-size: 2.8rem;
  font-weight: 500;
  color: #F57969;
  text-align: center;
  transform: translateX(.5rem);
}
.story-txt {
  margin-top: .3rem;
  padding-left: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: .04em;
  transform: translateX(-.5rem);
}
.story-img {
  width: 32rem;
  margin: .5rem auto 0;
  transform: translateX(-.5rem);
}
.story .cta-btn {
  width: 23.8rem;
  height: 4.8rem;
}
.story .cta-btn span {
  padding-right: 2.5rem;
  padding-left: 0.5rem;
  background-position: top 1rem right;
  font-size: 1.6rem;
}
.story-attention {
  margin-top: .5rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #F57969;
  text-align: center;
  letter-spacing: .02em;
}

.story-next {
  margin-top: 2.5rem;
  padding: 2.8rem 0 3rem;
  background-color: #fff;
}
.story-next-ttl {
  position: relative;
  width: 21rem;
  margin-left: 2rem;
  z-index: 0;
}
.story-next-list {
  position: relative;
  z-index: 1;
}
.story-next-list ul {
  display: flex;
  align-items: center;
  gap: 0 1.7rem;
  margin-bottom: 2.4rem;
}
.story-next-list-img.next01 { width: 22.8rem; margin-left: 7rem; }
.story-next-list-img.next02 { width: 19.3rem; }
.story-next-list-img.next03 { width: 26.6rem; }
.story-next-list-img.next04 { width: 23rem; }
.story-next-list-img.next05 { width: 23rem; }
.story-next-list-img.next06 { width: 21.7rem; }
.story-next-list-img.next07 { width: 23.3rem; margin-right: 7rem; }
.story-next-list .simplebar-track.simplebar-horizontal {
  left: 11%;
  right: 11%;
  height: .3rem;
  background-color: #E2F9F8;
}
.story-next-list .simplebar-visible,
.story-next-list .simplebar-scrollbar.simplebar-visible:before {
  background-color: #75DBD5;
}

@media screen and (min-width: 1280px) {
  .story {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
}



/*-------------------------------------------
aboutSMR
--------------------------------------------*/
.aboutSMR {
  padding-bottom: 3.3rem;
  background-color: #E9F7F4;
}
.aboutSMR-txtR {
  padding: 3.4rem 3.5rem 0;
  overflow: hidden;
}
.aboutSMR-txtR-img {
  float: right;
  width: 8.7rem;
  margin-left: .5rem;
  transform: translateX(1rem);
}
.aboutSMR-txtL {
  position: relative;
  display: flex;
  margin-top: .5rem;
  padding: 0 3.5rem;
}
.aboutSMR-txtL > div {
  height: calc((1.3rem * 2.15) * 6);
}
.aboutSMR-txtL-space {
  display: flex;
  align-items: flex-end;
  float: left;
  shape-outside: inset(calc(100% - 11rem) 0 0);
  width: 9.8rem;
  height: 100%;
}
.aboutSMR-txtL-img {
  position: absolute;
  left: 2.8rem;
  bottom: -.3rem;
  width: 9.1rem;
}
.aboutSMR-txtR p,
.aboutSMR-txtL p {
  font-size: 1.3rem;
  font-weight: 500;
  color: #595757;
  line-height: 2.15;
  letter-spacing: -.07em;
}
.aboutSMR-txtR p .half,
.aboutSMR-txtL p .half {
  letter-spacing: -.5em;
}
.aboutSMR-txtL p .line {
  color: #f57969;
  background: linear-gradient(180deg, rgba(255, 237, 124, 0) 0%, rgba(255, 237, 124, 0) 54%, rgba(255, 237, 124, 1) 55%, rgba(255, 237, 124, 1) 100%);
}

.aboutSMR-desc {
  clear: both;
  width: 32.8rem;
  margin: 3.3rem auto 0;
  padding: 1.3rem 2.5rem 1.6rem;
  background-color: #fff;
  border: .1rem solid #F79487;
  border-radius: 1.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #595757;
  letter-spacing: -.04em;
  line-height: 1.88;
}
.aboutSMR-desc p:first-child {
  margin-bottom: 1.3rem;
  border-bottom: .1rem solid #F57969;
  font-size: 1.7rem;
  font-weight: 700;
  color: #F57969;
  letter-spacing: -.045em;
}
.aboutSMR-desc a {
  display: inline-block;
  padding-right: 1.5rem;
  background: url(../img/blank.svg) center right / 1.2rem auto no-repeat;
  text-decoration: underline;
}
.aboutSMR-foot {
  width: 30.2rem;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: .02em;
}

@media screen and (min-width: 1280px) {
  .aboutSMR-txtR-img {
    transform: translate(1rem, -.5rem);
  }
  .aboutSMR-desc {
    margin-top: 3rem;
  }
  .aboutSMR-desc a:hover {
    text-decoration: none;
  }
}



/*-------------------------------------------
suggestion
--------------------------------------------*/
.suggestion {
  padding: 4rem 0 0;
  background: url('../img/suggestion_bg.svg') top 4.5rem right 2.5rem / 8.1rem auto no-repeat #FFFDF3;
}
.suggestion-ttl {
  margin-left: 3.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #F57969;
  line-height: 1.4;
}
.suggestion-ttl span {
  letter-spacing: -.03em;
}
.suggestion-txt {
  margin: 1.5rem 0 0 3.5rem;
  font-size: 1.5rem;
  letter-spacing: -.05em;
}
.suggestion-typeTtl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #F57969;
  letter-spacing: -.04em;
}
.suggestion-typeTtl::before,
.suggestion-typeTtl::after {
  content: '';
  display: inline-block;
  width: .3rem;
  height: 1.45em;
  margin: 0 1.5rem;
  background-color: #F57969;
  transform: rotate(-23deg);
}
.suggestion-typeTtl::after {
  margin-left: 1rem;
  transform: rotate(23deg);
}

.suggestion-type01,
.suggestion-type02 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 29.8rem;
  height: 6.6rem;
  margin: 1.5rem auto 0;
  padding: 0 .5rem;
  background-color: #8EDCCA;
  border-radius: 3.3rem;
}
.suggestion-type02 {
  background-color: #FAB7AE;
}
.suggestion-type01::after,
.suggestion-type02::after {
  content: '';
  position: absolute;
  top: .5rem;
  bottom: 0;
  width: 14.3rem;
  height: 5.6rem;
  background-color: #34C0A0;
  border-radius: 2.8rem;
  z-index: 0;
  transition: left .3s ease-out;
}
.suggestion-type01[data-active="a"]::after {
  left: .5rem;
}
.suggestion-type01[data-active="b"]::after {
  left: 14.8rem;
}
.suggestion-type02::after {
  width: 9.6rem;
  background-color: #F57969;
}
.suggestion-type02[data-active="1"]::after {
  left: .5rem;
}
.suggestion-type02[data-active="2"]::after {
  left: 10.1rem;
}
.suggestion-type02[data-active="3"]::after {
  left: 19.7rem;
}
.suggestion-type01 li,
.suggestion-type02 li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.3rem;
  height: 5.6rem;
  padding-bottom: .3rem;
  border-radius: 2.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  transition: .3s;
  z-index: 1;
  cursor: pointer;
}
.suggestion-type02 li {
  width: 9.6rem;
  font-size: 1.3rem;
}
.suggestion-type02 li:not(:first-child) {
  letter-spacing: -.05em;
}

.suggestion-typeCross {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  margin: 1.4rem auto 2rem;
}
.suggestion-typeCross::before,
.suggestion-typeCross::after {
  content: '';
  position: absolute;
  top: 0;
  left: .9rem;
  width: .4rem;
  height: 100%;
  background-color: #aaa;
  transform: rotate(-45deg);
}
.suggestion-typeCross::after {
  transform: rotate(45deg);
}

.suggestion-column {
  display: none;
  position: relative;
  width: 33.8rem;
  margin: 6.8rem auto 0;
  padding: 3rem 2.5rem 3.5rem;
  background-color: #F4F4F5;
  border-radius: .5rem;
}
.suggestion-column.active {
  display: block;
}
.suggestion-column::before {
  content: '';
  position: absolute;
  top: -3rem;
  left: -.5rem;
  width: 15.2rem;
  height: 4.8rem;
  background: url('../img/suggestion_column.svg') top left / contain no-repeat;
}
.suggestion-column-type {
  border-radius: .5rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: .015em;
}
.suggestion-column[data-color="red"] .suggestion-column-type {
  background-color: #EB9688;
}
.suggestion-column[data-color="grn"] .suggestion-column-type {
  background-color: #52C9AE;
}
.suggestion-column-ttl {
  margin-top: 2rem;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -.05em;
}
.suggestion-column[data-type="2"] .suggestion-column-ttl {
  letter-spacing: -.06em;
}
.suggestion-column[data-type="3"] .suggestion-column-ttl {
  letter-spacing: -.045em;
}
.suggestion-column-prof {
  position: relative;
  margin-top: 1.8rem;
}
.suggestion-column-prof-txt01 {
  font-size: 1.3rem;
  letter-spacing: -.08em;
}
.suggestion-column-prof-txt01 span {
  font-size: 1.5rem;
  letter-spacing: -.04em;
}
.suggestion-column-prof-txt02 {
  margin-top: -.5rem;
  font-size: 1.9rem;
  letter-spacing: .2em;
}
.suggestion-column-prof-img {
  position: absolute;
  top: .3rem;
  right: .3rem;
  width: 7.7rem;
  height: 7.7rem;
}
.suggestion-column-txt {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 2;
  text-align: left;
  letter-spacing: .055em;
  font-feature-settings: "palt";
}
.suggestion-column-prof + .suggestion-column-txt {
  margin-top: 3.7rem;
  letter-spacing: .07em;
}
.suggestion-column-subttl {
  margin-top: 2.5rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.suggestion-column-txt + .suggestion-column-txt {
  margin-top: 3rem;
}
.suggestion-column-img {
  margin-top: 2.7rem;
}
.suggestion-column-attention {
  margin: .8rem 0 0 .8rem;
  font-size: .9rem;
}
.suggestion-column-attention + .suggestion-column-subttl {
  margin-top: 3rem;
}

.suggestion-customer {
  margin-top: 3.5rem;
  padding: 3.5rem 0 5.2rem;
  background-color: #fff;
}
.suggestion-customer-ttl {
  width: 20rem;
  margin-left: 2.2rem;
}
.suggestion-customer-box {
  display: none;
  position: relative;
  width: 31.6rem;
  margin: 9rem auto 0;
  padding: 6.3rem 3.6rem 4.3rem;
  background-color: #FEF2F0;
  border-radius: 5.8rem;
}
.suggestion-customer-box.colorGrn {
  background-color: #EBF9F6;
}
.suggestion-customer-box.active {
  display: block;
}
.suggestion-customer-box-line {
  position: absolute;
  top: -7.5rem;
  right: -1.5rem;
  width: 26.1rem;
  z-index: 1;
}
.suggestion-customer-box-photo {
  width: 97%;
  margin: 0 auto;
  border-radius: .3rem;
  overflow: hidden;
}
.suggestion-customer-box-ttl {
  margin-top: 1rem;
  font-size: 2.3rem;
  font-weight: 700;
  color: #F57969;
  text-align: center;
  letter-spacing: .06em;
  line-height: 1.8;
}
.colorGrn .suggestion-customer-box-ttl {
  color: #1EB996;
}
.suggestion-customer-box-ttl span {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -.06em;
}
.suggestion-customer-box-txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (min-width: 1280px) {
  .suggestion-type01 li,
  .suggestion-type02 li {
    transition: .3s ease-out;
  }
  .suggestion-type01 li:not(.active):hover {
    color: #34C0A0;
  }
  .suggestion-type02 li:not(.active):hover {
    color: #F57969;
  }
}



/*-------------------------------------------
qa
--------------------------------------------*/
.qa {
  padding: 2.8rem 0 3.5rem;
  background: url('../img/qa_ttl.svg') top 3.8rem right 1.4rem / 18.4rem auto no-repeat #F6F6F6;
}
.qa-subttl {
  display: inline-block;
  margin-left: 3.2rem;
  border-bottom: .1rem solid #F57969;
  font-size: 2.2rem;
  font-weight: 500;
  color: #F57969;
  letter-spacing: -.03em;
  transform: rotate(-4.5deg);
}
.qa-ttl {
  margin-top: 1rem;
  margin-left: 3.5rem;
  font-size: 3.5rem;
  font-weight: 500;
  color: #5F5F5F;
  transform: rotate(-2deg);
  line-height: 1.25;
}
.qa-ttl span {
  letter-spacing: -.055em;
}
.qa-txt {
  margin: .5rem 0 0 4.3rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #5D5D5D;
  line-height: 1.7;
  letter-spacing: .015em;
  transform: rotate(-2deg);
}
.qa-box {
  position: relative;
  width: 32.6rem;
  margin: 2rem auto 0;
  padding-bottom: 3rem;
  background-color: #fff;
  border-radius: 1.7rem;
  cursor: pointer;
}
.qa-box-q {
  position: relative;
  padding: 2.2rem 4rem 0 7.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #1EB996;
  line-height: 1.5;
  letter-spacing: .07em;
}
.qa-box-q::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 2.25rem;
  width: 3rem;
  height: 3.8rem;
  background: url('../img/qa_q.svg') top left / contain no-repeat;
}
.qa-box-a {
  transition: height .2s ease-in-out, opacity .5s ease-in-out;
  overflow: hidden;
}
.close .qa-box-a {
  height: 0;
  margin: 0;
  padding: 0 !important;
  opacity: 0;
}
.open .qa-box-a {
  height: auto;
  margin: 3rem 2rem 0;
  padding: 2rem 1.2rem .5rem;
  background: linear-gradient(to right, #6FCBBA .4rem, transparent .4rem) top left / .8rem .3rem repeat-x;
  opacity: 1;
}
.qa-box-a-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: #F57969;
  letter-spacing: .06em;
}
.qa-box-a-txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 2.15;
  letter-spacing: -.035em;
}
.qa-box-btn {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
}
.close .qa-box-btn {
  width: 2.2rem;
  height: 2.2rem;
  background: url('../img/qa_btn_open.svg') center center / contain no-repeat;
}
.open .qa-box-btn {
  width: 7.2rem;
  height: 2.2rem;
  background: url('../img/qa_btn_close.svg') center center / contain no-repeat;
}
.qa-box-a-imgWrap {
  display: flex;
}

.qa-box.qa01 {
  margin-top: 2.5rem;
}
.qa01 .qa-box-q {
  letter-spacing: .02em;
}
.qa01.open .qa-box-a {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.qa01 .qa-box-a .qa-box-a-ttl {
  letter-spacing: .02em;
}
.qa01 .qa-box-a-txt {
  letter-spacing: -.02em;
}
.qa01 .qa-box-a-img {
  display: flex;
  align-items: flex-end;
  float: right;
  shape-outside: inset(calc(100% - 6.4rem) 0 0 0);
  width: 8.2rem;
  height: 100%;
  margin-left: 2rem;
  transform: translate(-.5rem, -1rem);
}

.qa02 .qa-box-q {
  font-size: 2.2rem;
}
.qa02.open .qa-box-a {
  margin-top: 2rem;
}
.qa02 .qa-box-a-ttl {
  padding-left: 4rem;
  background: url('../img/qa_no1.svg') center left / 2.4rem auto no-repeat;
  font-size: 2.1rem;
  letter-spacing: .02em;
  line-height: 1.45;
}
.qa02 .qa-box-a-txt + .qa-box-a-ttl {
  margin-top: 3.2rem;
  background-image: url('../img/qa_no2.svg');
}
.qa02 .qa-box-a-txt {
  margin-top: 1.5rem;
  line-height: 2;
}
.qa02 .qa-box-a-imgWrap .qa-box-a-txt {
  padding-bottom: 1em;
}
.qa02 .qa-box-a-img {
  display: flex;
  align-items: flex-end;
  float: right;
  shape-outside: inset(calc(100% - 10.2rem) 0 0 0);
  width: 10.3rem;
  height: 100%;
  margin-left: 2rem;
  transform: translateY(-.8rem);
}
.qa02 .qa-box-a-img  + .qa-box-a-txt {
  letter-spacing: -.03em;
}

.qa03.open {
  padding-bottom: 2rem;
}
.qa03 .qa-box-q {
  padding-right: 7.5rem;
}
.qa03 .qa-box-a-ttl {
  letter-spacing: .02em;
}
.qa03 .qa-box-a-ttl + .qa-box-a-txt {
  letter-spacing: -.06em;
  line-height: 2;
}
.qa03 .qa-box-a-txt + .qa-box-a-txt {
  margin-top: 2.8rem;
  line-height: 2;
}
.qa03 .qa-box-a-img {
  width: 10.8rem;
  margin-top: 1rem;
}

.qa04.open .qa-box-a {
  position: relative;
  padding-top: 2.2rem;
}
.qa04 .qa-box-a::after {
  content: '';
  position: absolute;
  top: 2.5rem;
  right: 0;
  width: 6.5rem;
  height: 6.5rem;
  background: url('../img/qa04.svg') top right / contain no-repeat;
}
.qa04.close .qa-box-a::after {
  display: none;
}
.qa04 .qa-box-a-ttl {
  letter-spacing: 0;
  line-height: 1.7;
}
.qa04 .qa-box-a-ttl + .qa-box-a-txt {
  line-height: 2.03;
  letter-spacing: -.025em;
}
.qa04 .qa-box-a-txt + .qa-box-a-txt {
  margin-top: 2.5rem;
}
.qa04 .qa-box-a-attention {
  margin-top: 1rem;
  letter-spacing: .07em;
}

.qa05 .qa-box-q {
  padding-right: 5rem;
  letter-spacing: 0;
}

.qa06 .qa-box-q {
  letter-spacing: .07em;
}
.qa06.open .qa-box-a {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
.qa06 .qa-box-a-ttl:first-child {
  line-height: 1.5;
}
.qa06 .qa-box-a-ttl:first-child  + .qa-box-a-txt {
  margin-top: .5rem;
  letter-spacing: -.025em;
}
.qa06 .qa-box-a-txt + .qa-box-a-ttl {
  margin-top: 1.7rem;
  font-size: 1.5rem;
  letter-spacing: -.07em;
  white-space: nowrap;
}
.qa06 .qa-box-a-txt + .qa-box-a-ttl::before {
  content: '例';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.8rem;
  height: 2.4rem;
  margin-bottom: .5rem;
  background-color: #F57969;
  border-radius: 1.2rem;
  color: #fff;
}
.qa06 .qa-box-a-txt + .qa-box-a-txt {
  margin-top: 2.5rem;
  line-height: 2;
  letter-spacing: -.02em;
}

@media screen and (min-width: 1280px) {
  .qa-box {
    border: .2rem solid transparent;
    transition: border .3s ease-in;
  }
  .qa-box.close:hover {
    border: .2rem solid #1EB996;
  }
}



/*-------------------------------------------
flow
--------------------------------------------*/
.flow {
  padding: 4rem 0 4.8rem;
  background-color: #F8F4ED;
}
.flow-ttl {
  padding-left: .025em;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .025em;
}
.flow-list {
  width: 30.2rem;
  margin: 4.5rem auto 0;
}
.flow-list-step {
  position: relative;
  background-color: #fff;
  border-radius: 1.2rem;
}
.flow-list-step:not(:first-child) {
  margin-top: 9rem;
}
.flow-list-step.step01 { padding: 4.2rem 0; }
.flow-list-step.step02 { padding: 3.5rem 0 3rem; }
.flow-list-step.step03 { padding: 4rem 0; }
.flow-list-step.step04 { padding: 3.5rem 0 6rem; }
.flow-list-step.step05 { padding: 4.5rem 0 5.3rem; }
.flow-list-step:not(:first-child)::before {
  content: '';
  position: absolute;
  top: -6.2rem;
  left: 0;
  right: 0;
  width: 3.2rem;
  height: 2rem;
  margin: 0 auto;
  background: url('../img/step_arrow.svg') center center / contain no-repeat;
}
.flow-list-step-no {
  position: absolute;
  top: -1.3rem;
  left: 0;
  right: 0;
  font-size: 3.2rem;
  font-weight: 700;
  color: #1EB996;
  text-align: center;
  line-height: 1;
}
.step02 .flow-list-step-no,
.step04 .flow-list-step-no {
  color: #F57969;
}

.flow-list-step-img {
  display: block;
  margin: 0 auto;
}
.step01 .flow-list-step-img { width: 19.7rem; }
.step02 .flow-list-step-img { width: 21.6rem; transform: translateX(-.7rem); }
.step03 .flow-list-step-img { width: 14.1rem; }
.step04 .flow-list-step-img { width: 16.4rem; transform: translateX(-.7rem); }
.step05 .flow-list-step-img { width: 16.9rem; }

.flow-list-step-ttl {
  margin-top: 2rem;
  font-size: 2.7rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: .05em;
}
.step02 .flow-list-step-ttl,
.step03 .flow-list-step-ttl { margin-top: 1rem; }
.step04 .flow-list-step-ttl {
  margin-top: .5rem;
  padding-left: 0.15em;
  letter-spacing: .2em;
  line-height: 1.4;
}
.step05 .flow-list-step-ttl {
  padding-left: .3em;
  letter-spacing: .1em;
}
.flow-list-step-txt {
  margin: 0 2.5rem;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: .05em;
}
.step03 .flow-list-step-txt { letter-spacing: 0; line-height: 1.75; }
.step04 .flow-list-step-txt { margin-top: 1rem; letter-spacing: -.02em; }

.step01 .flow-list-step-foot {
  position: relative;
  margin: 4.5rem 3rem 0;
  padding: 1.8rem 0 1.5rem;
  background-color: #FEF8F7;
  border-radius: 1.2rem;
  letter-spacing: .05em;
}
.step01 .flow-list-step-foot::after {
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: -4rem;
  right: 0;
  width: 31.7rem;
  height: 10.7rem;
  background: url('../img/flow01_foot.svg') top center / contain no-repeat;
}
.step01 .flow-list-step-foot-ttl {
  position: absolute;
  top: -2.2rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 700;
}
.step01 .flow-list-step-foot-ttl::before,
.step01 .flow-list-step-foot-ttl::after {
  content: '';
  display: inline-block;
  width: .2rem;
  height: 1.3em;
  margin: .5rem 2.3rem 0;
  background-color: #555;
  transform: rotate(-25deg);
}
.step01 .flow-list-step-foot-ttl::after {
  transform: rotate(25deg);
}
.step01 .flow-list-step-foot-box:nth-of-type(2) {
  margin: 1.5rem 2.5rem 0;
  padding-top: 1.9rem;
  background: linear-gradient(to right, #fff .4rem, transparent .4rem) top left / .8rem .3rem repeat-x;
}
.step01 .flow-list-step-foot-box p:first-child {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #F57969;
  line-height: 1.5;
}
.step01 .flow-list-step-foot-box:nth-of-type(2) p:first-child {
  letter-spacing: -.08em;
}
.step01 .flow-list-step-foot-box p:not(:first-child) {
  margin-top: .3rem;
  font-size: 1.3rem;
  text-align: center;
  color: #3E3A39;
  letter-spacing: -.1em;
}
.step01 .flow-list-step-foot-box:nth-of-type(2) p:not(:first-child) {
  letter-spacing: .02em;
}
.step01 .flow-list-step-foot-box p span {
  display: inline-block;
  margin-top: .2rem;
  font-size: 1rem;
  line-height: 1.3;
}

.step02 .flow-list-step-foot {
  margin: 1rem 2.5rem 0;
  padding: 2.5rem 2.5rem;
  background: url('../img/flow02_foot.svg') top 2rem center / 22.9rem auto no-repeat #F6F6F6;
  border-radius: .5rem;
}
.step02 .flow-list-step-foot p:first-child {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
.step02 .flow-list-step-foot-txt {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: -.01em;
  text-align: left;
  /* transition: .3s ease-in;
  overflow: hidden; */
}
/* .step02 .flow-list-step-foot-txt.close {
  height: 0;
  opacity: 0;
}
.step02 .flow-list-step-foot-txt.open {
  height: auto;
  opacity: 1;
} */

.flow-attention {
  margin-top: 3rem;
  font-size: 1rem;
  text-align: center;
  letter-spacing: .05em;
}

@media screen and (min-width: 1280px) {
  .flow {
    padding-top: 5.8rem;
    padding-bottom: 3rem;
  }
}



/*-------------------------------------------
aboutUs
--------------------------------------------*/
.aboutUs {
  padding: 4.7rem 0 5.3rem;
  background-color: #fff;
}
.aboutUs-link {
  position: relative;
  width: 28.9rem;
  margin: 0 auto;
  transform: translateX(-1rem);
}
.aboutUs-link::after {
  content: '';
  position: absolute;
  top: -2.2rem;
  right: -3.2rem;
  width: 8.7rem;
  height: 11.2rem;
  background: url('../img/aboutUs.svg') top right / contain no-repeat;
  z-index: 1;
}
.aboutUs-link a {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.2rem 5.7rem 1.5rem 2.2rem;
  border: .2rem solid #9FDDD1;
  border-radius: 1rem;
  font-size: 1.7rem;
  font-weight: 700;
  color: #26B196;
  line-height: 1.4;
  letter-spacing: 0;
  z-index: 0;
}
.aboutUs-link a span {
  padding-right: 2.5rem;
  background: url('../img/aboutUs_blank.svg') center right / 1.3rem auto no-repeat;
}

@media screen and (min-width: 1280px) {
  .aboutUs {
    padding-top: 5.5rem;
    padding-right: 1rem;
  }
  .aboutUs-link a:hover {
    background-color: #26B196;
    border-color: #26B196;
    color: #fff;
  }
}



/*-------------------------------------------
footer
--------------------------------------------*/
.footer {
  padding-bottom: 5.2rem;
  background-color: #727272;
}
.footer small {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.7rem;
  padding-bottom: 0.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
}

@media screen and (min-width: 768px) {
  .footer {
    width: 37.5rem;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1280px) {
  .footer {
    margin-left: auto;
    background-color: #FBC9C3;
  }
  .footer small {
    width: 500px;
    height: 37px;
    margin-left: auto;
    margin-right: 300px;
    padding-bottom: 2px;
    background-color: #727272;
    font-size: 11px;
  }
}



/*-------------------------------------------
pagetop
--------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 6.5rem;
  right: 3rem;
  z-index: 12;
}
.pagetop a {
  display: block;
  width: 3.4rem;
  height: 3.4rem;
}

@media screen and (min-width: 768px) {
  .pagetop {
    bottom: 1.5rem;
    right: 2.2rem;
  }
}

@media screen and (min-width: 1280px) {
  .pagetop {
    bottom: 15px;
    right: 22px;
  }
  .pagetop a {
    width: 34px;
    height: 34px;
  }
  .pagetop:hover a {
    transform: scale(1.2);
  }
}

@media screen and (min-width: 1440px) {
  .pagetop {
    right: calc(((100% - 1440px) / 2) + 22px);
  }
}



/*-------------------------------------------
footerFix
--------------------------------------------*/
.footerFix {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #E67764;
  z-index: 99;
}
.footerFix-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 5.2rem;
  text-decoration: none;
}
.footerFix-btn.tel {
  background: #1EB996;
}
.footerFix-btn span {
  position: relative;
  display: inline-block;
  padding: .5rem 0 .7rem 2.7rem;
  background: url('../img/fix_form.svg') center left / 2rem auto no-repeat;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.1em;
  color: #fff;
  line-height: 1;
}
.footerFix-btn.tel span {
  background-image: url('../img/fix_tel.svg');
}

@media screen and (min-width: 768px) {
  .footerFix {
    display: none;
  }
}