@charset "UTF-8";
@media screen and (min-width: 640px) {
  .hamburger-menu {
    position: relative;
  }
  #menu-btn-check {
    display: none;
  }
  .menu-content ul {
    position: fixed;
    top: 5%;
    right: 5%;
    width: 50%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    text-align: center;
    z-index: 50;
    border-radius: 30px;
    padding: 15px 0px;
    background-color: white;
  }
  .menu-content ul li {
    list-style: none;
    padding-bottom: 3px;
  }
  .menu-content ul li a {
    text-decoration: none;
    color: black;
    font-weight: lighter;
    text-align: center;
    border-radius: 30px;
    padding: 10px  25px;
  }
  .menu-content ul li .contact_link {
    background-color: orangered;
  }
}

@media screen and (max-width: 640px) {
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    width: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 90;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #00245f;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #menu-btn-check {
    display: none;
  }
  .menu-content {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #ececec;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    /*アニメーション設定*/
  }
  .menu-content ul {
    padding: 70px 10px 0;
  }
  .menu-content ul li {
    border-bottom: solid 1px #000000;
    list-style: none;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #000000;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
  }
  .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #000000;
    border-right: solid 2px #000000;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 50%;
    /*メニューを画面内へ*/
  }
}

@media screen and (min-width: 640px) {
  .bottom_one {
    position: relative;
    height: 50vh;
  }
  .bottom_one img {
    position: absolute;
    top: 25%;
    left: 10%;
    display: block;
    width: 20%;
    background-color: white;
  }
  .bottom_one h2 {
    font-weight: lighter;
    font-size: 3rem;
    position: absolute;
    letter-spacing: 10px;
    top: 10%;
    left: 10%;
  }
  .bottom_one .bottom {
    position: absolute;
    top: 50%;
    left: 15%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 60%;
    margin-left: auto;
    margin-right: 5%;
    text-align: center;
    padding: 10px 0;
  }
  .bottom_one .bottom a {
    font-weight: lighter;
    margin-top: 10px;
    text-decoration: none;
    color: black;
    width: 100%;
    display: inline;
  }
}

@media screen and (max-width: 640px) {
  .bottom_one {
    position: relative;
    height: 50vh;
  }
  .bottom_one img {
    position: absolute;
    top: 5%;
    left: 15%;
    display: block;
    width: 70%;
  }
  .bottom_one h2 {
    font-weight: lighter;
    font-size: 2rem;
    position: absolute;
    letter-spacing: 10px;
    top: 10%;
    left: 2%;
  }
  .bottom_one .bottom {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-left: auto;
    text-align: center;
    padding: 10px 0;
  }
  .bottom_one .bottom a {
    font-weight: lighter;
    margin-top: 10px;
    text-decoration: none;
    color: black;
    display: block;
    text-align: center;
  }
  .bottom_one .bottom a:hover {
    text-decoration: underline;
  }
}

body {
  margin: 0;
  width: 100%;
  font-family: 'Be Vietnam Pro', sans-serif;
  text-align: justify;
  text-justify: inter-ideograph;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 640px) {
  .thank {
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid black;
    padding-right: 10px;
    padding-left: 10px;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    width: 60%;
    margin: 0 auto;
    font-size: 1.2vw;
  }
  .time {
    margin-top: 4vw;
  }
  h1 {
    margin-top: 30vh;
    font-weight: normal;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    text-align: center;
    font-size: 2rem;
  }
  h2 {
    color: red;
    font-size: 1vw;
    margin-left: 20vw;
  }
  .mail {
    height: 80vh;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  a {
    text-decoration: none;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
}

@media screen and (max-width: 640px) {
  .thank {
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid black;
    padding-right: 10px;
    padding-left: 10px;
    width: 90%;
    margin: 0 auto;
    font-size: 13px;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  h1 {
    margin-top: 20vh;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    font-weight: normal;
    font-size: 1.5rem;
    text-align: center;
  }
  h2 {
    color: red;
    font-size: 13px;
    margin-left: 3%;
  }
  .mail {
    height: 80vh;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  a {
    text-decoration: none;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
}
/*# sourceMappingURL=thanks.css.map */