@charset "UTF-8";
/* Scss Document */
html {
  font-size: 62.5%; }

html, body {
  width: 100%;
  position: relative; }

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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  border: 0;
  font: inherit;
  vertical-align: top;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  list-style: none;
  text-decoration: none;
  border: none;
  box-sizing: border-box;
  background-color: transparent; }

span, strong, a, abbr, time, acronym, b, bdo, big, br, button, cite, code, dfn, em, i, img, input, kbd, label, map, object, q, samp, script {
  line-height: inherit;
  font-style: normal; }

sup {
  vertical-align: super;
  font-size: 75%; }

/* settings */
.clearfix {
  zoom: 1; }
  .clearfix:before, .clearfix:after {
    content: "";
    display: table; }
  .clearfix:after {
    clear: both; }

@media print, screen and (min-width: 900px) {
  .contBox {
    display: flex;
    justify-content: space-between; } }
body {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400; }

img {
  width: 100%;
  height: auto; }
  @media print, screen and (min-width: 900px) {
    img.defsize {
      width: inherit;
      display: block; } }

i {
  vertical-align: baseline; }

@media screen and (max-width: 899px) {
  ._pc {
    display: none; }

  ._sp {
    display: block; } }
@media print, screen and (min-width: 900px) {
  ._sp {
    display: none !important; }

  ._pc {
    display: block; } }
a {
  cursor: pointer;
  text-decoration: none;
  color: #000;
  transition: color 0.3s, background 0.3s; }
  a img {
    transition: 0.3s; }

a:hover {
  color: #AF80B6;
  text-decoration: none; }
  a:hover img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"; }

p.h-button {
  margin-top: 35px;
  text-align: center; }
  p.h-button a {
    position: relative;
    border-bottom: 1px solid #000;
    padding: 5px 0;
    text-align: center;
    font-size: 1.2rem; }
    @media print, screen and (min-width: 900px) {
      p.h-button a {
        font-size: 1.4rem; } }
  p.h-button a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #AF80B6;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.5s; }
  p.h-button a:hover::after {
    transform: scale(1, 1);
    /*ホバー後、x軸方向に1（相対値）伸長*/
    transform-origin: left top;
    /*左から右に向かう*/ }

@media print, screen and (min-width: 900px) {
  article {
    max-width: 800px;
    margin: 0 auto; } }

.container {
  padding: 0 !important; }
  @media print, screen and (min-width: 900px) {
    .container {
      width: 100% !important; } }

.floatImg {
  margin: 15px auto; }
  @media print, screen and (min-width: 900px) {
    .floatImg {
      float: left;
      width: 195px;
      margin: 0 30px 30px 0; } }

.flexBox {
  width: 100%;
  margin-bottom: 30px; }
  @media print, screen and (min-width: 900px) {
    .flexBox {
      display: flex;
      justify-content: space-between;
      margin-bottom: 40px; } }
  @media print, screen and (min-width: 900px) and (min-width: 900px) {
    .flexBox li.btn {
      width: calc((100% - 10px) / 2); } }

  .flexBox.-wrap {
    flex-wrap: wrap; }
  .flexBox.-jc_start {
    justify-content: flex-start; }
  .flexBox.-jc_center {
    justify-content: center; }

article h1 + p, article h2 + p, article h3 + p, article ul + p {
  margin-top: 30px; }
article p + h1, article p + h2, article p + h3 {
  margin-top: 50px; }
article p + p {
  margin-top: 1em; }

/* header */
/*-------------------------------------------
ヘッダー
-------------------------------------------*/
/*
ハンバーガーメニュー
*/
@media screen and (max-width: 899px) {
  #navi {
    width: 100%;
    background: #fff;
    padding: 40px;
    position: fixed;
    top: 0px;
    right: -100vw;
    bottom: 0;
    opacity: 0;
    overflow-y: auto;
    transition: 0.5s;
    z-index: 20; }

  .open #navi {
    top: 0px;
    right: 0;
    opacity: 1; }

  #navi ul.nav-menu {
    margin-bottom: 30px; }

  .hamburger {
    width: 26px;
    height: 26px;
    cursor: pointer;
    position: fixed;
    top: 22px;
    right: 18px;
    transition: 0.5s;
    z-index: 20; }

  .hamburger span {
    width: 26px;
    height: 1px;
    background-color: black;
    border-radius: 4px;
    display: block;
    position: absolute;
    left: 0;
    transition: 0.5s; }

  .hamburger span:nth-child(1) {
    top: 1px; }

  .hamburger span:nth-child(2) {
    top: 11px; }

  .hamburger span:nth-child(3) {
    bottom: 4px; }

  .open .hamburger span {
    background-color: black; }

  .open .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
    background-color: black; }

  .open .hamburger span:nth-child(2) {
    opacity: 0; }

  .open .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg); }

  #mask {
    display: none;
    transition: 0.5s; }

  .open #mask {
    width: 100%;
    height: 100%;
    background-color: #000;
    cursor: pointer;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10; } }
#header {
  position: relative; }
  @media print, screen and (min-width: 900px) {
    #header {
      min-height: 125px; } }
  #header .h-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px; }
    @media print, screen and (min-width: 900px) {
      #header .h-bar {
        padding: 20px 30px 30px 50px; } }
    #header .h-bar .logo {
      position: absolute;
      top: 10px;
      left: 15px;
      text-align: center; }
      @media print, screen and (min-width: 900px) {
        #header .h-bar .logo {
          position: absolute;
          top: 20px;
          left: 50px; } }
      #header .h-bar .logo img {
        width: 50px; }
        @media print, screen and (min-width: 900px) {
          #header .h-bar .logo img {
            width: 66px; } }
      #header .h-bar .logo span {
        display: block;
        color: #AF80B6;
        margin-top: 15px;
        letter-spacing: 0.1em; }
    @media print, screen and (min-width: 900px) {
      #header .h-bar nav {
        display: flex; } }
  @media screen and (max-width: 899px) {
    #header .snsList {
      display: none; } }
  #header .snsList li {
    padding: 0;
    padding-right: 26px !important; }
    #header .snsList li img {
      width: 38px; }
  #header .icon_w, #header .logo_w {
    display: none; }

@media print, screen and (min-width: 900px) {
  .globalNav {
    display: flex;
    margin-right: 50px; } }
@media screen and (max-width: 899px) {
  .globalNav {
    width: calc(100% - 30px);
    margin: 0 auto; } }
.globalNav > li > a {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  padding: 15px 0; }
  @media print, screen and (min-width: 900px) {
    .globalNav > li > a {
      padding: 8px 30px;
      font-size: 1.5rem; } }
  @media screen and (min-width: 900px) and (max-width: 1180px) {
    .globalNav > li > a {
      padding: 8px 20px;
      font-size: 1.4rem; } }
.globalNav .subMenu {
  padding-bottom: 8px;
  margin: 10px 10px 0; }
  @media print, screen and (min-width: 900px) {
    .globalNav .subMenu {
      display: none; } }
  .globalNav .subMenu > li a {
    font-size: 1.2rem;
    line-height: 1.5;
    display: block;
    padding: 5px 0; }
  @media screen and (max-width: 899px) {
    .globalNav .subMenu:after {
      content: "";
      display: block;
      width: 170px;
      height: 0; } }
.globalNav a:hover {
  color: #AF80B6; }

.h-ecMenu {
  border-top: 1px solid black;
  margin-top: 25px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between; }
  .h-ecMenu a {
    font-size: 1.2rem; }

.h-ecMenu__list li {
  margin-bottom: 15px; }

@media screen and (max-width: 899px) {
  .h-header__cart {
    position: absolute;
    top: 20px;
    right: 65px;
    width: 25px; } }
.h-header__cart img {
  width: 38px; }

.top_online_Banner {
  display: none; }

/* footer */
footer #footer {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin: 25px 15px;
  border-top: 1px solid #000; }
  @media print, screen and (min-width: 900px) {
    footer #footer {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0;
      padding-top: 58px; } }
  @media screen and (max-width: 899px) {
    footer #footer .logo {
      display: none; } }
  footer #footer .logo img {
    width: 146px;
    margin-right: 40px; }
    footer #footer .logo img.logo_w {
      display: none; }
  @media print, screen and (min-width: 900px) {
    footer #footer ul {
      margin-left: 40px; } }
  footer #footer ul a {
    display: block; }
  footer #footer .h-site__name {
    font-size: 2.0rem;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 10px; }
    @media screen and (max-width: 899px) {
      footer #footer .h-site__name {
        display: none; } }
  footer #footer .h-site__desc {
    font-size: 1.5rem;
    text-align: left;
    line-height: 2.0; }
    @media screen and (max-width: 899px) {
      footer #footer .h-site__desc {
        display: none; } }
  footer #footer .h-mainMenu li a {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 5px;
    text-align: left; }
    @media screen and (max-width: 899px) {
      footer #footer .h-mainMenu li a {
        font-size: 1.2rem; } }
  footer #footer .h-footermenu li a {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 5px;
    text-align: left; }
    @media screen and (max-width: 899px) {
      footer #footer .h-footermenu li a {
        font-size: 1.2rem; } }
footer .h-copyright {
  text-align: center;
  padding: 20px 0 50px;
  font-size: 1.1rem; }
  @media print, screen and (min-width: 900px) {
    footer .h-copyright {
      padding: 90px 0 50px; } }
footer .btn_pageTop {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background-color: #AF80B6;
  border-radius: 100px;
  color: #1e6cf9;
  text-align: center;
  padding-top: 5px; }
  @media print, screen and (min-width: 900px) {
    footer .btn_pageTop {
      padding-top: 10px;
      width: 50px;
      height: 50px;
      right: 20px;
      bottom: 40px; } }
footer .bannerArea {
  margin: 90px 15px 0; }
  @media print, screen and (min-width: 900px) {
    footer .bannerArea {
      width: 800px;
      margin: 200px auto 0; } }
@media print, screen and (min-width: 900px) {
  footer .bn__onlineshop {
    width: 800px;
    margin: 0 auto; } }
@media print, screen and (min-width: 900px) {
  footer .realshopList {
    display: flex;
    justify-content: space-between;
    width: 800px;
    margin: 60px auto; } }
footer .realshopList li {
  margin-top: 25px; }
  @media print, screen and (min-width: 900px) {
    footer .realshopList li {
      width: 256px; } }
footer .snsList {
  display: flex;
  justify-content: center;
  padding: 20px; }
  footer .snsList img {
    width: 20px;
    display: block; }

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*.h-mainImg img{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;

}
*/
.h-mainImg img {
  margin-top: -30px;
  width: 100%; }
  @media print, screen and (min-width: 900px) {
    .h-mainImg img {
      margin-top: -130px; } }

article {
  margin: 0 15px; }
  @media print, screen and (min-width: 900px) {
    article {
      max-width: 800px;
      margin: 0 auto; } }
  article .h-heading01 {
    line-height: 1.8;
    font-size: 1.8rem;
    margin-top: 100px;
    text-align: center;
    letter-spacing: 0.1em; }
    @media print, screen and (min-width: 900px) {
      article .h-heading01 {
        font-size: 3.6rem;
        margin: 100px 0 90px; } }
  article .h-heading02 {
    line-height: 1.8;
    font-size: 1.5rem;
    margin-top: 100px;
    text-align: center; }
    @media print, screen and (min-width: 900px) {
      article .h-heading02 {
        font-size: 3.0rem;
        margin-top: 200px; } }
  article .h-heading03 {
    line-height: 1.8;
    font-size: 1.2rem;
    text-align: center; }
    @media print, screen and (min-width: 900px) {
      article .h-heading03 {
        font-size: 2.0rem; } }
  article .h-heading04 {
    font-size: 1.4rem;
    line-height: 1.8; }
  article p {
    font-size: 1.4rem;
    line-height: 1.8; }
  article .h-dlList dt {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 50px; }
    @media print, screen and (min-width: 900px) {
      article .h-dlList dt {
        font-size: 1.8rem; } }
  article .h-dlList dd {
    font-size: 1.4rem;
    line-height: 1.8; }
    @media print, screen and (min-width: 900px) {
      article .h-dlList dd {
        font-size: 1.6rem; } }
    article .h-dlList dd .payment_img {
      width: 36px;
      margin-right: 10px; }
  article .h-text01 {
    font-size: 1.2rem;
    margin-top: 40px;
    line-height: 2.2; }
    @media print, screen and (min-width: 900px) {
      article .h-text01 {
        font-size: 1.6rem;
        margin-top: 50px;
        text-align: center; } }
  article .h-text02 {
    font-size: 1.2rem;
    margin-top: 20px;
    line-height: 2.2;
    text-align: left; }
    @media print, screen and (min-width: 900px) {
      article .h-text02 {
        font-size: 1.6rem;
        margin-top: 25px;
        margin-left: 200px; } }
  article figure {
    margin: 40px 0 0; }
    @media print, screen and (min-width: 900px) {
      article figure {
        margin: 50px auto 0;
        width: 800px; } }
  article .sumireBox {
    background: #EBDFEB;
    padding: 12px;
    margin: 40px 0; }
    @media print, screen and (min-width: 900px) {
      article .sumireBox {
        margin: 60px auto;
        width: 800px; } }
    article .sumireBox .frame {
      border: 1px solid white;
      padding: 15px; }
      @media print, screen and (min-width: 900px) {
        article .sumireBox .frame {
          padding: 30px; } }
      article .sumireBox .frame .h-text01 {
        margin-top: 15px;
        text-align: center; }

/* アニメーション設定 */
.fade {
  opacity: 0;
  transform: translate3d(0, 30px, 0); }

.fade.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s; }

/* component */
/* line up
-------------------------------------------------*/
.section__title-h2 {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  margin: 40px 0 40px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  position: relative; }
  @media print, screen and (min-width: 900px) {
    .section__title-h2 {
      font-size: 2.4rem;
      margin: 90px 0 70px; } }
  .section__title-h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 20px;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: black; }

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 15px; }
  @media print, screen and (min-width: 900px) {
    .product-list {
      margin: 50px auto;
      width: 1080px; } }
  .product-list li {
    width: calc((100% - 12px) / 2);
    margin-bottom: 40px; }
    @media print, screen and (min-width: 900px) {
      .product-list li {
        width: calc((100% - 40px) / 2); } }
    .product-list li p {
      font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
    .product-list li .product-list__name {
      font-size: 1.2rem;
      font-weight: bold;
      margin-top: 15px; }
      @media print, screen and (min-width: 900px) {
        .product-list li .product-list__name {
          font-size: 2.0rem; } }
    .product-list li .product-list__price {
      font-size: 1.2rem;
      margin-top: 10px;
      display: block; }
      @media print, screen and (min-width: 900px) {
        .product-list li .product-list__price {
          font-size: 1.6rem; } }

/* link button ------------------------------------ */
.linkArrow {
  letter-spacing: 0;
  line-height: 1.4;
  color: #000;
  margin-top: 15px; }
  .linkArrow::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    margin-right: 8px;
    background-image: url("/assets/img/common/arrow_k.svg");
    background-repeat: no-repeat; }

.btnDownload {
  background-color: #AF80B6;
  text-align: center;
  font-size: 1.8rem;
  padding: 10px;
  display: inline-block;
  color: white;
  line-height: 1;
  padding: 16px 20px 16px 20px; }
  .btnDownload::before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 26px;
    margin-right: 0.6em;
    background-repeat: no-repeat;
    vertical-align: middle;
    color: white; }
  .btnDownload:hover {
    opacity: 0.8;
    background: #AF80B6; }

a.link_pdf::after {
  content: "";
  background: url("/assets/img/common/icon-pdf.svg") no-repeat center bottom/contain;
  width: 25px;
  height: 15px;
  display: inline-block;
  margin-left: 5px; }
  html.msie a.link_pdf::after {
    position: relative;
    top: 3px; }

a.link_blank::after {
  content: "";
  background: url("/assets/img/common/icon-blank.svg") no-repeat center center/contain;
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: revert;
  margin-left: 5px; }
  html.msie a.link_blank::after {
    position: relative;
    top: 3px; }

/* text --------------------------------------------- */
.secBox p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 1em; }
  @media print, screen and (min-width: 900px) {
    .secBox p {
      font-size: 1.6rem; } }

/* table --------------------------------------------- */
.simpleTable th, .simpleTable td {
  text-align: left;
  padding-bottom: 5px;
  padding-right: 5px;
  font-size: 1.4rem;
  line-height: 1.6; }
  @media print, screen and (min-width: 900px) {
    .simpleTable th, .simpleTable td {
      font-size: 1.6rem; } }
.simpleTable th {
  font-weight: 500;
  width: 60px; }
  @media print, screen and (min-width: 900px) {
    .simpleTable th {
      width: 70px; } }

.table01 {
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 15px;
  border-top: 1px solid #A7A7A7;
  border-left: 1px solid #A7A7A7;
  border-right: 1px solid #A7A7A7;
  font-size: 1.1rem;
  line-height: 1.4; }
  @media print, screen and (min-width: 900px) {
    .table01 {
      margin-bottom: 40px; } }
  .table01 th {
    font-weight: 500;
    vertical-align: middle;
    line-height: 1.4;
    background: #eee;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #A7A7A7;
    border-left: 1px solid #A7A7A7;
    font-size: 1.1rem; }
  .table01 td {
    padding: 5px;
    border-bottom: 1px solid #A7A7A7;
    border-left: 1px solid #A7A7A7;
    line-height: 1.4;
    font-size: 1.2rem; }
    @media print, screen and (min-width: 900px) {
      .table01 td {
        font-size: 1.4rem; } }
  .table01 .bd_left {
    border-left: 1px solid #A7A7A7; }

.table02 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border-top: 1px solid #A7A7A7;
  border-left: 1px solid #A7A7A7;
  border-right: 1px solid #A7A7A7;
  font-size: 1.2rem; }
  @media print, screen and (min-width: 900px) {
    .table02 {
      font-size: 1.6rem; } }
  .table02 thead th {
    text-align: center;
    background: #A7A7A7;
    color: white;
    border-left-color: white; }
    .table02 thead th:first-child {
      border-left-color: #A7A7A7 !important; }
  .table02 th {
    font-weight: 500;
    vertical-align: middle;
    background: #1e6cf9;
    padding: 5px;
    text-align: left;
    line-height: 1.6;
    font-size: 1.2rem;
    border-bottom: 1px solid #A7A7A7;
    border-left: 1px solid #A7A7A7; }
    @media print, screen and (min-width: 900px) {
      .table02 th {
        padding: 10px;
        font-size: 1.6rem; } }
    .table02 th small {
      font-weight: 300;
      font-size: 1.4rem;
      vertical-align: baseline;
      line-height: 1.4; }
      @media screen and (max-width: 899px) {
        .table02 th small {
          display: block; } }
  .table02 td {
    line-height: 1.7;
    padding: 5px;
    border-bottom: 1px solid #A7A7A7;
    border-left: 1px solid #A7A7A7; }
    @media print, screen and (min-width: 900px) {
      .table02 td {
        vertical-align: middle;
        padding: 15px;
        padding: 10px; } }
    .table02 td:last-child {
      text-align: right; }
  @media print, screen and (min-width: 900px) {
    .table02 .bd_left {
      border-left: 1px solid #A7A7A7; } }

/* list --------------------------------------------- */
.listStyle_ol {
  padding-left: 1.4em;
  margin-bottom: 4em; }
  .listStyle_ol li {
    list-style: decimal;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 5px; }
    @media print, screen and (min-width: 900px) {
      .listStyle_ol li {
        font-size: 1.6rem; } }
  .table01 .listStyle_ol {
    margin-bottom: 0; }

.listStyle li {
  border-bottom: 2px dotted #AF80B6;
  padding-bottom: 8px;
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 700; }
  @media print, screen and (min-width: 900px) {
    .listStyle li {
      text-align: center;
      width: 820px;
      margin: 0 auto 20px;
      font-size: 2.2rem; } }

.listStyle_link li {
  position: relative;
  font-size: 1.4rem;
  margin-top: 5px;
  line-height: 1.7;
  padding-left: 15px;
  margin-bottom: 15px; }
  @media print, screen and (min-width: 900px) {
    .listStyle_link li {
      font-size: 1.6rem;
      line-height: 1.8; } }
.listStyle_link li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  margin-right: 8px;
  background-image: url("/assets/img/common/arrow_k.svg");
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 5px; }

/* compornent --------------------------------------------- */
.contactBox {
  border: 5px solid #F5E1E8;
  padding: 15px;
  text-align: center;
  margin-top: 20px; }
  @media print, screen and (min-width: 900px) {
    .contactBox {
      padding: 20px;
      margin-top: 30px; } }
  .contactBox p {
    line-height: 1; }
  .contactBox .lead {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700; }
    @media print, screen and (min-width: 900px) {
      .contactBox .lead {
        margin-bottom: 25px;
        font-size: 1.8rem; } }
    .contactBox .lead span {
      border-bottom: 2px solid #AF80B6;
      padding-bottom: 3px; }
  .contactBox .telBox {
    margin-bottom: 0; }
    @media print, screen and (min-width: 900px) {
      .contactBox .telBox {
        display: flex;
        align-items: center;
        justify-content: center; } }
    .contactBox .telBox .telnum {
      color: #AF80B6;
      font-size: 2.8rem;
      font-weight: 700;
      border-bottom: none;
      display: block; }
      @media screen and (max-width: 899px) {
        .contactBox .telBox .telnum {
          margin-bottom: 10px; } }
    .contactBox .telBox b {
      font-size: 1.6rem;
      display: block; }

.contactBox2 {
  border: 1px solid #ccc;
  padding: 20px;
  line-height: 1.7;
  margin: 15px 0 20px; }
  .contactBox2 dt {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 10px; }
  .contactBox2 dd {
    line-height: 1.7;
    font-size: 1.6rem; }

.note {
  padding-left: 1em;
  position: relative;
  margin-top: 10px;
  font-size: 1.2rem !important;
  line-height: 1.5 !important; }
  @media print, screen and (min-width: 900px) {
    .note {
      font-size: 1.4rem !important; } }
  .note::before {
    content: "※";
    position: absolute;
    left: 0; }

p.numberTitle {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0 !important; }
  p.numberTitle span {
    line-height: 1.5; }
  p.numberTitle .num {
    color: #AF80B6;
    margin-right: 5px; }

.e-word {
  word-wrap: break-word;
  overflow-wrap: break-word; }

@media print, screen and (min-width: 900px) {
  a.telNum {
    border: none; }
    a.telNum:hover {
      color: #000; } }

/* utility */
.w190 {
  width: 190px !important; }

.w210 {
  width: 210px; }

.w150 {
  width: 150px; }

.w300 {
  width: 300px; }

.bg_lpink {
  background: #F5E1E8 !important; }

strong {
  font-weight: 500; }

b {
  font-weight: 700; }

.c_red {
  color: red; }

.mt15 {
  margin-top: 15px; }

.mt20 {
  margin-top: 20px !important; }

.ml10 {
  margin-left: 10px; }

.mb0 {
  margin-bottom: 0px !important; }

.mb20 {
  margin-bottom: 20px; }

.mb40 {
  margin-bottom: 40px; }

.pl10 {
  padding-left: 10px; }

.a_right {
  text-align: right; }

.a_center {
  text-align: center; }

.lh15 {
  line-height: 1.5; }

.fs_l {
  font-size: 1.8rem; }

.fw_m {
  font-weight: 500; }

.fw_b {
  font-weight: 700; }

.p_rerative {
  position: relative; }

@media screen and (max-width: 899px) {
  body .sp_w100p {
    width: 100% !important; }
  body .sp_mb15 {
    margin-bottom: 15px; } }
@media print, screen and (min-width: 900px) {
  body .pc_w110 {
    width: 110px; }
  body .pc_w630 {
    width: 630px !important; }
  body .pc_w750 {
    width: 750px; }
  body .pc_w980 {
    width: 980px; }
  body .pc_h220 {
    height: 220px;
    width: auto; }
  body .f_left {
    float: left; }
  body .f_right {
    float: right; }
  body .clearfix {
    zoom: 1; }
    body .clearfix:before, body .clearfix:after {
      content: "";
      display: table; }
    body .clearfix:after {
      clear: both; }
  body .pc_mr20 {
    margin-right: 20px; } }

.hover:hover {
  opacity: 0.8;
  cursor: pointer; }

/* 24px black */
.icon-lg-b.icon-s_facebook {
  background-position: -240px -264px; }
