@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
:root {
  --black: #010101;
  --blue: #0d76b7;
  --light-blue: #e7eef0;
  --gray: #f5f5f5;
  --font-jp: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Lato", sans-serif;
  --hover: 0.7;
  --hover-trans: 0.4;
  --sp-mgt: 70px;
  --pc-mgt: 110px;
  --sp-sec: 20px;
  --cont-width: 1200px;

	--header: 80px;
	scroll-padding: var(--header);
}
@media screen and (min-width: 1200px){
    :root{
        --header: 170px;
    }
}

/*-----------------------------------------------------
	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;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*-----------------------------------------------------
	base
-----------------------------------------------------*/
html {
  font-size: 62.5%;
  /* scroll-behavior: smooth; */
}

body {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--black);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

img {
  width: 100%;
  vertical-align: bottom;
}

@media print, screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/* 表示切り替え
-----------------------------------------------------*/
.is-pc {
  display: none;
}

.is-sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
a {
  min-height: initial !important;
  min-width: initial !important;
}
a:hover {
  opacity: var(--hover);
}

/* テキスト
-----------------------------------------------------*/
.item-center {
  text-align: center;
}

.item-right {
  text-align: right;
}

.item-left {
  text-align: left;
}
