@charset "utf-8";
/*----------------------------------------------------
    基本
----------------------------------------------------*/

/* WEBフォント
----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lora&family=Noto+Serif+JP&display=swap");

.font_Lora {
  /* font-family: 'Lora', serif !important; */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.font_NotoSerif {
  font-family: "Noto Serif JP", serif !important;
  font-weight: 400;
}

@font-face {
  /* font-family: 'icomoon'; */
  font-family: "Noto Sans JP", sans-serif;
  src: url("../fonts/icomoon.eot?ltjyw7");
  src:
    url("../fonts/icomoon.eot?ltjyw7#iefix") format("embedded-opentype"),
    url("../fonts/icomoon.ttf?ltjyw7") format("truetype"),
    url("../fonts/icomoon.woff?ltjyw7") format("woff"),
    url("../fonts/icomoon.svg?ltjyw7#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icomoon-"],
[class*=" icomoon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  /* font-family: 'icomoon' !important; */
  font-family: "Noto Sans JP", sans-serif;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icomoon-check:before {
  content: "\e900";
}

.icomoon-fast-forward_b:before {
  content: "\e901";
}

.icomoon-fast-forward_r:before {
  content: "\e902";
}

.icomoon-fukidashi:before {
  content: "\e903";
}

.icomoon-next:before {
  content: "\e904";
}

.icomoon-previous:before {
  content: "\e905";
}

.icomoon-send:before {
  content: "\e906";
}

/* Color
---------------------------*/
.font_red {
  color: #d00024;
}

.font_blue {
  color: #1d2087;
}

/* リンク
----------------------------------------------------*/
a {
  opacity: 1;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  color: #565656;
}

a:hover {
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
  -khtml-opacity: 0.5;
  text-decoration: none;
  color: #565656;
}

/* BUTTON
---------------------------*/
.btn,
.btn img {
  /*display: block;*/
}

.btn:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
  -khtml-opacity: 0.7;
}

.out {
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
}

/* =====================================================================
*    common
* =================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  display: block;
  color: #565656;
}

p {
  margin-bottom: 1rem;
}

@media screen and (min-width: 992px) {
  p {
    font-size: 18px;
    line-height: 1.8;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 1.6;
  }
}

img {
  max-width: 100%;
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari用 */
}
