@charset "utf-8";
/* CSS Document */
/* *********************************************

		Mobile first

********************************************* */


/* ======================================
    Reset CSS 
====================================== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, main,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
	font-weight: normal;
	font-style: normal;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
body {
  line-height:1;
}
article,aside,details,figcaption,figure,main,
footer,header,menu,nav,section { 
  display:block;
}
nav ul,ul {
  list-style:none;
}
blockquote, q {
  quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content:'';
  content:none;
}
a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}
mark {
  background-color:#ff9;
  color:#000; 
  font-style:italic;
  font-weight:bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
hr {
  display:block;
  height:1px;
  border:0; 
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}
/* form reset
------------------------------- */
input, select {
  vertical-align:middle;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea{
   -webkit-appearance: none;
   border-radius: 0;
}
/* IE text マーク削除 */
input::-ms-clear {
  visibility: hidden;
}
/* IE password マーク削除 */
input::-ms-reveal {
  visibility: hidden;
}
/* =========================================
    フォント設定 import
======================================= */
@import url('font.css'); /* 不要なら削除 */

/* ======================================
    Base (SP)
====================================== */
html {
  background: #fff;
  overflow-x: hidden;
  text-align: center;
  font-size: 62.5%;/* vw未対応OSのため残す */
  font-size: 2.67vw;/* 375pxで文字サイズ10px */
}
body {
	width: 100%;
	margin: 0 auto;
	line-height: 1.6;
  word-wrap: break-word;
  letter-spacing: 0.01em;
  /* background: #6da6e4; */
  /******* Select font-family **********/
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;      /* ゴシックの場合 */
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", "YuMincho", serif; /* 明朝の場合 */
	font-family: 'Noto Sans', 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset', sans-serif;                /* Noto Sansの場合 */
	font-family: 'Noto Serif Japanese', serif;  /* Noto Serifの場合 */

  font-size: 14px;
  font-size: 1.4rem;

}

/***** フェードインアニメーション ******/
body {
  animation: fadeIn 3s ease 0s 1 normal;
}
/*セレクタ名 {
    animation: 名前 開始から終了までの時間 進行の度合い 開始時間 繰り返し回数 再生方向 開始前・終了後のスタイル 再生・停止;
}*/
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
/****************************************/
h1 {
	font-size: 2.4rem;
  line-height: 1em;
  text-align: left;
}
h2 {
  margin-bottom: 1em;
	font-size: 2rem;
  line-height: 1.5;
}
h3{
  margin-bottom: 1em;
	font-size: 1.6rem;
  line-height: 1;
}
p {
  /* bodyのフォントサイズで調整 */
	line-height: 1.6;
  text-align: justify;
}
/* svgのIEバグ回避 */
img[src$=".svg"] {
  width: 100%;
  height: auto;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;/*画像同士の隙間防止*/
}
a img {
  border: none;
  transition: opacity 0.4s;
}
small {
	text-align: center;
	font-size: 1.0rem;
	font-style: normal;
}
address {
	font-style: normal;
}
hr {
  background: #000;
  margin-bottom: 3em;
}
/* リンク----------------------------- */
a {
  color: inherit;/* googleデフォルト#1111cc */
  -webkit-backface-visibility: hidden; /* ブレ防止追加 */
          backface-visibility: hidden;
  transition: all 0.4s ease-in-out;
}
a:link {
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  /*text-decoration: underline;*/
}
a:visited {
  text-decoration: none;
  /*text-decoration: underline;*/
}
a:active {
  text-decoration: none;
}

/* ======================================
    Common Class (SP)
====================================== */
.spNone {
  display: none!important;
}
.tabNone {
  display: none!important;
}
.pcNone {
  display: block!important;
}
.onlySp {
  display: block!important;
}
.onlyTab {
  display: none!important;
}
.onlyPc {
  display: none!important;
}
.flex_box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.boxRelative {
  position: relative;
}
.boxBlock {
  display: block;
}
.box_center {
  /*上下左右真ん中*/
  position: absolute;
  top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.box_H_center {
	/*左右真ん中*/
  position: absolute;
	left: 50%;
  transform: translate(-50%,0%);
}
.scroll-prevent {
  /*動き固定*/
  position: fixed;
  /*奥行きを管理*/
  z-index: -1;
  /*下2つで背景を元のサイズのまま表示することができる*/
  width: 100%;
  height: 100%;
}
.boxFlex_sp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.boxLeft_sp {
	float: left;
}
.boxRight_sp {
	float: right;
}
/* スクロールで表示(Js必要) */
.fadeInUp {
  opacity : 0;
  transform: translateY(80px);
  transition: 1s;
}
.fadeInLeft {
  opacity: 0;
  transform: translateX(-400px);
  transition: 1s;
}
.fadeInRight {
  opacity: 0;
  transform: translateX(400px);
  transition: 1s;
}
.fadeIn {
  display: none;
}
.small {
  font-size: 70%;
}
.red {
  color: #f00;
  font-weight: bold;
}
/* ======================================
    Common Frame (SP)
====================================== */

section,
.section  {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
}
.sec-inner,
.box-inner {
  width: 89.3333%;/* 670/750 */
  margin: 0 auto;
}
/* ======================================
    header (SP)
====================================== */
header {
  width: 100%;
  height: 100vw;
  margin: 0 auto;
  padding-top: 1.5em;
  background: url(../images/header_back_sp.png) no-repeat center top/cover;
}
header h1 {
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}
header h1 span {
  display: block;
  margin-bottom: .6em;
}
.h1-ch2 {
  font-size: 2rem;
  margin-bottom: 0;
}
.h1-ch3 {
  font-size: 3.5rem;
}
.box-covid {
  display: inline-block;
  padding: .3em .9em;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
}
/* ======================================
    footer (SP)
====================================== */
footer {
  width: 100%;
  height: auto;
  padding: 2em 1em .3em;
  margin: 0 auto;
  background: #009900;
	font-family: 'Noto Sans', 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset', sans-serif;                /* Noto Sansの場合 */
  color: #fff;
}
/*================================
  ▼ブレイクポイントのルール▼
  *〜479px：SP縦
  *480px〜：SP横
  *600px〜タブレット
  *768px〜1024 iPad
  *1025px〜小型PC
  *1680px〜大型PC
================================*/

/* ----------mobaile_fast------------ */
@media screen and (min-width:480px) { 
	/*　for iPhone (iPhone 横)　*/
}
@media screen and (min-width:600px) {
	/*　for タブレット 　*/
  /* ======================================
      Base (min-width:600px)
  ====================================== */
  html {
    font-size: 1.67vw;/* 600pxで文字サイズ10px */
  }
  /* ======================================
      Common Class (min-width:600px)
  ====================================== */
  .spNone {
    display: block!important;
  }
  .onlySp {
    display: none!important;
  }
  .onlyTab {
    display: block!important;
  }
	.boxFlex_sp {
		display: block;
	}
	.boxLeft_sp {
		float: none;
	}
	.boxRight_sp {
		float: none;
	}
  /* ======================================
      Common Frame (min-width:600px)
  ====================================== */
  .sec-inner,
  .box-inner {
    max-width: 600px;
  }
}
@media screen and (min-width:768px) {
	/* for iPad 768-1024px */
  /* ======================================
      Base (min-width:768px)
  ====================================== */
  html {
    font-size: 1.3vw;/* 600pxで文字サイズ10px */
  }
}
@media screen and (min-width:960px) {
  /* ======================================
      Base (min-width:960px)
  ====================================== */
  html {
    font-size: 1.04vw;/* 600pxで文字サイズ10px */
  }
  /* ======================================
      header (min-width:960px)
  ====================================== */
  header {
    width: 100%;
    height: 54.16vw;
    margin: 0 auto;
    padding-top: 10em;
    background: url(../images/header_back_pc.png) no-repeat center top/contain;
  }
}
@media screen and (min-width: 1025px) {
  /*　for PC　*/
  /* ======================================
      Base (min-width:1025px)
  ====================================== */
  html {
    font-size: .98vw;/* 文字サイズ10px */
  }
  body {
    font-size: 15px;
    font-size: 1.5rem;
  }
  /* リンク----------------------------- */
  a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  a:hover img {
    opacity: 0.7;
  }
  a[href^='tel:'] {
      pointer-events: none;
  }
  /* ======================================
      Common Class (min-width:1025px)
  ====================================== */
  .onlyTab {
    display: none!important;
  }
  .pcNone {
    display: none!important;
  }
  .onlyPc {
    display: block!important;
  }
  .flex_box_pc {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1366px) {
  /*　for PC　*/
  /* ======================================
      Base (min-width:1366px)
  ====================================== */
  html {
    font-size: 0.73vw;/* 文字サイズ10px */
  }
}
@media screen and (min-width: 1680px) {
  /*　for PC　*/
  /* ======================================
      Base (min-width:1680px)
  ====================================== */
  html {
    font-size: .6vw;/* 文字サイズ10px */
  }
}