@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 14px;
	height: 100%;
}

body {
	margin: 0;
  padding:0;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	-webkit-text-size-adjust: none;
	background: var(--base-color);		/*varは背景色のことで冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。冒頭で指定しているbase-inverse-colorを読み込みます。*/
	line-height: 2;		/*行間*/
}

.container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  letter-spacing: 0.05em;
}
.container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 14%;
  background: url(../images/img_01.jpg);
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 100%);
}
.container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 14%;
  background: url(../images/img_03.jpg);
  background-size: cover;
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}
.logo {
  width: 80%;
  max-width: 256px;
  margin: 0;
}
.logo img {
  width: 100%;
  height: auto;
}
h2 {
  position: relative;
  margin: 2em 0 0;
  color: #002d81;
  font-size: 1.2rem;
}
h2::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  transform: rotate(60deg);
  background-color: #002d81;
  vertical-align: middle;
}
h2::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  transform: rotate(-60deg);
  background-color: #002d81;
  vertical-align: middle;
}
p {
  font-size: 1rem;
}
.number {
  color: #002d81;
  margin-bottom: 0;
  line-height: 1.2;
}
.number i {
  font-size: 1.65rem;
  margin-right: 0.2em;
}
.tel {
  color: #002d81;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
}
.number + p {
  margin: 0;
  font-size: 0.9rem;
  color: #002d81;
}
.bg-pattern3 {
  background-image: url("../images/bg_pattern3.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: 10px;
}

.container > * {
  animation-name: fadeIn1s;
  animation-delay: 0.5s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transform: translateY(20px);
  opacity: 0;
}
.container > h2, .container > p {
  animation-delay: 1.4s;
}
@keyframes fadeIn1s {
  0% {
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}

@media screen and (min-width:1000px) {

  html, body {
    font-size: 17px;
  }

}

@media screen and (min-width: 768px) {
  a.tel {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
    cursor: default;
  }
}