@charset "UTF-8";

/* --------------------------------------------------

reset

-------------------------------------------------- */
html, 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, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

dl, dt, dd, ul, ol {
  list-style: none;
}

nav 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;
}

/* img {
  display: block;
} */

img, a {
  vertical-align: top;
}

a img {
  border: none;
  transition: all 0.6s;
}

a:hover img {
  opacity: 0.7;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* change colours to suit your needs */
ins {
  background: #ff9 repeat center center;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background: #ff9 repeat center center;
  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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* --------------------------------------------------

base

-------------------------------------------------- */
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  color: #333;
  font-size: 1.8rem;
  font-weight: 400;
  width: 100%;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  line-height: 1.5;
  min-width: 1280px;
  letter-spacing: 1px;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 1280px) {
  body {
    min-width: 0;
  }
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}

html, 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, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  box-sizing: border-box;
}

a {
  transition: all 0.3s;
  text-decoration: none;
}

img {
  max-width: 100%;
}

a:link, a:visited {
  color: #333;
}

a:hover, a:active {
  color: #707070;
  transition: all 0.3s;
}

.inner-l {
  width: 1280px;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .inner-l {
    width: 92%;
  }
}

.inner {
  width: 1020px;
  margin: 0 auto;
}

@media only screen and (max-width: 1020px) {
  .inner {
    width: 92%;
  }
}

.inner-m {
  width: 980px;
  margin: 0 auto;
}

@media only screen and (max-width: 980px) {
  .inner-m {
    width: 92%;
  }
}

br.pc-br {
  display: block;
}
@media only screen and (max-width: 768px) {
  br.pc-br {
    display: none;
  }
}

br.sp-br {
  display: none;
}
@media only screen and (max-width: 768px) {
  br.sp-br {
    display: block;
  }
}

svg {
  width: 100%;
  height: auto;
}

em, strong {
  font-weight: bold;
}

/* ボタン */


.navi-top a {
	color: #F61919;
  font-size: 2.5rem;
  font-size: min(2vw, 2.5rem);
	font-weight: bold;
	padding: 1em 2em;
	background: #FFF;
	border-radius: 0 0 1em 0;
	display: block;
	position: relative;
}

@media(max-width: 768px){
	.navi-top a {
		font-size: 1.5rem;
    border-radius: 0;
	}
}

.navi-top a:hover {
	opacity: 0.7;
}

.navi-top a::before {
	content: "";
	width: 0.3em;
	height: 0.3em;
	border-bottom: 5px solid #F61919;
	border-left: 5px solid #F61919;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	left: 1em;
	transform: translateY(-50%) rotateZ(45deg);
}

@media(max-width: 768px){
	.navi-top a::before {
    width: 0.5em;
	  height: 0.5em;
    border-bottom: 2px solid #F61919;
    border-left: 2px solid #F61919;
  }
  
}

.btn-center {
  margin: 1em 0 1em;
  text-align: center;
}

.btn-offer a {
  color: #FFF;
  font-size: 3.6rem;
  font-weight: bold;
  padding: 1em 4em;
  display: inline-block;
  background: #FF8800;
  border-radius: 3em;
  position: relative;
}

.btn-offer a:hover {
  opacity: 0.7;
}

.btn-offer a:before {
  content: "";
	width: 0.3em;
	height: 0.3em;
	border-top: 5px solid #FFF;
	border-right: 5px solid #FFF;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	right: 2em;
	transform: translateY(-50%) rotateZ(45deg);
}

@media(max-width: 768px){
  .btn-offer a:before {
    width: 0.4em;
    height: 0.4em;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
  }
}

.btn-offer a {
  color: #FFF;
  font-size: 3.6rem;
  font-weight: bold;
  padding: 1em 4em;
  display: inline-block;
  background: #FF8800;
  border-radius: 3em;
  position: relative;
}

@media(max-width: 768px){
	.btn-offer a {
    font-size: 1.8rem;
    padding: 1.5em 4em;
    display: block;
  }
}

.btn-access a {
  color: #10B863;
  font-size: 3.6rem;
  font-weight: bold;
  padding: 0.5em 4em;
  display: inline-block;
  background: #FFF;
  border: 1px solid #10B863;
  border-radius: 3em;
  position: relative;
}

.btn-access a:hover {
  opacity: 0.7;
}

@media(max-width: 768px){
  .btn-access a {
    font-size: 1.3rem;
    white-space: nowrap;
  }
}

/* テキスト */

.txt-center {
	font-size: 2.2rem;
	line-height: 1.8;
	margin-bottom: 3em;
	text-align: center;
}

@media(max-width: 768px){
  .txt-center {
    font-size: 1.2rem;
    margin-bottom: 2em;
  }
}

/* タイトル */

.ttl-shougi {
	margin-bottom: 3em;
}

@media(max-width: 768px){
  .ttl-shougi {
    margin-bottom: 2em;
  }
}

.ttl-access {
  color: #2FC87B;
  font-size: 6rem;
  font-size: min(4vw, 6rem);
  font-weight: bold;
  text-align: center;
}

@media(max-width: 768px){
  .ttl-access {
    font-size: 2rem;
  }
}

.ttl-access:after {
  content: "";
  width: 2em;
  height: 12px;
  margin: 0.2em auto 0;
  background: #A1F5CB;
  display: block;
}

@media(max-width: 768px){
  .ttl-access:after {
    height: 7px;
  }
}

.ttl-s {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1;
  padding-left: 0.5em;
  border-left: 11px solid #2FC87B;
}

@media(max-width: 768px){
  .ttl-s {
    font-size: 2.0rem;
    border-left: 6px solid #2FC87B;
  }
}

.txt-indent {
  font-size: 2.2rem;
  text-indent: 1em;
}

@media(max-width: 768px){
  .txt-indent {
    font-size: 1.2rem;
    text-indent: 1.2em;
  }
}

/* スマホのみタップで電話発信 */
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}