@charset "UTF-8";
/* --- reset.css --- */
/* === 使わないセレクタは消去する --- */
/* --- reset.css --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main {
  display: block;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body figure {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- reset.cssここまで --- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus-visible {
  outline: 1px solid transparent;
}

html {
  overflow-x: hidden;
}

body {
  max-width: 100%;
  color: #000;
  font-family: "Noto Sans JP", system-ui;
  font-size: 16px;
  line-height: 1;
  word-break: break-all;
  line-break: strict;
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  body {
    font-size: 14px;
  }
}
ul {
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

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

.container {
  width: 1000px;
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (max-width: 1199px) {
  .container {
    width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 758px) {
  .container {
    padding: 0 10px;
  }
}
a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1199px) {
  a:hover {
    opacity: 1;
  }
}
a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 758px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  cursor: pointer;
}

::-webkit-file-upload-button {
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.btn,
::file-selector-button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

  Table of contents

  - common layout
  - header
  - footer
  - compoment

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

  common layout

====================================== */
.main {
  padding: 65px 0 120px;
}

.page-title {
  padding: 30px 0;
  background-color: #f2f2f2;
}
.page-title .title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .main {
    padding: 50px 0 80px;
  }
  .page-title {
    padding: 2em 0;
  }
  .page-title .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 758px) {
  .main {
    padding: 40px 0 80px;
  }
  .page-title {
    padding: 1.5em 0;
  }
  .page-title .title {
    font-size: 18px;
  }
}
/* ===================================

  header

====================================== */
.header {
  width: 100%;
  height: 90px;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1120px;
  height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1199px) {
  .header {
    height: 60px;
  }
  .header__inner {
    width: 100%;
    padding-left: 30px;
    margin: 0;
  }
  .header-logo {
    width: 128px;
  }
}
@media screen and (max-width: 758px) {
  .header__inner {
    padding-left: 15px;
  }
}
/* ===================================

  footer

====================================== */
.footer__container {
  width: 1120px;
  margin: 0 auto;
}
.footer__head {
  padding: 16px 0;
  background-color: #FF9800;
}
.footer-logo {
  width: 375px;
}
.footer-logo__link, .footer-logo__img {
  display: block;
  width: 100%;
}
.footer__bottom {
  padding: 20px 0;
}
.footer .copyright__txt {
  font-size: 12px;
  color: #808080;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .footer__container {
    width: 100%;
    padding: 0 30px;
  }
  .footer__head {
    padding: 13px 0;
  }
  .footer-logo {
    width: 247px;
  }
  .footer .copyright__txt {
    font-size: 11px;
  }
}
@media screen and (max-width: 758px) {
  .footer__container {
    padding: 0 20px;
  }
  .footer .copyright__txt {
    font-size: 10px;
    font-weight: 300;
  }
}
/* ===================================

  component

====================================== */
/* ---------------------------------
  title
----------------------------------- */
.contents__title {
  margin-bottom: 30px;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 700;
  border-left: 5px solid #FF9800;
}

@media screen and (max-width: 1199px) {
  .contents__title {
    margin-bottom: 20px;
    padding-left: 12px;
    font-size: 16px;
  }
}
/* ===================================

  form

====================================== */
.form__group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 28px 60px;
  background-color: #f2f2f2;
  border-radius: 8px;
}
.form__group.aifs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form__group.aifs .form__label {
  padding-top: 1.1em;
}
.form__group.form__dates {
  display: block;
}
.form__group + .form__group {
  margin-top: 20px;
}
.form__label {
  width: 100px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  font-size: 16px;
  font-weight: 700;
}
.form__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.form__inner {
  position: relative;
  padding: 18px 15px;
  background-color: #fff;
  border-radius: 4px;
}
.form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  width: 33%;
}
.form__item:nth-child(n+4) {
  margin-top: 20px;
}
.form__item label {
  padding-left: 15px;
  cursor: pointer;
}
.form-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-date + .form-date {
  margin-top: 25px;
}
.form-date .form__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-date__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.form-date__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 10px) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 10px) / 2);
          flex: 0 0 calc((100% - 10px) / 2);
  height: 40px;
}
.form-date__item label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90px;
          flex: 0 0 90px;
  width: 90px;
  height: 100%;
  background-color: #ccc;
  font-weight: 700;
  border-radius: 4px 0 0 4px;
}
.form-date__item input[type=text],
.form-date__item .select-wrap {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  border-radius: 0 4px 4px 0;
}
.form-date__item input[type=text] {
  padding-left: 15px;
}
.form-date__item select {
  padding-left: 15px;
}

input,
select {
  outline: none;
  border: none;
  cursor: pointer;
}

label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.select-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  cursor: pointer;
}
.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url(../images/ico-arrow-btm.svg);
  background-repeat: no-repeat;
  background-size: 12px 8px;
  background-position: center center;
  pointer-events: none;
}
.select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 50px 0 15px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
  color: inherit;
}

.input-wrap {
  position: relative;
  width: 100%;
  height: 40px;
  cursor: pointer;
}
.input-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url(../images/ico-arrow-btm.svg);
  background-repeat: no-repeat;
  background-size: 12px 8px;
  background-position: center center;
  pointer-events: none;
}
.input-wrap input[type=text] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 50px 0 15px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 4px;
}

input[type=text] {
  width: 100%;
  height: 40px;
  background-color: #fff;
}

input[type=submit] {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto 0;
  width: 350px;
  height: 60px;
  background-color: #5D9C00;
  background-image: url(../images/ico-arrow-right-wh.svg);
  background-repeat: no-repeat;
  background-size: 6px 12px;
  background-position: center right 18px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 9999px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input[type=submit]:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1199px) {
  .form__group {
    display: block;
    padding: 30px 30px 20px;
  }
  .form__group.aifs .form__label {
    padding-top: 0;
  }
  .form__group + .form__group {
    margin-top: 1em;
  }
  .form__label {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    text-align: center;
  }
  .form__body {
    margin-top: 15px;
  }
  .form__inner {
    padding: 20px;
  }
  .form__item:nth-child(n+4) {
    margin-top: 18px;
  }
  .form__item label {
    padding-left: 12px;
  }
  .form-date {
    display: block;
  }
  .form-date + .form-date {
    margin-top: 30px;
  }
  .form-date__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .form-date__item {
    width: calc((100% - 12px) / 2);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 12px) / 2);
            flex: 0 0 calc((100% - 12px) / 2);
  }
  .form-date__item label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    width: 100px;
  }
  .select-wrap::after {
    right: 10px;
  }
  .select-wrap select {
    padding: 0 30px 0 15px;
  }
  .input-wrap::after {
    right: 10px;
  }
  .input-wrap input[type=text] {
    padding: 0 30px 0 15px;
  }
  input[type=submit] {
    margin: 35px auto 0;
    width: 280px;
  }
  input[type=checkbox],
  input[type=radio] {
    position: relative;
    top: 1px;
  }
}
@media screen and (max-width: 758px) {
  .form__group {
    padding: 20px 10px 15px;
  }
  .form__group + .form__group {
    margin-top: 12px;
  }
  .form__label {
    font-size: 15px;
  }
  .form__body {
    margin-top: 12px;
  }
  .form__inner {
    padding: 20px 15px;
  }
  .form__item {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  .form__item:nth-child(n+3) {
    margin-top: 18px;
  }
  .form__item label {
    padding-left: 8px;
  }
  .form-date + .form-date {
    margin-top: 20px;
  }
  .form-date__items {
    display: block;
  }
  .form-date__item {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .form-date__item label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    width: 80px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
  .form-date__item + .form-date__item {
    margin-top: 3px;
  }
}
/* ===================================

  選択中の内容・料金

====================================== */
.contents__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.contents__left,
.contents__right {
  width: calc((100% - 30px) / 2);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px) / 2);
          flex: 0 0 calc((100% - 30px) / 2);
}

.box__head {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 50px;
  background-color: #002040;
  border-radius: 8px 8px 0 0;
}
.box__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.box__body {
  position: relative;
  padding: 28px 30px 30px;
  background-color: #f2f2f2;
  border-radius: 0 0 8px 8px;
}

@media screen and (max-width: 1199px) {
  .contents__wrap {
    display: block;
  }
  .contents__left,
  .contents__right {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .contents__right {
    margin-top: 20px;
  }
  .box__body {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 758px) {
  .contents__right {
    margin-top: 15px;
  }
  .box__head {
    height: 45px;
  }
  .box__title {
    font-size: 16px;
  }
  .box__body {
    padding: 20px 10px;
  }
}
/* ---------------------------------
  選択中の内容
----------------------------------- */
.box-detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.box-detail dl + dl {
  margin-top: 24px;
}
.box-detail dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  width: 120px;
  height: 40px;
  background-color: #fff;
  border-radius: 4px;
}
.box-detail__title {
  font-weight: 700;
}
.box-detail dd {
  word-break: break-all;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 0.5em;
  padding-left: 20px;
}
.box-detail__txt {
  font-weight: 700;
  line-height: 1.5;
}
.box-detail__txt + .box-detail__txt {
  margin-top: 25px;
}
.box-detail__txt span + span {
  margin-left: 15px;
}

@media screen and (max-width: 1199px) {
  .box-detail dl + dl {
    margin-top: 15px;
  }
  .box-detail dd {
    padding-left: 20px;
    padding-top: 0.6em;
  }
  .box-detail__txt + .box-detail__txt {
    margin-top: 15px;
  }
  .box-detail__txt span + span {
    margin-left: 12px;
  }
}
@media screen and (max-width: 758px) {
  .box-detail dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    width: 100px;
  }
  .box-detail dd {
    padding-left: 15px;
    padding-top: 0.72em;
  }
  .box-detail__txt + .box-detail__txt {
    margin-top: 1em;
  }
  .box-detail__txt span + span {
    margin-left: 10px;
  }
}
/* ---------------------------------
  お客様情報
----------------------------------- */
.box-info {
  margin-top: 30px;
}
.box-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.box-info dl + dl {
  margin-top: 24px;
}
.box-info dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 130px;
          flex: 0 0 130px;
  width: 130px;
  padding-top: 0.5em;
}
.box-info__title {
  font-weight: 700;
  line-height: 1.5;
}
.box-info dd {
  position: relative;
  word-break: break-all;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 8px 15px;
  background-color: #fff;
  border-radius: 4px;
}
.box-info__txt {
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 1199px) {
  .box-info {
    margin-top: 20px;
  }
  .box-info dl + dl {
    margin-top: 15px;
  }
  .box-info dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 135px;
            flex: 0 0 135px;
    width: 135px;
    padding-top: 0.6em;
  }
}
@media screen and (max-width: 758px) {
  .box-info dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 115px;
            flex: 0 0 115px;
    width: 115px;
    padding-top: 0.68em;
  }
  .box-info dd {
    padding: 10px 15px;
  }
}
/* ---------------------------------
  ご利用料金
----------------------------------- */
.box-price__item {
  position: relative;
  background-color: #fff;
}
.box-price__item-plan {
  padding: 24px 30px 20px;
  border-radius: 8px 8px 0 0;
}
.box-price__item-subtotal, .box-price__item-tax {
  border-top: 2px solid #ccc;
}
.box-price__item-subtotal {
  padding: 12px 30px;
}
.box-price__item-tax {
  padding: 12px 30px 16px;
}
.box-price__item-total {
  position: relative;
  top: -4px;
  border: 2px solid #FF9800;
  border-radius: 4px;
}
.box-price__item-total dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  width: 200px;
  padding: 12px 15px 12px 30px;
  background-color: #FF9800;
  color: #fff;
}
.box-price__item-total dd {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 12px 28px 12px 15px;
  background-color: #fff;
  text-align: right;
}
.box-price__planname {
  font-weight: 700;
  line-height: 1.5;
}
.box-price__planname + dl {
  margin-top: 12px;
}
.box-price dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
  line-height: 1.5;
}
.box-price dl + dl {
  margin-top: 12px;
}
.box-price dd span {
  margin-right: 3px;
}

@media screen and (max-width: 1199px) {
  .box-price__item-plan {
    padding: 20px 30px;
  }
  .box-price__item-total dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    width: 160px;
  }
}
@media screen and (max-width: 758px) {
  .box-price__item-plan {
    padding: 20px 15px;
  }
  .box-price__item-subtotal {
    padding: 15px;
  }
  .box-price__item-tax {
    padding: 15px 15px 19px;
  }
  .box-price__item-total dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    width: 120px;
    padding: 15px 15px;
  }
  .box-price__item-total dd {
    padding: 15px 13px 15px 15px;
  }
  .box-price dd span {
    margin-right: 2px;
  }
}
/* ---------------------------------
  ボタン
----------------------------------- */
.smt-compo__remarks {
  margin-top: 20px;
  line-height: 2;
}
.smt-compo__btn {
  margin-top: 35px;
}

@media screen and (max-width: 1199px) {
  .smt-compo__remarks {
    margin-top: 1em;
    text-align: center;
  }
}
@media screen and (max-width: 758px) {
  .smt-compo__remarks {
    font-size: 12px;
  }
  .smt-compo__btn {
    margin-top: 30px;
  }
}
/* ===================================

  お客様情報入力

====================================== */
.g-info__wrap {
  position: relative;
  padding: 45px 60px 40px;
  background-color: #f2f2f2;
  border-radius: 8px;
}
.g-info__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-info__group.aifs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.g-info__group.aifs .g-info__label {
  padding-top: 0.75em;
}
.g-info__group + .g-info__group {
  margin-top: 20px;
}
.g-info__label {
  width: 140px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
  font-weight: 700;
}
.g-info__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.g-info__body input {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #fff;
  padding-left: 20px;
  border-radius: 4px;
  font-size: 16px;
}
.g-info__body input::-webkit-input-placeholder {
  color: #aaa;
}
.g-info__body input::-moz-placeholder {
  color: #aaa;
}
.g-info__body input:-ms-input-placeholder {
  color: #aaa;
}
.g-info__body input::-ms-input-placeholder {
  color: #aaa;
}
.g-info__body input::placeholder {
  color: #aaa;
}
.g-info__body textarea {
  position: relative;
  width: 100%;
  height: 190px;
  padding: 10px 20px 20px;
  background-color: #fff;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
}
.g-info__body textarea::-webkit-input-placeholder {
  color: #aaa;
  font-weight: 400;
}
.g-info__body textarea::-moz-placeholder {
  color: #aaa;
  font-weight: 400;
}
.g-info__body textarea:-ms-input-placeholder {
  color: #aaa;
  font-weight: 400;
}
.g-info__body textarea::-ms-input-placeholder {
  color: #aaa;
  font-weight: 400;
}
.g-info__body textarea::placeholder {
  color: #aaa;
  font-weight: 400;
}
.g-info__group.zip input {
  width: 300px;
}

@media screen and (max-width: 1199px) {
  .g-info__wrap {
    padding: 30px 30px 20px;
  }
  .g-info__group.aifs .g-info__label {
    padding-top: 1.1em;
  }
  .g-info__group + .g-info__group {
    margin-top: 15px;
  }
  .g-info__label {
    width: 135px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 135px;
            flex: 0 0 135px;
  }
  .g-info__body input {
    padding-left: 15px;
  }
  .g-info__body textarea {
    height: 120px;
    padding: 15px;
  }
  .g-info__group.zip input {
    width: 150px;
  }
}
@media screen and (max-width: 758px) {
  .g-info__wrap {
    padding: 30px 10px 20px;
  }
  .g-info__group {
    display: block;
  }
  .g-info__group.aifs .g-info__label {
    padding-top: 0;
  }
  .g-info__group + .g-info__group {
    margin-top: 20px;
  }
  .g-info__label {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .g-info__body {
    margin-top: 8px;
  }
  .g-info__body textarea {
    height: 100px;
    padding: 10px 15px 15px;
  }
}
/* ===================================

  予約完了（サンクスページ）

====================================== */
.thanks__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.thanks__txt {
  margin-top: 35px;
}
.thanks__txt p {
  line-height: 2;
}
.thanks__txt p + p {
  margin-top: 2em;
}
.thanks__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px auto 0;
  width: 350px;
  height: 60px;
  background-color: #5D9C00;
  background-image: url(../images/ico-arrow-right-wh.svg);
  background-repeat: no-repeat;
  background-size: 6px 12px;
  background-position: center right 18px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 9999px;
}

@media screen and (max-width: 1199px) {
  .thanks__title {
    font-size: 18px;
  }
  .thanks__txt {
    margin-top: 30px;
  }
  .thanks__btn {
    margin-top: 50px;
    width: 280px;
  }
}
@media screen and (max-width: 758px) {
  .thanks__title {
    font-size: 18px;
  }
  .thanks__txt {
    margin-top: 30px;
  }
}