@charset "utf-8";
/*-----	reset
------------------------------------------------ */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, small {
  display: block;
}
*, *::before, *::after {
  box-sizing: border-box
}
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none
}
h1, h2, h3, h4 /*,button,input,label*/ {
  line-height: 1.1;
}
h1, h2, h3, h4 {
  text-wrap: balance;
  font-weight: 700;
}
picture {
  display: block;
  max-width: 100%;
}
img {
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit
}
textarea:not([rows]) {
  min-height: 10em
}
:target {
  scroll-margin-block: 5ex
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*-----	base
------------------------------------------------ */ :root {
  --keyc: #31A1C0;
  --keyc-rgb: 49 161 192;
  --cl-main: #084C6C;
  --cl-sub01: #BD6856;
}
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  min-height: 100vh;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  /*  letter-spacing: .05em;*/
}
a img {
  border: none;
}
a {
  color: #333;
  text-decoration: none;
  outline: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover, a:hover img {
  opacity: 0.7;
  transition: opacity .20s ease-in-out;
}
a:focus {
  outline: none;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.inner {
  width: min(96%, 1200px);
  margin: auto;
}
.txt-bld {
  font-weight: 700;
}
.sec {
  margin-top: clamp(2.5rem, 0.833rem + 5.56vw, 5rem);
}
.flx {
  display: flex;
}
.icn {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.memo {
  padding: 30px 0;
  text-align: center;
  color: red;
}
/*-----	header
------------------------------------------------*/
.header-inner {
  display: flex;
  gap: 0 4%;
  align-items: center;
  justify-content: space-between;
}
.hd-logo {
  position: relative;
  display: inline-block;
}
.hd-contents {
  flex: 1;
}
#gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2%;
    gap:1rem 2.5%;
  font-weight: 700;
}

#gnav li a {
  display: block;
  text-align: center;
}
#gnav li.nav-dl {
  margin-left: 2%;
}
#gnav li.nav-dl a, #gnav li.nav-contact a {
  padding: .2em 1em;
  color: #fff;
  border-radius: 100vmax;
}
#gnav li.nav-dl a {
  background: var(--keyc);
}
#gnav li.nav-contact a {
  background: var(--cl-sub01)
}
.spbtnbox {
  display: none;
}
@media screen and (max-width: 980px) {

  .spbtnbox {
    display: block;
    position: relative;
    width: 42px;
    height: 42px;
    margin: 10px;
    cursor: pointer;
    z-index: 999;
  }
  .spbtnbox::before {
    content: "";
    position: absolute;
    display: block;
    width: 42px;
    height: 100%;
    top: 0;
    right: 0
  }
  .spbtnbox:hover {
    opacity: 1;
  }
  .spbtnbox.open .spbtn {
    background: transparent;
  }
  .spbtnbox.open .spbtn:before, .spbtnbox.open .spbtn:after {
    margin-top: -2px;
  }
  .spbtnbox.open .spbtn:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .spbtnbox.open .spbtn:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  .spbtnbox .spbtn {
    display: block;
    position: absolute;
    top: 50%;
    left: 20%;
    width: 30px;
    height: 2px;
    background: #333;
    transition: .2s;
  }
  .spbtnbox .spbtn:before, .spbtnbox .spbtn:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 20%;
    width: 30px;
    height: 2px;
    margin-left: -6px;
    background: #333;
    transition: .3s;
  }
  .spbtnbox .spbtn:before {
    margin-top: -12px;
  }
  .spbtnbox .spbtn:after {
    margin-top: 10px;
  }
  .hd-contents {
    display: none;
    position: absolute;
    width: 100%;
    top: 72px;
    left: 0;
    padding: 20px;
    background: var(--keyc);
    z-index: 9999;
  }
  .header-navi {
    padding: 20px;
    background: #fff;
  }
  .hd-logo {
    width: 200px;
  }
  #gnav {
    flex-direction: column;
  justify-content: center;
  padding-right: 0;
}
    
    /*
  #gnav li + li {
    border-top: 1px solid #ddd;
  }*/
  #gnav li a {
    padding: .5em;
  }
    #gnav li.nav-dl {
    margin-left:0;
}
}
@media screen and (min-width: 981px) {
  .hd-contents {
    display: block;
  }
}
/*-----	footer
------------------------------------------------*/
#footer {
  margin-top: auto;
}
#footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#footer .footer-section {
  padding: 2rem 0;
  background: #084C6C;
}
#footer .inner {
  text-align: center;
}
.copyright {
  font-size: 1.2rem;
  color: #bbb;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 480px) {
  #footer .inner {
    flex-direction: column;
    justify-content: center;
  }
  .footer-links {}
}
/*-----	form
------------------------------------------------*/
input::placeholder {
  font-size: 1.2rem;
  color: #777;
}
.input-range, .txt-telbox, .txt-sbox, .txt-box, .selectbox, .txt-area {
  padding: 5px 10px;
  height: 35px;
  border: 1px solid #cdd7e5;
  border-radius: 3px;
  background-color: #fff;
}
.txt-area {
  width: 100%;
  resize: vertical;
  height: 100px;
}
.txt-telbox {
  width: 100px;
}
.txt-sbox {
  width: 35%;
}
.txt-box {
  width: 100%;
}
label {
  vertical-align: middle;
}
input[type="radio"] {
  position: relative;
  /*top:4px;*/
  margin-right: .3em;
  width: 20px;
  height: 20px;
}
input[type="checkbox"] {
  appearance: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #B5C2D3;
  vertical-align: -5px;
  border-radius: 3px;
  background: #fff;
}
input[type="checkbox"]:checked:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(45deg);
  width: 6px;
  height: 10px;
  border-right: 3px solid #496896;
  border-bottom: 3px solid #496896;
  border-radius: 2px;
}
.required {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 8px;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: normal;
  color: #fff;
  background: #BD6856;
  border-radius: 5px;
  flex-shrink: 0;
}
.frm_note {
  margin: .5em 0;
}
.frm-gr {
  display: flex;
  align-items: center;
  gap: 1em 1.5em;
  padding: 1.5em 0;
  border-top: 1px solid #ddd;
}
.frm-hd {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}
.frm-data {
  flex: 1;
}
.frm-data label + label {
  margin-left: 1.5em;
}
.frm-btn-box {
  display: flex;
  margin-top: 3em;
  gap: 20px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.frm-btn {
  display: inline-block;
  font-size: 1.6rem;
  padding: .4em 2em;
  color: #fff;
  border-radius: 100vmax;
  cursor: pointer;
  border: none;
  background: var(--cl-main);
}
.frm-btn-gray {
  background: #888;
}
.form-control {
  position: relative;
}
.form-control .icon-pass {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.frm-support {
  margin-top: 1em;
}
.s_note {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
}
.frm-sp {
  margin-top: .5em;
}
/*-----	error
------------------------------------------------*/
.txt-box.error, .txt-sbox.error, .selectbox.error, .txt-area.error {
  border-color: #ED4747;
  background: #FCF0F0;
}
.errortxt {
  display: block;
  font-size: 1.4rem;
  color: #ED4747;
}
.errortxt::before {
  content: "\f071";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.4rem;
  padding-right: .5rem;
}
.errortxt i {
  padding-right: .5rem;
}
@media screen and (max-width: 768px) {
  .frm-gr {
    flex-direction: column;
    align-items: flex-start;
  }
  .frm-hd {
    width: 100%;
    justify-content: flex-start;
  }
  .frm-data {
    width: 100%;
  }
  .frm-data label {
    display: block;
  }
  .frm-data label + label {
    margin-top: .5em;
    margin-left: 0;
  }
}