@charset "UTF-8";
@font-face {
  font-family: 'google_sans';
  src: url('../font/googlesans-regular.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'google_sans';
  src: url('../font/googlesans-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'google_sans';
  src: url('../font/googlesans-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
/* =========================================================
 _reset
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}
body {
  min-height: 100%;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
main, article, aside, figcaption, figure, footer, header, nav, section {
  display: block
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
img,
picture {
  max-width: 100%;
  vertical-align: top;
}
svg,
img,
embed,
object,
iframe {
  vertical-align: top;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
select::-ms-expand {
  display: none;
}
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}
[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}
label[for] {
  cursor: pointer;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
em {
  font-style: normal;
  font-weight: 700;
}
img[src$=".svg"] {
  width: 100%;
}

/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  /* font-size: 62.5%; */
  font-size: calc(100vw / 37.5);
}
body {
  color: #202124;
  line-height: 1.5;
  font-family: 'google_sans', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  font-style: normal;
}
a {
  text-decoration: underline;
  transition: color 0.3s linear, opacity 0.3s linear;
}
a:hover {
  opacity: 0.6;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
button {
  font-family: inherit;
  font-size: inherit;
  box-sizing: inherit;
  border: 0
}
button {
  cursor: pointer
}
li {
  list-style-type: none
}
figure {
  margin: 0
}
/*
 *  utility
 * ------------------------------------------------------------------- */
/* display */
@media screen and (min-width:769px) {
  .hide-pc.show-tb {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .hide-pc.show-tb {
    display: inline-block;
  }
}
@media screen and (min-width:601px) {
  .hide-pc {
    display: none;
  }
}
@media screen and (max-width:600px) {
  .hide-sp {
    display: none;
  }
}
.font-jp {
  font-family: 'Noto Sans JP', sans-serif;
}
/* フェードイン */
.fade-in {
  opacity: 0;
}
.fade-in.active {
  animation: fadeIn .8s ease-out forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* フェードイン・アップ */
.fade-in-up {
  opacity: 0;
}
.fade-in-up.active {
  animation: fadeInUp .8s ease-out forwards;
}
@keyframes fadeInUp {
  0% {
    transform: translate3d(0, 5rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/*
 *  layout
 * ------------------------------------------------------------------- */
.wrap {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding-right: 3rem;
  padding-left: 3rem;
}



/* main
* ------------------------------------------------------------------- */
.main {
  position: relative;
}
/* home */
.home {
  background: url('../img/bg_home.svg') no-repeat 50% -8rem;
  background-size: 50rem auto;
}
.page-head {
  padding-top: 3rem;
  padding-bottom: 4rem;
  text-align: center;
}
.page-head-copy {
  margin-bottom: 8rem;
  color: #fff;
  font-weight: 500;
  font-size: 2.4rem;
}
.page-head-copy em {
  display: block;
  font-weight: 300;
  font-size: 1.5em;
}
.page-head-title {
  margin-bottom: 0.8em;
  line-height: 1.4;
  font-size: 3.8rem;
  font-weight: 700;
}
.page-head-text {
  line-height: 1.8;
  font-size: 2.1rem;
}
.notes {
  margin-top: 2.5em;
  color: #999;
  font-size: 1.2rem;
}
/* page-content */
.page-content {
  padding: 5rem 0;
}
.page-content.bg-blue {
  color: #fff;
  background-color: #607ED4;
}
/* heading */
.heading-a {
  margin-bottom: 1em;
  line-height: 1.2;
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
}
.heading-a em {
  font-weight: 500;
  font-size: 1.2em;
}
.heading-a em > span {
  font-weight: 400;
  font-size: 1.7em;
}
.heading-a-bottom{
  position: relative;
  margin-bottom: 5em;
}
.heading-a-bottom::before {
  content: '';
  position: absolute;
  top: 7.5rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 4.2rem;
  height: 2.4rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #fff;
}
/* step-flow */
.step-flow > li {
  text-align: center;
}
.step-flow > li:not(:first-of-type) {
  position: relative;
  margin-top: 4rem;
  padding-top: 6.6rem;
}
.step-flow > li:not(:first-of-type)::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 4.2rem;
  height: 2.4rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #fff;
}
.step-flow .step-img {
  width: 75%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
.step-flow .step-text {
  margin-top: 1em;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.step-flow .step-text .img-btn{
  background-color: #1f1f1f;
  color: #fff;
  font-size: 1rem;
  padding: .7em .9em;
  border-radius: 2rem;
  margin: 0 .6em 0 -.6em;
  vertical-align:.3em;
}
.step-flow-bottom .step-text{
  margin-left: -1em;
  margin-right: -1em;
}
/* try */
.try-heading {
  margin-bottom: 2.2em;
  text-align: center;
}
.try-heading > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.9em;
  color: #fff;
  line-height: 1.2;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  background: url('../img/icon_img.png') no-repeat 50% 50%;
  background-size: contain;
  aspect-ratio: 1 / 1;
}
.try-item-block {
  text-align: center;
}
.try-item-block:not(:first-of-type) {
  margin-top: 5rem;
}
.try-item-block p {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1em;
  letter-spacing: 0.05em;
}
.try-item-block .try-item-title{
  display: block;
  margin: 1em auto 1.5em;
  padding: .6em .2em;
  text-align: center;
  border: 2px solid #ee4856;
  color: #ee4856;
  background: #FFF;
  box-sizing: border-box;
  border-radius: .3em;
  position: relative;
  font-size: 1.7rem;
  max-width: 480px;
}
.try-item-block .try-item-title:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 16px;  /* 尻尾のサイズ（お好みで調整してください） */
  height: 16px;
  background: #FFF;
  border-right: 2px solid #ee4856;
  border-bottom: 2px solid #ee4856;
  transform: rotate(45deg);
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;
}
.try-item-block .try-img {
  overflow: hidden;
  margin-left: -3rem;
  margin-right: -3rem;
  text-align: center;
}
.try-item-block .try-img img{
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
/* after-contents */
.after-contents {
  margin-top: 8rem;
  text-align: center;
}
.after-heading {
  margin-bottom: 0.7em;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
}
.product-img {
  width: 83%;
}
.induction {
  padding: 1.5em;
  border-radius: 1em;
  background-color: #EFEBE4;
}
.induction p {
  line-height: 1.8;
  font-weight: 500;
}
.btn-wrap {
  margin-top: 1em;
  text-align: center;
}
/* link-button */
.link-button {
	display: inline-block;
  position: relative;
	padding: 0.5em 0.9em 0.5em 1.4em;
  border: 1px solid #607ED4;
	border-radius: 1.6em;
  overflow: hidden;
	color: #fff;
  vertical-align: top;
  font-size: 1.8rem;
  font-weight: 500;
	text-align: center;
  text-decoration: none !important;
	white-space: nowrap;
	background-color: #607ED4;
}
.link-button > span {
  display: inline-block;
  position: relative;
  padding-top: 0.1em;
  padding-right: 2.8rem;
}
.link-button > span::after {
  content: '';
  position: absolute;
  top: -0.1em;
  bottom: 0;
  right: 0;
  width: 2.3rem;
  height: 2.3rem;
  margin: auto;
  background: url('../img/icon_arrow_wh.svg') no-repeat 50% 50%;
  background-size: contain;
}
/* footer */
.footer {
  position: relative;
  padding: 2rem 1.6rem;
  border-top: 1px solid #707070;
  text-align: center;
}
.footer .copyright {
  font-size: 1.3rem;
}
/* ページトップ */
#pagetop {
  display: block;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #202124;
  cursor: pointer;
  z-index: 99;
}
#pagetop::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1.8rem;
  height: 1.8rem;
  background: url('../img/icon_arrow_wh.svg') no-repeat 50% 50%;
  background-size: contain;
  transform: rotate(-90deg);
}
/*like-btn*/
.btn-like{
  text-align: center;
  background-color: #FFF;
  border: 1px solid #CCC;
  border-radius: .5rem;
  width: auto;
  padding: 0.5rem 0.7rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1.3rem;
  color: inherit;
}
.btn-like:link{
  text-decoration: none;
}
.btn-like::before {
  content: "\2665";
  color: #e85298;
  font-size: 1.4rem;
  transition: color 0.3s;
}
.wrap-btn-like{
  margin-top: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.wrap-btn-like.wrap-btn-like-bottom{
  margin-top: 2.6em;
}
.balloon-btn-like {
  position: relative;
  display: inline-block;
  padding: .5rem;
  background: #d2dcf8;
  border: 1px solid #CCC;
  border-radius: .5rem;
  font-size: 1.1rem;
}
.balloon-btn-like::before {
  content: "";
  position: absolute;
  top: 50%;
  /* 修正：隙間を埋めるために少し右に寄せる */
  left: -6px; /* -7pxから-6pxに変更（枠線用） */
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #ccc;
}

.balloon-btn-like::after {
  content: "";
  position: absolute;
  top: 50%;
  /* 修正：本体の色と重なるように少し右に寄せる */
  left: -4px; /* -5pxから-4pxに変更（塗りつぶし用） */
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #d2dcf8;
}
/*iziModal設定*/
.iziModal{
  max-height: 90vh;
  text-align: center;
}
.js-iziModal .modal-close {
  position: fixed;
  top: -18px;
  right: 8%;
}
.js-iziModal .modal-close::before,
.js-iziModal .modal-close::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 3rem;
  height: 0.3rem;
  background-color: #FFF;
}
.js-iziModal .modal-close::before {
  transform: rotate(45deg);
}
.js-iziModal .modal-close::after {
  transform: rotate(-45deg);
}
.text-like{
  text-align: center;
  width: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.text-like:link{
  text-decoration: none;
}
.text-like::before {
  content: "\2665";
  color: #e85298;
  font-size: 1.4rem;
  transition: color 0.3s;
}
.text-thanks{
  font-size: 1.4rem;
}

/* -----------------------------------------
 レスポンシブ
------------------------------------------- */
@media screen and (min-width:601px) {
  html {
    font-size: 62.5%;
  }
  .wrap {
    padding-right: 6rem;
    padding-left: 6rem;
  }
  .notes {
    text-align: center;
  }
  .link-button {
    padding: 0.55em 1.1em 0.55em 1.6em;
    font-size: 2rem;
  }
  .try-item-block .try-img img{
    max-width: 480px;
    border: 1px solid #ccc;
  }
  .try-item-block .try-item-title{
    font-size: 2rem;
  }
}