@charset "UTF-8";
/*******************************************
	@共通項目
********************************************/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8;
  word-wrap: break-word;
  word-break: break-word;
  font-style: 400;
  color: #222;
  background-color: #fff;
}
@media screen and (min-width: 768px), print {
  body {
    margin-top: 71px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}

.notosans {
  font-family: "Noto Sans JP", sans-serif;
}

main {
  position: relative;
  height: 100%;
  background-image: url(../img/star5.svg), url(../img/star4.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left 20px bottom, right 0 bottom;
  background-size: 20%, 25%;
}
@media screen and (min-width: 768px) {
  main {
    background-image: url(../img/star5.svg), url(../img/star4.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left 100px bottom 80px, right 30px bottom;
    background-size: 20%, 20%;
  }
}

.w-container {
  width: 100%;
  margin: auto;
  padding: 0 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .w-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
@media screen and (min-width: 768px), print {
  a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    /*&:hover {
      transition: all .4s;
    }*/
  }
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px), print {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px), print {
  .pc-only {
    display: block;
  }
}

.txt-up {
  text-transform: uppercase;
}

.txt-cap {
  text-transform: capitalize;
}

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

/*　TOPへ戻る　*/
#go-to-top {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #bce4e6;
  border: 2px solid #BCE4E6;
  position: fixed;
  right: 2%;
  bottom: 45px;
  z-index: 20;
}
#go-to-top a {
  display: block;
  width: 100%;
  height: 100%;
}
#go-to-top .top-arrow {
  position: absolute;
  top: 45%;
  left: 50%;
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
#go-to-top .top-txt {
  display: block;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  left: 50%;
  bottom: 8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px), print {
  #go-to-top {
    width: 60px;
    height: 60px;
    right: 10px;
    bottom: 25px;
  }
  #go-to-top .top-arrow {
    top: 45%;
    width: 16px;
    height: 16px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  #go-to-top .top-txt {
    font-size: 1.3rem;
    bottom: 12px;
  }
  #go-to-top:hover {
    background: #fff;
  }
  #go-to-top:hover .top-arrow {
    border-top: 3px solid #BCE4E6;
    border-right: 3px solid #BCE4E6;
  }
  #go-to-top:hover .top-txt {
    color: #BCE4E6;
  }
}

/* ふわっとフェードイン */
.fadein {
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.4s, 0.4s;
          transition-duration: 0.4s, 0.4s;
  -webkit-transition-timing-function: ease, ease;
          transition-timing-function: ease, ease;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*******************************************
	@HEADER
********************************************/
.header {
  width: 100%;
  height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  background-color: #F9F7AB;
}
.header .header-bg {
  background-image: url(../img/wave.png);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: contain;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.header .header-container {
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 4%;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.header .header-container .title {
  padding-top: 5px;
  font-size: clamp(1.4rem, 1.5vw, 2rem);
}
@media screen and (min-width: 768px) {
  .header {
    height: 40px;
  }
  .header .header-bg {
    background-size: 30%;
  }
  .header .header-container {
    height: 60px;
    padding: 0 40px;
  }
}

/*******************************************
	@FOOTER
********************************************/
.footer {
  position: relative;
  width: 100%;
  margin-top: 90px;
  padding-bottom: 10px;
  text-align: center;
  background-color: #F9F7AB;
  /*.wave{
    margin-top:-100px;
  }*/
}
.footer .foot-box {
  margin-top: -10px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .foot-box__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
}
.footer .foot-box__txt--name {
  font-weight: 700;
}
.footer .foot-box__txt--name .sub {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
.footer .foot-box__txt--name .head {
  font-size: clamp(1.6rem, 1.25vw, 1.6rem);
}
.footer .foot-box__txt--name .head span {
  display: block;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.25vw, 1.6rem);
}
.footer .foot-box__txt--address, .footer .foot-box__txt--tel, .footer .foot-box__txt--site {
  margin-top: 1em;
  font-size: clamp(1.5rem, 1.25vw, 1.6rem);
}
.footer .foot-box__txt--tel, .footer .foot-box__txt--site {
  margin-top: 0.5em;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.25vw, 1.6rem);
}
.footer .foot-box__img {
  width: 35%;
  margin: 1em auto 0;
}
.footer .copyright {
  padding-top: 20px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
}
.footer .copyright small {
  display: block;
}
@media screen and (min-width: 768px), print {
  .footer {
    width: 100%;
    margin-top: 180px;
    padding-bottom: 10px;
    text-align: center;
    /*.wave{
      width: 100%;
      margin-top:-380px;
    }*/
  }
  .footer .foot-box {
    width: auto;
    max-width: 700px;
    margin: auto;
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .foot-box__txt {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 1.5;
    text-align: left;
  }
  .footer .foot-box__txt--name {
    font-weight: 700;
  }
  .footer .foot-box__txt--name .sub {
    font-size: clamp(1.4rem, 2.6vw, 1.6rem);
  }
  .footer .foot-box__txt--name .head {
    font-size: clamp(1.6rem, 3.3vw, 2rem);
  }
  .footer .foot-box__txt--name .head span {
    display: block;
    font-weight: 400;
    font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  }
  .footer .foot-box__txt--address, .footer .foot-box__txt--tel, .footer .foot-box__txt--site {
    margin-top: 1em;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
  }
  .footer .foot-box__txt--tel, .footer .foot-box__txt--site {
    margin-top: 0.25em;
    font-weight: 500;
    line-height: 1;
    font-size: clamp(1.6rem, 3vw, 1.8rem);
  }
  .footer .foot-box__img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 35%;
    margin: 1em auto 0;
  }
  .footer .foot-box__img img {
    width: 50%;
  }
  .footer .copyright {
    font-size: 1.4rem;
    line-height: 50px;
  }
  .footer .copyright small {
    display: inline;
  }
}

.waves {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  min-height: 40px;
}
@media screen and (min-width: 768px), print {
  .waves {
    top: -130px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    min-height: 50px;
    max-height: 150px;
  }
}

/* Animation */
.parallax > use {
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
          animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 13s;
          animation-duration: 13s;
}

/*.parallax > use:nth-child(3) {
  animation-delay: -5s;
  animation-duration: 20s;
}*/
@-webkit-keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
@keyframes move-forever {
  0% {
    -webkit-transform: translate3d(-90px, 0, 0);
            transform: translate3d(-90px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(85px, 0, 0);
            transform: translate3d(85px, 0, 0);
  }
}
/*******************************************
	@TOP
********************************************/
/* MV */
.sec-mv {
  position: relative;
  width: 100%;
  margin-top: 45px;
  height: 0;
  padding-top: 130%;
  overflow: hidden;
  position: relative;
  height: 100%;
  background-image: url(../img/ball1.svg);
  background-repeat: no-repeat;
  background-position: left -50px top 10px;
  background-size: 60%;
}
.sec-mv .mv-title {
  width: 95%;
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  margin: auto;
}
.sec-mv .mv-bubble1 {
  width: 55%;
  position: absolute;
  top: 25px;
  left: -6%;
  z-index: 2;
}
.sec-mv .mv-bubble1.delay01 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.sec-mv .mv-bubble2 {
  width: 55%;
  position: absolute;
  top: 5px;
  right: -4%;
  z-index: 3;
}
.sec-mv .mv-bubble2.delay02 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}
@media screen and (min-width: 768px), print {
  .sec-mv {
    margin: 45px auto 0;
    height: auto;
    padding-top: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    background-image: url(../img/ball1.svg), url(../img/ball1.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left 20px top, right 40px bottom 80px;
    background-size: 35%, 35%;
  }
  .sec-mv .mv-container {
    position: relative;
    max-width: 1280px;
    height: 0;
    padding-top: 70%;
  }
  .sec-mv .mv-title {
    width: 67%;
    top: 30px;
  }
  .sec-mv .mv-bubble1 {
    width: 29.5%;
    top: 10px;
    left: 10px;
  }
  .sec-mv .mv-bubble2 {
    width: 28.5%;
    top: 25px;
    right: 25px;
  }
}

/* ITEMS */
.sec-items {
  position: relative;
  z-index: 5;
  background-image: url(../img/ball1.svg), url(../img/star4.svg), url(../img/star3.svg);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: right -60px top, left 0 center, right 0 bottom 90px;
  background-size: 50%, 40%, 35%;
}
.sec-items .items-box {
  margin: -30px auto 0;
  display: block;
}
.sec-items .items-box__tel, .sec-items .items-box__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.75em;
  width: 100%;
  max-height: 54px;
  padding: 8px;
  border-radius: 5px;
  background-color: #BCE4E6;
}
.sec-items .items-box__tel figure, .sec-items .items-box__mail figure {
  width: 10%;
  text-align: center;
  padding-top: 3px;
  padding-bottom: 3px;
  border-radius: 5px;
  background-color: #fff;
}
.sec-items .items-box__tel figure img, .sec-items .items-box__mail figure img {
  width: 55%;
  height: auto;
  margin: auto;
  margin-bottom: 3px;
  vertical-align: middle;
}
.sec-items .items-box__tel .body, .sec-items .items-box__mail .body {
  font-size: clamp(3.5rem, 6.5vw, 8rem);
  font-weight: 700;
  line-height: 1;
  text-align: left;
  letter-spacing: 0.15em;
}
.sec-items .items-box__mail {
  margin-top: 10px;
}
.sec-items .items-box__mail figure img {
  width: 70%;
  height: auto;
  margin: auto;
  margin-bottom: 4px;
}
.sec-items .items-box__mail .body {
  font-size: clamp(1.8rem, 3.5vw, 4.5rem);
  letter-spacing: 0em;
}
.sec-items .items-box2 {
  margin-top: 10px;
  margin-bottom: 25px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: clamp(2rem, 4.45vw, 4rem);
  line-height: 1.6;
  border-radius: 5px;
  border: 2px solid #F9F7AB;
}
.sec-items .items-box2__head {
  background-color: #F9F7AB;
}
.sec-items .items-box2__body {
  font-weight: 700;
  background-color: #fff;
}
.sec-items .items-box2__body span {
  margin-left: 0.5em;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
}
.sec-items .text {
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
}
.sec-items .text + .text {
  margin-top: 0.5em;
}
.sec-items .caution-list {
  margin-top: 1.25em;
  padding-top: 1.25em;
  border-top: 2px dotted #ccc;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
.sec-items .caution-list .list {
  position: relative;
  padding-left: 1.1em;
  letter-spacing: 0em;
  line-height: 1.5;
}
.sec-items .caution-list .list::before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
}
.sec-items .caution-list .list + .list {
  margin-top: 0.5em;
}
@media screen and (min-width: 768px), print {
  .sec-items {
    position: relative;
    z-index: 5;
    background-image: url(../img/ball1.svg), url(../img/star4.svg), url(../img/star3.svg);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: right 0 top, left 0 center, right 0 bottom 90px;
    background-size: 0, 20%, 15%;
  }
  .sec-items .items-box {
    margin: -30px auto 0;
    display: block;
  }
  .sec-items .items-box__tel, .sec-items .items-box__mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.75em;
    width: 70%;
    height: 100px;
    max-height: 100px;
    margin: auto;
    padding: 8px;
    border-radius: 5px;
    background-color: #BCE4E6;
  }
  .sec-items .items-box__tel figure, .sec-items .items-box__mail figure {
    width: 10%;
    text-align: center;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 5px;
    background-color: #fff;
  }
  .sec-items .items-box__tel figure img, .sec-items .items-box__mail figure img {
    width: 55%;
    height: auto;
    margin: auto;
    margin-bottom: 3px;
    vertical-align: middle;
  }
  .sec-items .items-box__tel .body, .sec-items .items-box__mail .body {
    font-weight: 700;
    line-height: 1;
    text-align: left;
    letter-spacing: 0.15em;
  }
  .sec-items .items-box__mail {
    margin-top: 10px;
  }
  .sec-items .items-box__mail figure {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .sec-items .items-box__mail figure img {
    width: 70%;
    height: auto;
    margin: auto;
    margin-bottom: 4px;
  }
  .sec-items .items-box__mail .body {
    letter-spacing: 0em;
  }
  .sec-items .items-box2 {
    width: 70%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 25px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    line-height: 1.6;
    border-radius: 5px;
    border: 3px solid rgb(249, 237, 171);
  }
  .sec-items .items-box2__head {
    padding: 2px 0;
    background-color: rgb(249, 237, 171);
  }
  .sec-items .items-box2__body {
    padding: 3px 0;
    font-weight: 700;
  }
  .sec-items .items-box2__body span {
    margin-left: 0.5em;
  }
  .sec-items .text {
    width: 70%;
    margin: auto;
    font-size: clamp(1.6rem, 1.4vw, 1.8rem);
  }
  .sec-items .text + .text {
    margin-top: 0.5em;
  }
  .sec-items .caution-list {
    width: 70%;
    margin: auto;
    margin-top: 1.75em;
    padding-top: 1.75em;
    border-top: 2px dotted #ccc;
    font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  }
  .sec-items .caution-list .list {
    position: relative;
    padding-left: 1.1em;
    letter-spacing: 0em;
    line-height: 1.5;
  }
  .sec-items .caution-list .list::before {
    position: absolute;
    content: "※";
    top: 0;
    left: 0;
  }
  .sec-items .caution-list .list + .list {
    margin-top: 0.5em;
  }
}

/* ------------------------------------------------- *
 *  @FORM　　　　　　　　　　　　　　　　
 * ------------------------------------------------- */
/* FORM */
.sec-form {
  margin: 60px auto;
}
.sec-form .title {
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.6;
  border-radius: 5px;
  background-color: #F9F7AB;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .sec-form {
    width: 70%;
    margin: 100px auto;
  }
  .sec-form .title {
    line-height: 1.6;
    border-radius: 5px;
    background-color: #F9F7AB;
    font-weight: 700;
    text-align: center;
  }
}

.table-form {
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .table-form {
    width: 90%;
    padding: 3rem 4rem;
  }
}
.table-form th,
.table-form td {
  width: 100%;
  display: block;
  margin: 0;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .table-form th,
  .table-form td {
    display: inline-block;
    padding: 0;
    font-size: 1.8rem;
    vertical-align: top;
  }
}
.table-form th {
  margin-bottom: 7px;
  padding-left: 0.5rem;
  font-weight: 500;
  line-height: 1;
}
.table-form th .required {
  color: #c00;
  font-size: 1.3rem;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .table-form th {
    width: 30%;
  }
  .table-form th::before {
    margin-right: 7px;
  }
}
.table-form td {
  margin-bottom: 20px;
}
.table-form td .long {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .table-form td {
    width: 70%;
    margin-bottom: 20px;
  }
  .table-form td .long.denwa {
    margin-bottom: 15px;
  }
  .table-form td .required {
    font-size: 1.4rem;
  }
}

label {
  cursor: pointer;
}

input[type=text], input[type=mail], input[type=tel] {
  width: 100%;
  height: 35px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: solid 1px #D0D0D0;
  background-color: white;
}
@media screen and (min-width: 768px) {
  input[type=text], input[type=mail], input[type=tel] {
    height: 40px;
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
input.short {
  margin-left: 0.5em;
  width: 55%;
  height: 35px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: solid 1px #D0D0D0;
  background-color: white;
}
@media screen and (min-width: 768px) {
  input.short {
    width: 60%;
    height: 40px;
    font-size: 1.8rem;
  }
}
input.none {
  display: none;
}

textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 240px;
  padding: 3px 2px;
  font-size: 1.6rem;
  border-radius: 5px;
  border: solid 1px #D0D0D0;
  background-color: white;
}
@media screen and (min-width: 768px) {
  textarea {
    height: 205px;
    font-size: 1.8rem;
  }
}

input,
textarea {
  padding: 8px;
  line-height: 1.6;
}

::-webkit-input-placeholder {
  color: #666;
}

::-moz-placeholder {
  color: #666;
}

:-ms-input-placeholder {
  color: #666;
}

::-ms-input-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

/*table.formTable th span,*/
form.cmxform label.error,
label.error,
.error {
  color: #c00;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  form.cmxform label.error,
  label.error,
  .error {
    font-size: 1.4rem;
  }
}

.submit-center {
  position: relative;
  width: 50%;
  margin: 5px auto 0;
}
@media screen and (min-width: 768px) {
  .submit-center {
    width: 380px;
    margin: 35px auto 50px;
  }
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border: none;
}
/* 同意したら送信ボタン */
input[type=submit] {
  background: #000;
  border: 2px solid #000;
}

/* 送信ボタン - マウスオーバー時 */
@media screen and (min-width: 768px) {
  input[type=submit]:hover {
    color: #000;
    background: #fff;
    border: 2px solid #000;
  }
}

/* 送信ボタン - 押せないとき */
input[type=submit][disabled] {
  background-color: rgba(201, 63, 45, 0.8);
  cursor: default;
}

/* 戻って修正ボタン */
input[type=button] {
  background: #999;
  margin-top: 20px;
  border: 2px solid #999;
}

/* 戻って修正ボタン - マウスオーバー時 */
@media screen and (min-width: 768px) {
  input[type=button]:hover {
    color: #999;
    background: #fff;
    border: 2px solid #999;
  }
}

.error {
  padding-left: 10px;
}

/* ラジオボタン */
.radio_text {
  margin-right: 30px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .radio_text {
    margin-right: 15px;
  }
}

input[type=radio] {
  width: 30px;
  height: 15px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  input[type=radio] {
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  input[type=checkbox] {
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
}

.certify_subject {
  width: 100%;
  margin: 90px auto 0;
  padding-top: 0.35em;
  padding-bottom: 0.35em;
  color: #67403e;
  font-size: 5.333333vw;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.05em;
  border-radius: 4px;
  background-color: #F8B62D;
}
@media screen and (min-width: 768px) {
  .certify_subject {
    width: 90%;
    margin: 110px auto 0;
    font-size: 2.8rem;
    border-radius: 7px;
  }
}

.certify_title {
  margin: 10px auto;
  text-align: center;
  font-size: 5.333333vw;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .certify_title {
    margin: 20px auto 15px;
    font-size: 2.4rem;
  }
}

.certify_text {
  margin-bottom: 20px;
  text-align: center;
  font-size: 3.733333vw;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .certify_text {
    font-size: 1.6rem;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid #888;
  outline-offset: 0;
}

/* ------------------------------------------------- *
 *  @THANKS
 * ------------------------------------------------- */
body.thanks {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.thanks main {
  padding-top: 50px;
  position: relative;
  height: 100%;
  background-image: url(../img/star5.svg), url(../img/star4.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left 20px bottom, right 0 bottom;
  background-size: 20%, 25%;
}
@media screen and (min-width: 768px) {
  body.thanks main {
    padding-top: 100px;
    background-image: url(../img/star5.svg), url(../img/star4.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: left 15% bottom -20px, right 15% bottom;
    background-size: 20%, 20%;
  }
}

/* THANKS */
.sec-thanks {
  margin: 75px auto 0;
  text-align: center;
}
.sec-thanks .text {
  margin-bottom: 35px;
  font-size: 1.8rem;
  font-weight: 500;
}
.sec-thanks a.back {
  font-size: 1.4rem;
  font-weight: 400;
  color: #03f;
}
@media screen and (min-width: 768px) {
  .sec-thanks {
    margin: 65px auto 0;
    text-align: center;
  }
  .sec-thanks .text {
    margin-bottom: 35px;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .sec-thanks a.back {
    font-size: 1.4rem;
    font-weight: 400;
    color: #03f;
  }
  .sec-thanks a.back:hover {
    color: #f00;
    border-bottom: 1px solid #f00;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
/*# sourceMappingURL=style.css.map */