@charset "UTF-8";

/*=============================================================================

共通

=============================================================================*/
* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html {
  -webkit-font-smoothing: antialiased;
  height: 100%;
  /* safariちらつき回避 */
}

/*
 * 共通CSS
 */
/*---  Font  ---*/
@font-face {
  font-family: "NotoSansJpR";
  font-style: "normal";
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
}

@font-face {
  font-family: "NotoSansJpB";
  font-style: "bold";
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.otf") format("opentype");
}

@font-face {
  font-family: "NotoSansJpM";
  font-style: "medium";
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.otf") format("opentype");
}

body {
  font-family: "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #11161C;
  background-color: #cee7f5;
  width: 100%;
  overflow-y: scroll;
  font-size: 16px;
}

.notoS {
  font-family: "NotoSansJpR", sans-serif;
}

.hiragi {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}

.merio {
  font-family: "メイリオ", "Meiryo", sans-serif;
}

button {
  transition: 0.3s linear;
}

button:focus {
  outline: 0;
}

button:hover {
  opacity: 0.8;
  transition: 0.3s linear;
}

.full_img {
  max-width: unset;
  width: 100%;
}

a {
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s linear;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

a:focus {
  text-decoration: none;
  outline: none;
}

a:hover img {
  opacity: 0.8;
}

a img {
  transition: 0.3s linear;
}

.common_width {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.common_width_1485 {
  max-width: 1485px;
  width: 90%;
  margin: auto;
}

img {
  width: 100%;
  height: auto;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

input:focus {
  outline: none;
}

picture,
video {
  display: block;
  font-size: 0;
  line-height: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}


.pc_flex,
.d_flex {
  display: flex;
}

.pc_block,
.d_block {
  display: block;
}

.sp_flex,
.sp_block,
.small_sp_block,
.d_none {
  display: none;
}

.absolute {
  position: absolute;
}

.\-top-2 {
  top: -2;
}

/*/////////////////*/
/*/////SP-area/////*/
/*/////////////////*/
@media screen and (max-width: 767px) {

  .pc_flex,
  .pc_block {
    display: none !important;
  }

  .sp_block {
    display: block !important;
  }

  .sp_flex {
    display: flex !important;
  }
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}