@charset "UTF-8";

/*
Base
-----------------------------------------------------*/

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
    box-sizing: border-box;
    height: 100%;
    font-size: medium;
    font-family: '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic',
    'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro',
    'Meiryo UI', 'メイリオ', 'Press Start 2P', cursive, Meiryo, sans-serif;
    line-height: 1.5;
}

html *,
html *:before,
html *:after {
    box-sizing: inherit;
}

body {
    height: 100%;
    color: #263238;
}

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

[lang="en"] {
    text-transform: uppercase;
    font-family: 'Open Sans Condensed', sans-serif;
}
html{
    scroll-behavior: smooth;
}

/*
  layout
-----------------------------------------------------*/
/* container */
.container {
    width: 100%;
    max-width: 414px;
    margin: 0 auto;
}

/* header */
.l-header {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}
.header {
    background-color: #fff;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: .75em 1em;
}
.logo {
    width: 30%;
}
.logo-img img {
    width: 100%;
    max-width: 125px;
}
.global-nav {
    width: 26%;
    max-width: 100px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.tel1,
.mail1 {
    width: 48%;
    max-width: 46px;
    transition: all .5s;
}
.tel1:hover,
.mail1:hover {
    opacity: .5;
}

.hero {
    width: 100%;
    padding-top: 4.25em;
    margin-bottom: 3em;
}

.cta {
    position: relative;
}
.cta-box {
    width: 100%;
}
.cta-button {
    width: 93%;
    position: absolute;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
}
.tel2 {
    margin-bottom: .5em;
    transition: all .5s;
}
.mail2 {
    transition: all .5s;
}
.tel2:hover,
.mail2:hover {
    opacity: .85;
}

.worries {
    width: 100%;
}

.safety {
    width: 100%;
    margin-bottom: 3em;
}

.contact {
    background-color: #00BA96;
    padding: 2.5em 0 1.5em 0;
    margin-top: -.5em;
}
.contact-head-center {
    text-align: center;
}
.contact-head {
    font-size: 2em;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    border-bottom: 3px #fff solid;
    padding-bottom: .2em;
    width: 192px;
    margin-bottom: 1.5em;
    position: relative;
}
.contact-head::before {
    position: absolute;
    content: '';
    background-image: url(../images/contact-deco.png);
    background-position: 0 0;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 74px;
    height: 64px;
    bottom: 0;
    left: -40%;
}
.contact p {
    text-align: center;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 2em;
}
.form {
    width: 93%;
    margin: 0 auto;
}
.form dl dt {
    font-size: 1.25em;
    color: #fff;
    margin-bottom: .65em;
    position: relative;
    display: inline-block;
}
.form dl dt::after {
    position: absolute;
    content: '';
    background-image: url(../images/mandatory.png);
    background-position: 0 0;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 52px;
    height: 23px;
    bottom: 0;
    margin-left: .5em;
}
@media screen and (max-width: 320px) {
    .contact-head::before {
        position: absolute;
        content: '';
        background-image: url(../images/contact-deco.png);
        background-position: 0 0;
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        max-width: 60px;
        height: 50px;
        bottom: 0;
        left: -32%;
    }
}
.form dl dd input {
    width: 100%;
    border: none;
    height: 45px;
    border-radius: 10px;
    margin-bottom: 1.5em;
}
.form dl dd textarea {
    width: 100%;
    border: none;
    border-radius: 10px;
    margin-bottom: 1.5em;
}
.submit {
    width: 63%;
    margin: 0 auto;
    margin-top: 1em;
}
.submit input {
    width: 100%;
    max-width: 262.13px;
    transition: all .5s;
}
.submit input:hover {
    opacity: .85;
}

/* footer */
.l-footer {
    margin-top: 1.85em;
    overflow: hidden;
}
.l-footer h2 {
    margin: 0 auto;
    width: 26%;
    margin-bottom: 1.85em;
}
.l-footer h2 img {
    width: 100%;
    max-width: 108px;
}
.l-footer dl {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: .85em;
}
.l-footer dl dt {
    width: 15%;
    margin-bottom: 1em;
    margin-right: .5em;
}
.l-footer dl dd {
    width: 75%;
    line-height: 1.25;
}
.copy {
    text-align: center;
    font-size: .5em;
    margin-top: 3em;
    padding-bottom: 1em;
}

/*
Thanks
-----------------------------------------------------*/
.thanks {
    text-align: center;
}
.thanks-h2 {
    padding-top: 4em;
    margin-bottom: 1em;
    text-align: center;
    font-size: 2em;
    font-weight: 700;
}
.thanks-text {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    line-height: 2.14285;
    margin-bottom: 2.5em;
    font-size: .85em;
}
.top-button img{
    width: 63.285%;
    max-width: 262px;
    margin-bottom: 7em;
    transition: all .5s;
}
.top-button img:hover{
    opacity: .8;
}
.error {
  color: #ff0000;
}