@charset "UTF-8";

/*==============================================
global
==============================================*/
html {
  font-size: 62.5%;
  position: relative;
  /* scroll-behavior: smooth; */
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #000;
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  position: relative;
  font-feature-settings: "palt";
  /* -webkit-font-smoothing: antialiased; */
}

body.fixed {
	/* position: fixed;
	width: 100%;
	height: 100%;
	left: 0; */

  overflow: hidden;
}

body::after {
  content:"";
  background: url(/assets/img/common_bg.jpg);
  background-size: 200px;
  position: fixed;
  z-index:-1;
  top:0;
  left:0;
  width: 100%;
  height: 100vh;
}

* {
  box-sizing: border-box;
}

*:last-child {
  margin-bottom:0;
}

*:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, form, button, figure, figcaption {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 1.6rem;
}

li {
  list-style-type: none;
}

img {
  border: none;
  vertical-align: middle!important;
  max-width: 100%;
  -ms-interpolation-mode: bicubic;
  height: auto;
  image-rendering: -webkit-optimize-contrast; /*Chromeぼけ対策*/
  image-rendering: auto;
}

@media (min-width:767px) {
  body {
    font-size: 1.9rem;
    min-width: 1100px;
  }
}



/*==============================================
_common
==============================================*/
._fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
}

._fadeup--ison {
  opacity: 1;
  transform: translateY(0%);
}

._pc {
  display: none;
}

._sp {
  display: inline-block;
}

.main {
  margin: 0 auto;
  position: relative;
  display: block;
  padding-top: 60px;
}

._section {
  padding: 50px 0 50px;
  /* scroll-margin-top: 50px; */
}

._inner {
  padding: 0 15px;
}

._box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.05);
}

._tit {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.05em;
  position: relative;
  margin-bottom: 1em;
  font-feature-settings: "palt";
}

._tit--white {
  color: #fff!important;
}

._tit__icon-before {
  display: inline-block;
  position: relative;
  top:-15px;
  left:-5px;
  transition: all .3s .3s ease;
  transform:rotate(25deg);
  transform-origin: center center;
  opacity: 0;
}

._tit__icon-after {
  display: inline-block;
  position: relative;
  bottom:-15px;
  right: -5px;
  transition: all .3s .7s ease;
  transform:rotate(25deg);
  transform-origin: center center;
  opacity: 0;
}

._tit__icon-before--ison {
  top:-5px;
  left:-5px;
  transform:rotate(0deg);
  opacity: 1;
}

._tit__icon-after--ison {
  bottom:-5px;
  right: -5px;
  transform:rotate(0deg);
  opacity: 1;
}

._tit__icon-before img,
._tit__icon-after img {
  width: 16px;
  height: 23px;
}

._small {
  font-size: 75%;
}

._notice {
  text-indent: -1em;
  padding-left: 1em;
}


@media (min-width:767px) {
  .main {
    padding-top: 80px;
  }

  ._sp {
    display: none;
  }

  ._pc {
    display: inline-block;
  }

  ._section {
    padding: 80px 0 80px;
    /* scroll-margin-top: 80px; */
  }
  ._inner {
    margin: 0 auto;
    width: 1000px;
  }

  ._box {
    padding: 40px;
    border-radius: 20px;
  }
  ._tit {
    font-size: 4.2rem;
  }

  ._tit__icon-before img,
  ._tit__icon-after img {
    width: 32px;
    height: 46px;
  }
}




/*==============================================
link
==============================================*/
a, a:visited, a img, a:visited img, button {
  transition: all .3s ease-in;
}

a:hover img {
  opacity: 0.8;
}

a:not([class]), a:not([class]):visited {
  color: #000;
}

a:not([class]):hover {
  text-decoration: none;
}

._btn, ._btn:visited {
  background: #2f83c5;
  box-shadow: 0 3px 0 #26699e;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: .5em 2em;
  border-radius: 100px;
  line-height: 1.4;
  display: inline-block;
  text-align: center;
  position: relative;
  top:0;
  transition: top .3s;
}

._btn--red, ._btn--red:visited {
  background: #ea524c;
  box-shadow: 0 3px 0 #d13e39;
}

._btn--orange, ._btn--orange:visited {
  background: #ff8400;
  box-shadow: 0 3px 0 #e07400;
}

@media (min-width:767px) {
  ._btn:hover {
    top:3px;
  }
}



/*==============================================
kv
==============================================*/
.kv {
  height: 70vh;
  padding: 3%;
  position: relative;
  background: #fff;
}

.kv__copy {
  position: absolute;
  width: 100%;
  top:45%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
}

.kv-pc {
  display: none;
}

@media (min-width:767px) {
  .kv {
    display: none;
  }

  .kv-pc {
    display: block;
    aspect-ratio: 16 / 7;
    height:auto;
    padding: 3%;
    position: relative;
    background: #fff;
  }

  .kv-pc__copy {
    position: absolute;
    text-align: center;
    width: 50%;
    top:45%;
    left:50%;
    transform: translateX(-50%) translateY(-50%);
  }
}


/*==============================================
about
==============================================*/
.about__nayami-item {
  margin-bottom: 20px;
}

.about__nayami-copy {
  text-align: center;
  color: #ea504c;
  font-weight: 500;
  font-size: 2.45rem;
  line-height: 1.4;
  margin-bottom: 50px;
}

.about__nayami-copy-icon {
  position: relative;
  top:-10px;
  right: 10px;
}

.about__nayami-copy-icon img {
  width: 16px;
  height: 23px;
}

.about__lead-copy {
  margin-bottom: 1em;
}

.about__lead-copy:last-child {
  margin-bottom: 0;
}

.about__lead-btn {
  margin-bottom: 1em;
  text-align: center;
}

.about__lead-btn a, .about__lead-btn a:visited {
  display: block;
  padding: .5em 1em;
}

.about__lead-step {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: 500;
  padding: 1em 0;
}

.about__lead-step-num {
  width: 5em;
  margin-bottom: .5em;
}

.about__lead-step-num-inner {
  text-transform: uppercase;
  color: #ea504c;
  border: 1px solid #ea504c;
  border-radius: 100px;
  display: block;
  text-align: center;
  padding: 0 .7em;
}

.about__lead-step-copy {
  width: calc(100% - 6em);
  margin-bottom: .5em;
}


@media (min-width:767px) {
  .about__nayami-item {
    width:75%;
    margin: 0 auto 40px;
  }

  .about__nayami-copy {
    font-size: 3.8rem;
    line-height: 1.4;
  }

  .about__nayami-copy-icon {
    top:-20px;
    right: 20px;
  }

  .about__lead-btn a, .about__lead-btn a:visited {
    display: inline-block;
    padding: .75em 2em;
  }
}



/*==============================================
features
==============================================*/
.features {
  background: #2f83c5;
}

.features__box--01 {
  margin-bottom: 40px;
}

.features__label {
  text-align: center;
  margin-bottom: .5em;
}

.features__label-inner {
  background: #fff;
  color: #ea504c;
  border-radius: 100px;
  font-weight: 700;
  padding: .2em 1em;
}

.features__tit {
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1em;
}

.features__tit-line {
  border-bottom: 2px solid #fff;
  padding: .3em;
}

.features__copy {
  color: #fff;
}

@media (min-width:767px) {
  .features {
    padding: 60px 0;
  }

  .features__box--01 {
    margin-bottom: 50px;
  }

  .features__tit {
    font-size: 2.6rem;
  }

  .features__copy {
    text-align: center;
  }
}



/*==============================================
menu
==============================================*/
.menu__footcare {
  border-bottom: 3px dotted #2f83c5;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.menu__tit {
  font-size: 2rem;
  font-weight: 500;
}

.menu__price {
  font-size: 1.9rem;
  color: #ea504c;
  font-weight: 500;
  margin-bottom: 1em;
}

.menu__flow {
  background: #edf7ff;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.menu__flow-tit {
  font-size: 1.5rem;
  color: #2f83c5;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
}

.menu__flow-list {
  /* display: grid;
  grid-template-columns: 25% 1fr 25% 1fr 25% 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  column-gap: 4px;
  row-gap: 5px; */
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 3px;
}

.menu__flow-list-item {
  width: 25%;
}

.menu__flow-list-item--arrow {
  /* position: relative;
  top:-0.5em; */
  color: #2f83c5;
  text-align: center;
  align-self: center;
  width: auto;
  flex-grow: 1;
}

.menu__flow-list-item-img {
  margin-bottom: 5px;
}

.menu__flow-list-item-cap {
  font-size: 1rem;
  line-height: 1.3;
  text-align: center;
}

.menu__others-list {
  margin-bottom: 20px;
}

.menu__others-list:last-child {
  margin-bottom: 0;
}

.menu__others-list-item {
  display: flex;
}

.menu__others-list-item-name {
  font-weight: 500;
  margin-right: 1em;
}

.menu__others-list-item-price {
  color: #ea504c;
  font-weight: 500;
}

.menu__insole-info {
  background: #f4f6ca;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0 30px;
  font-size: 1.4rem;
}

.menu__insole-info-img {
  margin-bottom: 20px;
}

.menu__insole-info-notice {
  color: #ea504c;
}

.menu__info {
  padding: 15px;
  border: 1px solid #ea504c;
  border-radius: 5px;
}

.menu__info-tit {
  color: #ea504c;
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: .5em;
}

.menu__info-copy {
  margin-bottom: 1em;
  font-size: 1.4rem;
}

@media (min-width:767px) {
  .menu__tit {
    font-size: 3.2rem;
  }
  .menu__price {
    font-size: 2.2rem;
  }

  .menu__flow {
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }

  .menu__flow-tit {
    font-size: 2.2rem;
  }

  .menu__flow-list {
    justify-content: center;
    row-gap: 30px; 
  }

  .menu__flow-list-item {
    width: 15%;
    padding: 0 5px;
  }
  .menu__flow-list-item--arrow {
    width: auto;
    flex-grow: 0;
  }

  .menu__flow-list-item-img {
    margin-bottom: 10px;
  }

  .menu__flow-list-item-cap {
    font-size: 1.6rem;
  }

  .menu__insole-info {
    padding: 35px;
    border-radius: 10px;
    margin: 40px 0 30px;
    font-size: 1.8rem;
  }

  .menu__insole-info-img {
    width: 60%;
    margin:0 auto 20px;
  }
  .menu__info {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
  }

  .menu__info-tit {
    font-size: 2.2rem;
  }

  .menu__info-copy {
    font-size: 1.8rem;
    margin-bottom: 1.5em;
  }

  .menu__info-img {
    width: 70%;
    margin: 0 auto;
  }
}


/*==============================================
faq
==============================================*/
.faq {
  background:rgba(235, 231, 216, 0.4);
}

.faq__list-item {
  border-bottom: 2px dotted #ea504c;
}

.faq__list-item-q-tit, .faq__list-item-q-tit:visited {
  display: flex;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1.6rem;
  padding: .75em 0;
}

.faq__list-item-q-tit-label {
  color: #ea504c;
  margin-right: .5em;
}

.faq__list-item-q-tit-copy {
  position: relative;
  width: 100%;
  padding-right: 50px;
}

.faq__list-item-q-tit-copy::after {
  position: absolute;
  content: '';
  background: url(/assets/img/faq_icon.png) no-repeat center center;
  width: 20px;
  height: 100%;
  background-size: contain;
  right:20px;
  top:0;
  transform: rotate(180deg);
  transform-origin: center center;
  transition: all .3s;
}

.faq__list-item-q-tit-copy--ison::after {
  transform: rotate(0deg);
}

.faq__list-item-a-label {
  margin-right: .5em;
}

.faq__list-item-a {
  background: #edf7ff;
  color: #2f83c5;
  border-radius: 5px;
  padding: 15px;
  margin: 0 0 1.5em 0;
  line-height: 1.45;
  display: none;
}

.faq__list-item:first-child {
  margin-top: -1em;
}


.faq__list-item:last-child {
  border-bottom: none;
  margin-bottom: -1em;
}


@media (min-width:767px) {
  .faq__list-item-q-tit, .faq__list-item-q-tit:visited {
    font-size: 2rem;
    padding: 1em 0;
  }

  .faq__list-item-q-tit:hover {
    color: #ea504c;
  }

  .faq__list-item-a {
    border-radius: 10px;
    padding: 20px;
  }
}

/*==============================================
profile
==============================================*/
.profile {
  background: #2f83c5;
  color: #fff;
}

.profile__ph {
  width: 60%;
  margin-inline: auto;
  margin-bottom: 1em;
}

.profile__name {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: .5em;
}


@media (min-width:767px) {
  .profile {
    padding: 60px 0;
  }

  .profile__ph {
    width: 20%;
    min-width: 200px;
    margin-inline: auto;
    margin-bottom: 1em;
  }
  .profile__name {
    font-size: 3.5rem;
  }

  .profile__copy {
    text-align: center;
  }
}


/*==============================================
access
==============================================*/
.access__map {
  background: #c7d8ef;
  margin-bottom: 20px;
}

.access__btn {
  text-align: center;
  font-size: 2rem;
}

@media (min-width:767px) {
  .access__map {
    width: 70%;
    margin: 0 auto 30px;
  }
}


/*==============================================
contact
==============================================*/
.contact {
  background: rgba(255, 253, 187, 0.85);
  text-align: center;
}

.contact__copy {
  font-weight: 500;
  margin-bottom: .5em;
}

.contact__copy:last-child {
  margin-bottom: 0;
}

.contact__telnum {
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: .5em;
}

.contact__telnum a, .contact__telnum a:visited {
  color: #ea504c;
}

.contact__telnum-pc {
  color: #ea504c;
}

.contact__btn {
  margin-bottom: 1em;
  font-size: 2.2rem;
}

@media (min-width:767px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact__telnum {
    font-size: 4rem;
  }
}


/*==============================================
header
==============================================*/
.header {
  top:0;
  left:0;
  position: fixed;
  z-index: 10;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding:5px 12px;
  box-shadow: 0 0 1.5em rgba(0, 0, 0, 0.1);
}

.header__logo {
  width: 30%;
}

.header__logo img {
  max-height: 45px;
}

.header__logo-h1 {
  font-size: 1px;
}

.header__menubtn {
  position: relative;
  top:-3px;
}

.header__menubtn a, .header__menubtn a:visited {
  background: #ea524c;
  box-shadow: 0 3px 0 #d13e39;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  padding: .5em 1em .5em 38px;
  border-radius: 100px;
  line-height: 1;
  display: block;
  transition: transform .2s;
}

.header__menubtn a span {
  position: absolute;
  left:15px;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform .2s;
}

.header__menubtn a span:nth-of-type(1) {
  top: 10px;
  width: 16px;
}
.header__menubtn a span:nth-of-type(2) {
  top: 15px;
  width: 16px;
}

.header__menubtn a span:nth-of-type(3) {
  top: 20px;
  width: 16px;
}

.header__menubtn-a--ison span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
}
.header__menubtn-a--ison span:nth-of-type(2) {
  display: none;
}
.header__menubtn-a--ison span:nth-of-type(3) {
  transform: translateY(-5px) rotate(45deg);
}

@media (min-width:767px) {
  .header {
    height: 80px;
    padding:5px 20px;
  }
  .header__logo {
    width: auto;
  }

  .header__logo img {
    max-height: 55px;
  }

  .header__menubtn {
    display: none;
  }
}


/*==============================================
nav
==============================================*/
.nav-pc {
  display: none;
}

.nav-sp {
  background: rgba(234, 81, 76, 0.923);
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 1;
  z-index: -10;
  transition: opacity .2s;
}

.nav-sp--ison {
  opacity: 1;
  transition: opacity .2s;
  z-index: 5;
}

.nav-sp__list {
  /* height:calc(100vh - 60px); */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-y: auto;
  z-index: 10;
}

.nav-sp__list-item a, .nav-sp__list-item a:visited {
  display: block;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: .2em;
}

@media (min-width:767px) {
  .nav-pc {
    display: block;
  }

  .nav-pc__list {
    display: flex;
  }

  .nav-pc__list-item {
    margin-left:.5em;
    padding-left:.5em;
  }

  .nav-pc__list-item a, .nav-pc__list-item a:visited {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
  }

  .nav-pc__list-item a::before {
    content: '';
    width: 0;
    height: 2px;
    background: #ea504c;
    position: absolute;
    bottom:-5px;
    left:0;
    transition: all .2s;
  }

  .nav-pc__list-item a:hover::before {
    width: 100%;
  }

  .nav-pc__list-item--ison a::before {
    width: 100%;
  }
}

@media (min-width:1185px) {
  .nav-pc__list-item a, .nav-pc__list-item a:visited {
    font-size: 1.65rem;
  }
}

@media (orientation: landscape){
  .nav-sp__list {
    flex-direction:unset;
    flex-wrap: wrap;
    padding-top: 60px;
  }

  .nav-sp__list-item {
    width: 50%;
  }
}


/*==============================================
floatingbtn
==============================================*/
.floatingbtn {
  position: fixed;
  bottom: 15px;
  left:0;
  width: 100%;
  padding: 0 15px;
}

.floatingbtn a, .floatingbtn a:visited {
  width: 100%;
  font-size: 1.8rem;
}

@media (min-width:767px) {
  .floatingbtn {
    left:auto;
    right:0;
    bottom: 30px;
    width: auto;
    padding:0;
  }

  .floatingbtn a, .floatingbtn a:visited {
    width:auto;
    font-size: 2.2rem;
    border-radius: 20px 0 0 20px;
    line-height: 1.2;
  }

}



/*==============================================
footer
==============================================*/
.footer {
  background: #fff;
  padding: 30px 20px 80px 20px;
  text-align: center;
}

.footer__logo {
  width: 30%;
  margin: 0 auto 30px;
}

.footer__sns {
  display: grid;
  grid-template-columns: repeat(3, 30px);
  column-gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

@media (min-width:767px) {
  .footer {
    padding: 50px 20px;
    font-size: 1.6rem;
  }

  .footer__logo {
    width: 120px;
  }
}


