@charset "utf-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  html {
    /* 1.8remで16px */
    font-size: 55.56%;
  }
  @media screen and (max-width: 768px) {
    html {
      /* 1.5remで18px */
      font-size: 75%;
    }
    @media screen and (max-width: 530px) {
      html {
        /* 1.5remで16px */
        font-size: 68.75%;
      }
      @media screen and (max-width: 430px) {
        html {
          /* 1.5remで15px */
          font-size: 62.5%;
        }
      }
    }
  }
}
body {
  width: 100%;
  min-height: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  font-style: normal;
  font-family: var(--ff1);
  line-height: 1.8;
  font-feature-settings: "palt";
  letter-spacing: .5px;
  color: var(--text1);
  background-color: var(--maincolorBg);
  margin: 0;
  padding: 0;
  position: relative;
}
body.is-open {
  height: 100%;
  overflow: hidden;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, dl {
  font-size: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
p, ul, ol, dl {
  word-break: break-all;
  text-justify: inter-ideograph;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
a {
  font-weight: 500;
  color: var(--text1);
  transition: all 0.5s ease 0s;
  cursor: pointer;
}
a[href^="tel:"] {
  pointer-events: none;
}
a:hover {
  color: var(--primary);
}
a img {
  border: medium none;
  margin: 0;
  padding: 0;
  transition: all 0.3s;
}
a img:hover {
  opacity: .6;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
table {
  border-spacing: 0;
  margin: 0;
  padding: 0;
}
figure {
  margin: 0;
}
figure img {
  width: 100%;
}
input, textarea, select, button {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}
input:focus {
  outline: none;
}
input:focus::after {
  outline: none;
}
/*  color  */
.red {
  color: #ff0000 !important;
  font-weight: 500;
}
.blue {
  color: #62B3F5 !important;
}
.purple {
  color: #210099 !important;
}
.gry01 {
  color: #585858 !important;
}
.bk {
  color: #000 !important;
}
.pink {
  color: #F6C !important;
}
.orange {
  color: #ff8251 !important;
}
.yellow {
  color: #FF0 !important;
}
:root {
  --primary: #fb575d;
  --maincolorBg: #FFF4F3;
  --colorBg1: #f6d2ce;
  --colorBg2: #FFEFEA;
  --text1: #2B2B2B;
  --text2: #777;
  --border1: #D0D0D0;
  --ff1: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  --ff2: "Jost", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  --ff3: "Jost", "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.opa {
  transition: 0.3s;
}
.opa:hover {
  opacity: 0.6;
}
.f12 {
  font-size: 1.2rem;
}
.f13 {
  font-size: 1.3rem;
}
.f14 {
  font-size: 1.4rem;
}
.f15 {
  font-size: 1.5rem;
}
.f16 {
  font-size: 1.6rem;
}
.f18 {
  font-size: 1.8rem;
}
.f20 {
  font-size: 2.0rem;
}
.f22 {
  font-size: 2.2rem;
}
.f24 {
  font-size: 2.4rem;
}
.f25 {
  font-size: 2.5rem;
}
.tl {
  text-align: left;
}
.tr {
  text-align: right;
}
.tc {
  text-align: center;
}
.tj {
  text-align: justify;
}
.fw4 {
  font-weight: 400;
}
.fw5 {
  font-weight: 500;
}
.fw6 {
  font-weight: 600;
}
.fw7 {
  font-weight: 700;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mr0 {
  margin-right: 0 !important;
}
.ml0 {
  margin-left: 0 !important;
}
@media screen and (min-width:769px) {
  /* display */
  .dn_pc {
    display: none !important;
  }
  .in-block_sp {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
    line-height: 1.75;
  }
  /* display */
  .dn_mob {
    display: none !important;
  }
  .in-block_sp {
    display: inline-block;
  }
}