@charset "UTF-8";

/*!
 * タイトルなど
 *
 * Copyright (C) ●●など
 */

/*********************************
	ヘッダーの設定
*********************************/

/*------　ヘッダーの設定 -------*/

/* ここにコメントを追記 */

/* ===========================================
 * MAIN
 * ======================================== */

/* sub */
/* ======================================== */

/* カラースキームの定義 */
:root {
  --primary-color: #113966;
  /* 濃い青色 */
  --secondary-color: #cde4ff;
  /* 明るい青色 */
  --text-color: #000;
  /* 文字色＝黒色 */
  --background-color: #fff;
  /* 背景＝白色 */
}

/* CSS変数を使用して色を指定 */
body {
  background-color: var(--primary-color);
  background-color: var(--secondary-color);
  background-color: var(--text-color);
  background-color: var(--background-color);

  color: var(--primary-color);
  color: var(--secondary-color);
  color: var(--text-color);
}

a {
  color: var(--text-color);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* スマホ揺らぎ確認用CSS */
/* *,
*::after,
*::before {
  outline: 1px solid rgb(234, 4, 234);
  opacity: 1 !important;
} */

body {
  background-color: #ffffff;
}

a {
  text-decoration: none;
}

img {
  width: 100%
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* ボタンCSSリセット */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* コピペ用コード */
.font-size-dummy {
  font-size: .75rem;
  /* 12px */
  font-size: .8125rem;
  /* 13px */
  font-size: .875rem;
  /* 14px */
  font-size: 1rem;
  /* 16px */
  font-size: 1.25rem;
  /* 20px */
  font-size: 1.75rem;
  /* 28px */
}

/* スマホ用コード */
.pc {
  display: none;
}

.sp {
  display: block;
}

.subVisual {}

.subVisual .inner {}


.subVisual .inner .background {
  width: 100%;
  height: 30vh;
  background-image: url(../img/slide-04-sp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* osteopathy
cst
meridianTherapy
contact  */

.subVisual .inner .background.osteopathy {
  background-image: url(../img/slide-02-sp.jpg);
}

.subVisual .inner .background.cst {
  background-image: url(../img/slide-05-sp.jpg);
}

.subVisual .inner .background.meridianTherapy {
  background-image: url(../img/slide-06-sp.jpg);
}

.subVisual .inner .background h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  font-family: "Montserrat", sans-serif;
  text-shadow: 2px 2px 0 #fff;
  color: #c9171e;
  width: 100%;
  text-align: center;
  line-height: 1.5;
  font-size: 6vw;
}


@media screen and (min-width:640px) {
  /* sm: min-width:640px; */
}

@media screen and (min-width:768px) {
  /* md: min-width:768px;
  iPad/mini/air */

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }
}

@media screen and (min-width:1024px) {
  /* lg: min-width:1024px;
  iPad Pro 12.9*/

  .subVisual .inner .background {
    width: 100%;
    height: 50vh;
    background-image: url(../img/slide-04-2400x1500.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  /* osteopathy
cst
meridianTherapy
contact  */

  .subVisual .inner .background.osteopathy {
    background-image: url(../img/slide-02-2400x1500.jpg);
  }

  .subVisual .inner .background.cst {
    background-image: url(../img/slide-05-2400x1500.jpg);
  }

  .subVisual .inner .background.meridianTherapy {
    background-image: url(../img/slide-06-2400x1500.jpg);
  }

  .subVisual .inner .background h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    font-family: "Montserrat", sans-serif;
    text-shadow: 2px 2px 0 #fff;
    color: #c9171e;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    font-size: 4vw;
  }
}

@media screen and (min-width:1280px) {
  /* xl: min-width:1280px;
  Android Tablet　Fire HD 10 10インチ*/
}