@charset "utf-8";
/* CSS Document */
body {
    font-family: Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, "Noto Sans Japanese", 游ゴシック, "Yu Gothic", 游ゴシック体, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    /*font-family: 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;*/
    /*font-family: "Noto Serif Japanese", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", メイリオ, Meiryo, serif;*/
    padding: 0px;
	margin: 0px;
}
* {
	padding: 0px;
	margin: 0px;
	-webkit-text-size-adjust: 100%;
}
img {
	border:none;
	width:100%;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
}
.mb {
    margin-bottom: 10px;
}
.mb2 {
    margin-bottom: 20px;
}
.pc {
    display: none !important;
}
/* common
*********************************************************************************/
section {
    margin-top: 40px;
}
section:first-of-type {
    margin-top: 0;
}
.inner {
    width: 90%;
    margin: 0 auto;
}
.flex_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.spacer {
    padding: 6px 1.5%;
}
.kill_space {
    line-height: 0;
    font-size: 0;
}
.bg_white {
    background: #fff;
}
/****** inquiry ******/
.inquiry_box {
    width: 90%;
    margin: 15px auto;
    background: #FFF;
    box-shadow: 0 0 8px #ccc;
}
.inquiry_box .inquiry_txt {
    font-size: 4vw;
    text-align: center;
    padding: 15px 5%;
}
.inquiry_box .inquiry_txt span {
    display: block;
    font-size: 5.5vw;
    font-weight: bold;
    padding-top: 7px;
}
.inquiry_area {
    padding: 15px 5% 5px 5%;
}
.inquiry_flex {
    display: flex;
    justify-content: space-between;
}
.inquiry_flex figure {
    width: 28%;
}
.inquiry_flex .inner_flex {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.inner_flex02 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.inner_flex02 .icon_area {
    width: 24%;
    background: #ee76a4;
    color: #FFF;
    text-align: center;
    font-size: 3.5vw;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 5px;
}
.inner_flex02 .icon_area:nth-child(n+5) {
    width: 21%;
}
.c_copy {
    width: 100%;
    margin-top: 5px;
    font-size: 3.7vw;
    font-weight: bold;
    text-align: justify;
}
.c_copy span {
    font-size: 5vw;
}
.cover {
    position: absolute;
    left: 5%;
    bottom: -125px;
}
@media screen and (min-width:600px) and ( max-width:768px) {
.cover {
    position: absolute;
    left: 5%;
    bottom: -95px;
}
}
/* drawerMenu
*********************************************************************************/
#nav-toggle {
    /*position: fixed;
    top: 25px;
    right: 25px;
    height: 32px;*/
    cursor: pointer;
    margin-right: 1%;
    border: 2px solid #333;
    padding: 0 5px 5px 5px;
    height: 30px;
}
#nav-toggle > div {
    position: relative;
    width: 28px;
}
#nav-toggle span {
    width: 100%;
    height: 3px;
    left: 0;
    display: block;
    background: #333;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle span:nth-child(1) {
    top: 6px;
}
#nav-toggle span:nth-child(2) {
    top: 16px;
}
#nav-toggle span:nth-child(3) {
    top: 26px;
}
#nav-toggle:hover span:nth-child(1) {
    top: 6px;
}
#nav-toggle:hover span:nth-child(3) {
    top: 26px;
}

.open #nav-toggle span {
    background: #000;
}
.open #nav-toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
}
.open #nav-toggle span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
    z-index: 1000;
    background: rgba(255,255,255,0.6);
    position: fixed;
    top: 4px;
    right: 0.5%;
}
@media screen and (min-width:600px) and ( max-width:768px) {
#nav-toggle {
    z-index: 1000;
    background: rgba(255,255,255,0.6);
    position: fixed;
    top: 7%;
    right: 1.5%;
}
}

#container {
    z-index: 900;
}

#gloval-nav {
    /*background: #000;*/
    background: rgba(255,255,255,0.95);
    color: #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    text-align: left;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 4vw;
    font-weight: bold;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
}

#gloval-nav a {
    display: block;
    color: #333;
    text-decoration: none;
    /*padding: 10px 0;*/
    padding-left: 8%;
    transition: color .6s ease;
}
#gloval-nav a:hover {
    color: #666;
}
#gloval-nav nav {
    display: flex;
    flex-wrap: wrap;
}
#gloval-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-top: 1px solid #999;
}
#gloval-nav ul li {
    opacity: 0;
    transform: translateX(200px);
    transition: transform .6s ease, opacity .2s ease;
    width: 50%;
    border-bottom: 1px solid #999;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
}
#gloval-nav ul li:after {
    content: "▶";
    color: #666;
    font-size: 3.5vw;
    position: absolute;
    top: 21px;
    right: 10px;
}
#gloval-nav ul li:nth-child(odd) {
    border-right: 1px solid #999;
}
#gloval-nav ul li:nth-child(2) {
    transition-delay: .15s;
}
#gloval-nav ul li:nth-child(3) {
    transition-delay: .3s;
}
#gloval-nav ul li:nth-child(4) {
    transition-delay: .45s;
}
#gloval-nav ul li:nth-child(5) {
    transition-delay: .6s;
}
#gloval-nav ul li:nth-child(6) {
    transition-delay: .75s;
}
#gloval-nav ul li:nth-child(7) {
    transition-delay: .9s;
}
#gloval-nav ul li:nth-child(8) {
    transition-delay: 1.05s;
}
#gloval-nav ul li:nth-child(9) {
    transition-delay: 1.3s;
}
#gloval-nav ul li.w100 {
    width: 100%;
    /*height: 100px;*/
    border-right: none;
}
@media screen and (min-width:600px) and ( max-width:768px) {
#gloval-nav ul li.w100 {
    width: 100%;
    height: 165px;
    border-right: none;
}
}
#gloval-nav ul li.w100:after {
    content: "▶";
    color: #666;
    font-size: 3.5vw;
    position: absolute;
    top: 21px;
    right: 10px;
}
@media screen and (min-width:600px) and ( max-width:768px) {
#gloval-nav ul li.w100:after {
    content: "▶";
    color: #666;
    font-size: 3.5vw;
    position: absolute;
    top: 58px;
    right: 10px;
}
}
#gloval-nav ul li.w100 a {
    display: block;
    width: 100%;
    padding-left: 40%;
}
#gloval-nav ul li.w100 img {
    width: 32%;
}
.gloval_btn {
    display: block;
    width: 85%;
    margin: 0 auto;
    padding: 20px 0 0 0 !important;
}

/* open */
.open {
    overflow: hidden;
    /*position: fixed;*/
}
.open #gloval-nav {
    visibility: visible;
    opacity: 1;
}
.open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity .9s ease;
    width: 50%;
    height: 60px;
}
@media screen and (min-width:600px) and ( max-width:768px) {
.open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity .9s ease;
    width: 50%;
    height: 100px;
}
}
/*
*********************************************************************************/
article {}
/*h1 {
    background: #f72a58;
    color: #FFF;
    text-align: center;
    font-size: 3.5vw;
    font-weight: normal;
    padding: 3px 0;
}*/
h1 {
    width: 95%;
    font-size: 3.7vw;
    font-weight: normal;
    text-align: left;
    line-height: 1.5;
    color: #e67ca4;
}
h1 span {
    display: block;
    font-size: 2.8vw;
}
.logo {
    width: 35%;
}
h2.txt {
    width: 55%;
    font-size: 4vw;
    font-weight: normal;
    text-align: left;
    line-height: 1.5;
}
h2.txt span {
    display: block;
    font-size: 3.2vw;
}
.border-line {}
.border-line p {
    width: 33%;
    height: 13px;
}
.border-line02 p {
    width: 33%;
    height: 5px;
}
.border-line p:last-of-type,
.border-line02 p:last-of-type {
    width: 34%;
}
.color01 {
    background: #de7095;
}
.color02 {
    background: #deafd1;
}
.color03 {
    background: #f0cec2;
}
.btn01 {
    width: 94%;
    margin: 0 auto 2px auto;
}
.btn01:last-of-type {
    padding-bottom: 15px;
}
/* #point
*********************************************************************************/
#point {
    text-align: center;
    margin-bottom: 25px;
}
.ttl01-2 {
    width: 30%;
    margin: 30px auto;
}
.point_box {}
.point_box:nth-child(n+2) {
    margin-top: 40px;
}
.point_box img {
    width: 60%;
    padding-bottom: 10px;
}
.point_box p {
    font-size: 5.5vw;
    line-height: 1.7;
}
.point_box p span {
    color: #fe0000;
}
.point_box p span.pink {
    color: #e67ca4;
}
.toc {
    width: 90%;
    margin: 0 auto 40px auto;
}
.toc li {
    color: #e67ca4;
    font-size: 5.3vw;
    padding-bottom: 1px;
    text-align: left;
    border-bottom: 1px dotted #e67ca4;
    margin-bottom: 15px;
}
/* #job
*********************************************************************************/
#job {
    background: linear-gradient(115deg, #ff9a9e, #fda085);
    padding-bottom: 200px;
    position: relative;
}
@media screen and (min-width:600px) and ( max-width:768px) {
#job {
    background: linear-gradient(115deg, #ff9a9e, #fda085);
    padding-bottom: 430px;
    position: relative;
}
}
.ttl02 {
    text-align: center;
    color: #fff;
    font-size: 6vw;
    font-weight: bold;
    padding: 25px 0;
}
.inner_job {
    width: 90%;
    margin: 20px auto 0 auto;
}
.inner_job .ttl_job {
    color: #fff;
    font-size: 5.3vw;
    font-weight: bold;
    border-bottom: 2px dotted #fff;
    padding: 0 0 7px 0;
    margin-bottom: 20px;
}
.inner_job .txt01 {
    color: #fff;
    font-size: 4.7vw;
    padding-bottom: 30px;
}
/* #voice
*********************************************************************************/
#voice {
    margin-top: 0;
}
/*.bg_voice {
    background: url("../images/inquiry_img.jpg");
    background-attachment: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 150vh;
}*/
.bg_voice:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    /*height: 115vh;*/
    height: 95vh;
    background: url("../images/inquiry_img.jpg") center no-repeat;
    background-size: contain;
}
.parts01 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
    padding-top: 360px;
}
.white_box {
    background: #fff;
    padding-top: 22px;
    /*display: flex;*/
}
.voice_photo {
    position: relative;
}
.voice_photo p.voice_txt01 {
    position: absolute;
    top: 60px;
    right: 15px;
    width: 55%;
}
.voice_photo p.voice_txt02 {
    position: absolute;
    top: 65px;
    right: 15px;
    width: 55%;
}
.voice_photo p.voice_txt03 {
    position: absolute;
    top: 35px;
    left: 15px;
    width: 55%;
}
.voice_photo p.txt02 {
    width: 92%;
    margin: 0 auto;
    padding: 10px 0 15px 0;
    font-size: 3.8vw;
    line-height: 1.7;
}
.toc02 {
    background: #fff;
    padding: 25px 5% 10px 5%;
}
.toc02 li {
    font-size: 4.2vw;
}
.toc02 li span {
    display: block;
    text-align: right;
    font-size: 3.5vw;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 15px;
}
/* #life
*********************************************************************************/
#life {}
.ttl03 {
    text-align: center;
    font-size: 6vw;
    padding: 40px 0 15px 0;
}
.life_box {
    width: 40%;
    margin: 0 auto 25px auto;
}
.life_box p {
    text-align: center;
    font-size: 5vw;
}

.timeline_area {
    width: 90%;
    margin: 0 auto;
    border-left: 4px solid #ec74a2;
    box-sizing: border-box;
}
.timeline_area02 {
    width: 90%;
    margin: 0 auto;
    border-left: 4px solid #fb8172;
    box-sizing: border-box;
}
.timeline_box {
    position: relative;
}
.timeline_box:after {
    content: "";
    /*width: 20px;
    height: 20px;*/
    width: 1.26rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #ec74a2;
    position: absolute;
    top: 0;
    left: -3.5%;
}
.timeline_area02 .timeline_box:after {
    content: "";
    width: 1.26rem;
    height: 1.3rem;
    border-radius: 50%;
    background: #fb8172;
    position: absolute;
    top: 0;
    left: -3.5%;
}
@media screen and (min-width:600px) and ( max-width:768px) {
.timeline_box:after {
    content: "";
    width: 2.5rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #ec74a2;
    position: absolute;
    top: 0;
    left: -3.5%;
}
.timeline_area02 .timeline_box:after {
    content: "";
    width: 2.5rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #fb8172;
    position: absolute;
    top: 0;
    left: -3.5%;
}
}
.timeline_box span {
    color: #ec74a2;
    font-size: 4.5vw;
    font-weight: bold;
    line-height: 1;
    border-bottom: 2px dotted #ec74a2;
    margin: 0 0 0px 20px;
    padding-bottom: 5px;
    position: relative;
    display: block;
}
.timeline_area02 .timeline_box span {
    color: #fb8172;
    font-size: 4.5vw;
    font-weight: bold;
    line-height: 1;
    border-bottom: 2px dotted #fb8172;
    margin: 0 0 0px 20px;
    padding-bottom: 5px;
}
.icon_life {
    position: absolute;
    top: -12px;
    right: 5px;
    width: 9.5%;
    display: block;
}
@media screen and (min-width:600px) and ( max-width:768px) {
.icon_life {
    position: absolute;
    top: -18px;
    right: 5px;
    width: 8%;
    display: block;
}
}
.timeline_box p {
    font-size: 3.7vw;
    font-weight: bold;
    padding: 20px 0 8px 20px;
}
.timeline_box span.s_txt {
    display: block;
    font-size: 3.3vw;
    color: #666;
    font-weight: normal;
    border: none;
    padding-bottom: 25px;
    line-height: 1.5;
}
.border_none {
    border-left: 4px solid #fff;
}
/* #recommend
*********************************************************************************/
#recommend {
    text-align: center;
    margin-bottom: 25px;
}
#recommend .point_box:first-of-type {
    margin-top: 15px;
}
/* #recruit
*********************************************************************************/
.ttl04 {
    background: linear-gradient(115deg, #ff9a9e, #fda085);
    text-align: center;
    color: #fff;
    font-size: 6vw;
    font-weight: bold;
    padding: 15px 0;
}
#recruit > .inner > p:first-of-type {
    font-size: 4vw;
    padding: 15px 0 10px 0;
}
#recruit > .inner > p:nth-of-type(3) {
    font-size: 4vw;
    padding: 25px 0 8px 0;
}
.orange {
    font-size: 4.6vw;
    font-weight: bold;
    color: #fc8076;
    line-height: 1.3;
}
.company_logo {
    display: block;
    width: 45%;
    margin: 0 auto;
    padding: 30px 0;
}
#recruit dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 4.2vw;
    font-weight: bold;
}
#recruit dt {
    width: 30%;
    padding-bottom: 5px;
}
#recruit dd {
    width: 68%;
    padding-bottom: 15px;
    font-size: 4vw;
}
#recruit ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 30px;
}
#recruit li {
    width: 48.5%;
    text-align: center;
    font-size: 4.2vw;
    color: #fc8076;
    border: 1px solid #fc8076;
    border-radius: 7px;
    padding: 10px 0;
    margin-bottom: 8px;
}
.ttl05 {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    margin: 5px 0 5px 0;
}
.ttl05:first-of-type {
    margin-top: 20px;
}
.ttl05a {
    white-space: nowrap;
    margin-left: -10px;
}
.ttl05b {
    width: 100%;
    background: #666;
    height: 1px;
}
.txt03 {
    font-size: 4vw;
    padding-bottom: 10px;
}
/* #flow
*********************************************************************************/
#flow {
    background: -webkit-linear-gradient(25deg, #ff9a9e, #fda085);
    background: -o-linear-gradient(25deg, #ff9a9e, #fda085);
    background: linear-gradient(115deg, #ff9a9e, #fda085);
    padding-bottom: 20px;
}
#flow > .inner >img:first-of-type {
    padding: 20px 0;
}
.flow_box {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    justify-content: space-between;
    padding: 10px 3%;
    margin: 50px auto 20px auto;
}
@media screen and (min-width:600px) and ( max-width:768px) {
.flow_box {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    justify-content: space-between;
    padding: 10px 3%;
    margin: 95px auto 40px auto;
}
}
.flow_box:first-of-type {
    margin-top: 20px;
}
@media screen and (min-width:600px) and ( max-width:768px) {
.flow_box:first-of-type {
    margin-top: 70px;
}
}
.flow_flex01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.flow_flex02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
/*.icon_step {
    width: 28%;
    background: #fc8076;
    text-align: center;
    color: #fff;
    font-size: 4vw;
    font-weight: bold;
    padding: 5px 0;
}*/
.icon_step {
    position: relative;
    width: 25%;
}
.icon_step img {
    position: absolute;
    top: -3.7rem;
    left: 0;
}
.txt_step {
    width: 69%;
    font-size: 4.8vw;
    font-weight: bold;
}
.flow_box figure {
    width: 43%;
    padding-top: 10px;
}
.flow_box figure img {
    border: 1px solid #ccc;
}
.txt04 {
    width: 55%;
    font-size: 3.5vw;
    text-align: justify;
    padding-top: 7px;
}
.txt04 span {
    color: #FF0004;
    font-weight: bold;
}
.kome {
    width: 100%;
    font-size: 3.5vw;
    color: #FF0004;
}
/* #faq
*********************************************************************************/
.ttl_faq {
    width: 70%;
    margin: 0 auto;
}
.ttl_faq img {
    width: 70%;
    display: block;
    margin: 0 auto;
}
.ttl_faq > p {
    text-align: center;
    font-size: 4.7vw;
    padding: 10px 0 25px 0;
}
.faq {
    padding-top: 10px;
}
.faq dt {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px dotted #fc8076;
}
.icon_q {
    width: 10%;
}
.txt_q {
    width: 85%;
    font-size: 4.5vw;
    font-weight: bold;
}
.faq dd {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 15px 0 20px 0;
}
.icon_a {
    width: 20%; 
}
.txt_a {
    width: 77%;
    font-size: 3.9vw;
}
/* #form_area
*********************************************************************************/
#form_area > .inner > p {
    text-align: center;
    padding: 20px 0 30px 0;
    font-size: 3.6vw;
}
/* form
**********************************************************/
form {
    margin-bottom: 30px;
}
.form_box {}
.form_box dt {
    padding-bottom: 3px;
}
.form_box dd {
    padding-bottom: 13px;
}
.form_box dd a {
    text-decoration: underline;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
    padding: 12px 5px 12px 8px;
    width: 94%;
    font-size: 16px;
    background: #fff;
    -webkit-appearance : none;
    border: 1px solid #ccc;
    border-radius: 7px;
}
input::placeholder,
textarea::placeholder {
    color: #ccc;
}
input:placeholder-shown {
    background: #fc8076;
}
select {
    width: 42%;
    font-size: 16px;
    padding: 12px 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select.w_change01 {
    width: 97%;
}
select.w_change02 {
    width: 33.5%;
}
select.w_change03 {
    width: 20%;
}
button {
    -webkit-appearance : none;
    width: 100%;
    background: #00a1e9;
    text-align: center;
    color: #FFF;
    font-size: 5vw;
    border: none;
    margin-top: 10px;
    padding: 15px 0;
    border-radius: 40px;
}
.gray_btn {
    -webkit-appearance : none;
    width: 100%;
    background: #ccc;
    text-align: center;
    color: #666;
    font-size: 5vw;
    font-weight: bold;
    border: none;
    margin-top: 10px;
    padding: 10px 0;
    border-radius: 40px;
}
textarea {
    width: 93%;
    height: 120px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 7px;
    font-size: 16px;
    padding: 8px 5px 8px 8px;
}
.hissu {
    background: #f72a58;
    color: #FFF;
    font-size: 0.85rem;
    padding: 1px 4px;
    border-radius: 4px;
    margin-left: 10px;
}
input::placeholder {
    color: #ffb9b3;
}
/* checkbox01 */
input[type=checkbox] {
	display: none;
}
.checkbox01 {
	position: relative;
	line-height:2.6;
	padding: 23px 20px 0 35px;
}
.checkbox01:hover:after {
	border-color: #0171bd;
}
.checkbox01:after, .checkbox01:before{
	position: absolute;
	content: ""; 
	display: block;
	top: 50%;
}
.checkbox01:after {
	left: 0;
	margin-top: -12px;
	width: 40px;
	height: 40px;
    background: #fc8076;
	border: 2px solid #d1d1d1;
    border-radius: 4px;
}
.checkbox01:before {
	left: 13px;
	margin-top: -9px;
	width: 14px;
	height: 27px;
	border-right: 4px solid #0171bd;
	border-bottom: 4px solid #0171bd;
	transform: rotate(45deg);
	opacity: 0;
}
input[type=checkbox]:checked + .checkbox01:before {
	opacity: 1;
    background: none;
}
input[type=checkbox]:checked + .checkbox01:after {
    background: none;
}

/* footer
*********************************************************************************/
.p-mark {
    width: 20%;
    margin: 20px auto 25px auto;
}
#form_area > .inner > p.p-txt {
    text-align: center;
    font-size: 4.2vw;
    letter-spacing: 3px;
    padding: 5px 0 20px 0;
}
footer {
    background: #f72a58;
}
small {
    display: block;
    text-align: center;
    padding: 20px 0 60px 0;
    color: #FFF;
    font-size: 3.3vw;
    font-style: italic;
}
/* footer_Fixed 
*********************************************************************************/
.footer_fixed {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 10;
    display: none;
}
.flex_foot {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    background: rgba(252,128,118,0.9);
    /*align-items: center;
    height: 70px;*/
}
.flex_foot li {
    width: 33%;
}
.flex_foot li:last-child {
    width: 34%;
    background: rgba(48,163,177,0.9);
}
.flex_foot li a {
    display: block;
    color: #FFF;
    font-size: 3.2vw;
    padding: 17px 0;
    text-align: center;
}
.flex_foot li a img {
    width: 14%;
    vertical-align: middle;
    padding-right: 2px;
}
.floating {
    position: fixed;
    left: 3px;
    bottom: 8.5%;
    display: none;
    width: 45px;
    z-index: 10;
}
/* Thanksモーダル
*********************************************************************************/
#thanks {
    z-index: 30;
}
.inner_thanks {
    padding: 50px 30px 0 30px;
}
.inner_thanks p {
    text-align: center;
    font-size: 6vw;
    padding-bottom: 15px;
}
.inner_thanks .inner_thanks02 {
    text-align: left;
    font-size: 4.5vw;
    padding-bottom: 15px;
}
.inner_thanks .txt {
    text-align: left;
    font-size: 4.5vw;
}
.closeBtn {
    border: 2px solid #FFF;
    border-radius: 5px;
    text-align: center;
    padding: 8px 0;
    font-size: 4.2vw;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 10px;
}
.changed {
    display: none;
}
/* effect
**************************************************************/
.reflection-img{
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
} 
.reflection {
    height: 100%;
    width: 45px;
    position: absolute;
    top: -180px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transform: rotate(45deg);
    animation: reflection 2.5s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 2.5s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 2.5s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 2.5s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 2.5s ease-in-out infinite;
}
 
@keyframes reflection {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
    0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
    0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

.poyo2 {
  /*position: absolute;*//*ボタンのサイズと位置調整*/
  display: block;
  width: 100%;
  margin: 0px auto;
  animation: animScale 3.5s infinite ease-out;
}
/*ボタンアニメーションキーフレーム*/
@keyframes animScale {
0% { transform: scale(0.9, 0.9); }/*(Xよこ,Yたて)サイズは%で表示*/
25% { transform: scale(1, 1); }
50% { transform: scale(0.9, 0.9); }
75% { transform: scale(1, 1); }
100% { transform: scale(0.9, 0.9); }
}
.poyo3 {
  display: block;
  width: 100%;
  margin: 0px auto;
  animation: fluffyY 1s ease infinite;/*ボタン動き*/
}

/*ボタンアニメーションキーフレーム*/
@keyframes fluffyY {
  0% { transform:translateY(7px); }
  50% { transform:translateY(-7px); }
  100% { transform:translateY(7px); }
}

.add_txt {
    font-size: 3.7vw;
    line-height: 1.5;
    padding-bottom: 5px;
}