@charset "UTF-8";
/*390px基準のvw換算リスト
12px → 3.1vw
13px → 3.3vw
14px → 3.6vw
15px → 3.8vw
16px → 4.1vw
17px → 4.4vw
18px → 4.6vw
20px → 5.1vw
24px → 6.2vw

375px基準のvw換算リスト
12px → 3.3vw
13px → 3.5vw
14px → 3.8vw
15px → 4.1vw
16px → 4.3vw
17px → 4.5vw
18px → 4.9vw
20px → 5.4vw
24px → 6.5vw
*/
/*common*/
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: M PLUS\ 1p, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, 游ゴシック, Yu Gothic, 游ゴシック体, YuGothic, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  margin: 0;
  color: #1a1a1a;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media only screen and (max-width: 1023px) {
  body {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

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

picture {
  display: block;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  width: 100%;
  height: auto;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #1a1a1a;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 1024px) {
  a:hover {
    opacity: 0.7;
  }
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }
  .pc_in {
    display: inline !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  a,
  a::before,
  a::after,
  button {
    transition: 0.3s ease-in-out;
  }
}
/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
@media only screen and (max-width: 1023px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  .pc {
    display: none !important;
  }
  .pc_in {
    display: none !important;
  }
}
/* --------------------------------
c-hamburgermenu
----------------------------------- */
/* menu-btn
   ========================================================================== */
.c_menu_btn {
  display: block;
  position: fixed;
  width: 40px;
  height: 40px;
  z-index: 110;
  cursor: pointer;
  top: 2%;
  right: 10px;
  border-radius: 5px;
}

.c_menu_btn_icon {
  display: block;
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  width: 40px;
  height: 8px;
  margin: auto;
  background: #3479e0;
  transition: 0.2s;
}

.c_menu_btn_icon:before, .c_menu_btn_icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 8px;
  background: #3479e0;
  transition: 0.3s;
}

.c_menu_btn_icon:before {
  margin-top: 12px;
}

.c_menu_btn_icon:after {
  margin-top: -12px;
}

.c_menu_btn .close {
  background: transparent;
}

.c_menu_btn .close:before {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
}

.c_menu_btn .close:after {
  transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
}

.c_menu_btn .close:before, .c_menu_btn .close:after {
  margin-top: 0;
  background: #3479e0;
}

/* is-sp-menu
  ========================================================================== */
@media only screen and (max-width: 1023px) {
  .is-sp-menu {
    z-index: 100;
    cursor: pointer;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: #fff;
    transition: 0.5s;
    display: none;
  }
  .is-sp-menu.zindex {
    z-index: 103;
    display: block;
  }
  html.is-menu-open {
    height: 100%;
    overflow: hidden;
  }
  body.is-menu-open .is-sp-menu {
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
  }
}