@charset "utf-8";
/* CSS Document */
.sample_bg {
    background: -webkit-linear-gradient(left, #f93 20%, #ff7166 80%);
    background: -o-linear-gradient(left, #f93 20%, #ff7166 80%);
    background: linear-gradient(to right, #f93 20%, #ff7166 80%);
}

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;
}
.sp {
    display: none !important;
}
.mt {
    margin-top: 20px;
}
/* common
*********************************************************************************/
section {
    margin-top: 40px;
}
section:first-of-type {
    margin-top: 0;
}
.inner_pc {
    width: 1200px;
    margin: 0 auto;
}
.flex_box,
.flex_box-pc {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.spacer {
    padding: 10px 0;
    width: 1200px;
    margin: 0 auto;
}
.kill_space {
    line-height: 0;
    font-size: 0;
}
.bg_white {
    background: #fff;
}
/* border
*****************************************************************************/
.border-line, .border-line02 {
    width: 100%;
}
.border-line p {
    width: 33%;
    height: 8px;
}
.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;
}
/* drawerMenu
*********************************************************************************/
#nav-toggle {
    /*position: fixed;
    top: 25px;
    right: 25px;
    height: 32px;*/
    cursor: pointer;
    margin-right: 1%;
    margin-top: 2px;
}
#nav-toggle > div {
    position: relative;
    width: 36px;
}
#nav-toggle span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    background: #333;
    position: absolute;
    transition: transform .6s ease-in-out, top .5s ease;
}
#nav-toggle span:nth-child(1) {
    top: 8px;
}
#nav-toggle span:nth-child(2) {
    top: 18px;
}
#nav-toggle span:nth-child(3) {
    top: 28px;
}
#nav-toggle:hover span:nth-child(1) {
    top: 8px;
}
#nav-toggle:hover span:nth-child(3) {
    top: 28px;
}

.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;
}

#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: 16px;
    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;
    white-space: nowrap;
}
#gloval-nav a:hover {
    color: #666;
}
#gloval-nav nav {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
}
#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: 16px;
    position: absolute;
    top: 22px;
    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: 130px;
    border-right: none;
}
#gloval-nav ul li.w100:after {
    content: "▶";
    color: #666;
    font-size: 16px;
    position: absolute;
    top: 51px;
    right: 10px;
}
#gloval-nav ul li.w100 a {
    display: block;
    width: 100%;
    padding-left: 40%;
}
#gloval-nav ul li.w100 img {
    width: 30%;
}
.gloval_btn {
    display: block;
    width: 50%;
    margin: 0 auto;
    padding: 35px 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: 70px;
}
/* inquiry
*********************************************************************************/
.inquiry_box {
    width: 900px;
    margin: 30px auto;
    padding: 20px 30px; 
    background: #FFF;
    box-shadow: 0 0 8px #ccc;
}
.flex_box-pcinq {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.inq01 {
    width: 12%;
}
.inq02 {
    width: 40%;
}
.inq03 {
    width: 43%;
}
.inq04 {
    width: 100%;
    background: #ed75a3;
    text-align: center;
    color: #fff;
    margin-top: 5px;
    padding: 5px 0;
    font-weight: bold;
    font-size: 14px;
}
.inq04 span {
    background: #fff;
    color: #ed75a3;
    padding: 1px 8px;
    border-radius: 15px;
    margin-left: 5px;
    font-size: 14px;
}
.inq04 span:first-child {
    margin-left: 10px;
}
/*
*********************************************************************************/
article {}
/*h1 {
    background: #f72a58;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    padding: 3px 0;
}*/
h1 {
    width: 75%;
    font-size: 15px;
    font-weight: normal;
    text-align: left;
    line-height: 1.5;
    color: #666;
}
h1 span {
    display: block;
    font-size: 13px;
}
.logo {
    width: 13%;
}
h2.txt {
    width: 75%;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    line-height: 1.5;
}
h2.txt span {
    display: block;
    font-size: 13px;
}
#main {
    background: linear-gradient(115deg, #ff9a9e, #fda085);
}
.inner {
    width: 1200px;
    margin: 0 auto;
}
.inner_main {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.parts_main {
    position: absolute;
    right: 0;
    bottom: 5px;
    width: 18%;
}
/* #point
*********************************************************************************/
#point {}
.ttl01 {
    width: 60%;
    margin: 0 auto;
}
.ttl01-2 {
    width: 13%;
    margin: 30px auto;
}
#point > .inner > .point_flex {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 25px 0;
}
.point_box {
    width: 30%;
    text-align: center;
}
.point_box img {
}
.point_box p {
    font-size: 22px;
    line-height: 1.7;
    padding-top: 15px;
}
.point_box p span {
    color: #fe0000;
}
.point_box p span.pink {
    color: #e67ca4;
}
.toc {
    width: 96%;
    margin: 0 auto 40px auto;
}
.toc li {
    color: #e67ca4;
    font-size: 26px;
    padding-bottom: 1px;
    text-align: left;
    border-bottom: 1px dotted #e67ca4;
    margin-bottom: 15px;
}
/* #job
*********************************************************************************/
#job {
    background: linear-gradient(115deg, #ff9a9e, #fda085);
    padding-bottom: 50px;
    position: relative;
    margin-top: 70px;
}
.ttl02 {
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    padding: 50px 0 40px 0;
}
.inner_job {
    width: 100%;
    margin: 15px auto 0 auto;
}
#job > .inner_pc > div {
    width: 31%;
}
.ttl_job {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border-bottom: 2px dotted #fff;
    padding: 0 0 4px 0;
    margin-bottom: 20px;
}
.txt01 {
    color: #fff;
    font-size: 18px;
    padding-bottom: 30px;
}
/* #voice
*********************************************************************************/
#voice {
    margin-top: 0;
    padding-bottom: 70px;
}
.bg_voice {
    width: 1200px;
    margin: 0 auto;
}
.bg_voice > .pc > img {
    display: block;
    width: 50%;
    margin: 70px auto 100px auto;
}
.white_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.pc_life_box {
    width: 31%;
}
.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: 60px;
    right: 15px;
    width: 55%;
}
.voice_photo p.voice_txt03 {
    position: absolute;
    top: 35px;
    left: 15px;
    width: 55%;
}
.txt02 {
    font-size: 16px;
    text-align: justify;
    line-height: 1.7;
    padding: 10px 0 0 0;
}
.toc02 {
    background: #fff;
    width: 50%;
    margin: 0 auto;
    padding-bottom: 50px;
}
.toc02 li {
    font-size: 22px;
}
.toc02 li span {
    display: block;
    text-align: right;
    font-size: 16px;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 15px;
}
/* #life
*********************************************************************************/
#life {}
.ttl03 {
    text-align: center;
    font-size: 28px;
    padding: 40px 0 15px 0;
}
.life_box {
    width: 15%;
    margin: 0 auto 70px auto;
}
.life_box p {
    text-align: center;
    font-size: 22px;
}
.timeline_area,
.timeline_area02 {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}
.timeline_area:after {
    content: "";
    position: absolute;
    top: 0;
    left: 598px;
    width: 4px;
    height: 100%;
    border-left: 4px solid #ec74a2;
}
.timeline_area.border_none:after {
    border-left: none; 
}
.timeline_area02:after {
    content: "";
    position: absolute;
    top: 0;
    left: 598px;
    width: 4px;
    height: 100%;
    border-left: 4px solid #fb8172;
}
.timeline_box {
    width: 45%;
    position: relative;
}
.timeline_box .maru00 {
    position: absolute;
    top: -5px;
    right: -83px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ec74a2;
}
.timeline_box .maru01 {
    position: absolute;
    top: -5px;
    left: -83px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ec74a2;
}
.timeline_area02 > .timeline_box > .maru00,
.timeline_area02 > .timeline_box > .maru01 {
    background: #fb8172;
}
.timeline_box.right {
    margin-right: auto;
}
.timeline_box.left {
    margin-left: auto;
}
.timeline_box span {
    color: #ec74a2;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    border-bottom: 2px dotted #ec74a2;
    margin: 0 0 0px 0px;
    padding-bottom: 5px;
    position: relative;
    display: block;
}
.timeline_area02 .timeline_box span {
    color: #fb8172;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    border-bottom: 2px dotted #fb8172;
    margin: 0 0 0px 0px;
    padding-bottom: 5px;
}
.timeline_box p {
    font-size: 17px;
    font-weight: bold;
    padding: 20px 0 8px 0;
}
.timeline_box span.s_txt {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: normal;
    border: none;
}
.icon_life {
    position: absolute;
    top: -17px;
    right: 0px;
    width: 8%;
    display: block;
}
.border_none {
    margin-bottom: 80px;
}
/* balloon
*******************************/
.right, .left {
    position: relative;
    padding: 25px 15px 15px 15px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    background: #FFF;
    border: solid 3px #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.right:before {
  content: "";
  position: absolute;
  top: 18%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #FFF;
  z-index: 2;
}
.right:after {
  content: "";
  position: absolute;
  top: 18%;
  right: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-left: 14px solid #ccc;
  z-index: 1;
}

.left:before {
  content: "";
  position: absolute;
  top: 18%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #FFF;
  z-index: 2;
}
.left:after {
  content: "";
  position: absolute;
  top: 18%;
  left: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right: 14px solid #ccc;
  z-index: 1;
}
/* #recommend
*********************************************************************************/
#recommend {
    padding: 70px 0 70px 0;
}
#recommend .point_box:nth-of-type(-n+3) {
    margin-top: 50px;
}
#recommend .point_box:nth-of-type(n+4) {
    margin-top: 70px;
}
/* #recruit
*********************************************************************************/
#recruit {
    margin-top: 70px;
}
.ttl04 {
    background: linear-gradient(115deg, #ff9a9e, #fda085);
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    padding: 30px 0;
}
#recruit > .inner > p:first-of-type {
    font-size: 20px;
    padding: 50px 0 10px 0;
    text-align: center;
}
#recruit > .inner > p:nth-of-type(3) {
    text-align: center;
    font-size: 28px;
    padding: 70px 0 30px 0;
}
.orange {
    font-size: 28px;
    font-weight: bold;
    color: #fc8076;
    line-height: 1.4;
    text-align: center;
    padding-bottom: 35px;
}
.company_logo {
    display: block;
    width: 20%;
    margin: 0 auto;
    padding: 50px 0;
}
#recruit dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 22px;
    /*font-weight: bold;*/
    width: 60%;
    margin: 0 auto;
    border: 2px solid #ccc;
}
#recruit dt {
    width: 35%;
    padding: 7px 0 7px 10px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
#recruit dd {
    width: 65%;
    padding: 7px 0 7px 20px;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
}
#recruit dt:last-of-type,
#recruit dd:last-of-type {
    border-bottom: none;
}
#recruit ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-bottom: 30px;
}
#recruit li {
    width: 24%;
    text-align: center;
    font-size: 18px;
    color: #fc8076;
    border: 1px solid #fc8076;
    border-radius: 7px;
    padding: 10px 0;
    margin-bottom: 8px;
    margin-right: 1%;
}
#recruit li:nth-child(4n) {
    margin-right: 0;
}

.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;
    font-size: 20px;
}
.ttl05b {
    width: 100%;
    background: #666;
    height: 1px;
}
.txt03 {
    font-size: 20px;
    padding-bottom: 20px;
}
.left_recruit {
    width: 48%;
    padding: 70px 0 70px 0;
}
.right_recruit {
    width: 47%;
    padding: 70px 0 70px 0;
}
/* #flow
*********************************************************************************/
#flow {
    background: -webkit-linear-gradient(25deg, #ff9a9e, #fda085);
    background: -o-linear-gradient(25deg, #ff9a9e, #fda085);
    background: linear-gradient(115deg, #ff9a9e, #fda085);
    padding-bottom: 70px;
    margin-top: 70px;
}
#flow > .inner >img:first-of-type {
    width: 60%;
    display: block;
    margin: 0 auto;
    padding: 70px 0;
}
/*.flow_box {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px;
    margin: 50px auto 20px auto;
    width: 29.5%;
}*/
.flow_box {
    background: #fff;
    padding: 25px 15px;
    margin: 50px auto 20px auto;
    width: 29.5%;
}
.flow_flex01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.flow_flex02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.icon_step {
    position: relative;
    width: 25%;
}
.icon_step img {
    position: absolute;
    top: -70px;
    left: 0;
}
.txt_step {
    width: 69%;
    font-size: 20px;
    font-weight: bold;
}
.flow_box figure {
    width: 43%;
    padding-top: 10px;
}
.flow_box figure img {
    border: 1px solid #ccc;
}
.txt04 {
    width: 55%;
    font-size: 16px;
    text-align: justify;
    padding-top: 7px;
}
.txt04 span {
    color: #FF0004;
    font-weight: bold;
}
.kome {
    width: 100%;
    font-size: 14px;
    padding-top: 5px;
    color: #FF0004;
}
/* #faq
*********************************************************************************/
.ttl_faq {
    width: 70%;
    margin: 0 auto;
    padding: 70px 0 50px 0;
}
.ttl_faq img {
    width: 40%;
    display: block;
    margin: 0 auto;
}
.ttl_faq > p {
    text-align: center;
    font-size: 28px;
    padding: 10px 0 25px 0;
}
.faq {
    padding-top: 10px;
    width: 800px;
    margin: 0 auto;
}
.faq dt {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px dotted #fc8076;
}
.icon_q {
    width: 5%;
    padding-bottom: 5px;
}
.txt_q {
    width: 92%;
    font-size: 28px;
    font-weight: bold;
}
.faq dd {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 15px 0 40px 0;
}
.icon_a {
    width: 20%;
}
.txt_a {
    width: 77%;
    font-size: 20px;
    padding-top: 20px;
}
/* #form_area
*********************************************************************************/
#form_area > .inner > p {
    text-align: center;
    padding: 20px 0 30px 0;
    font-size: 22px;
}
/* form
**********************************************************/
form {
    margin-bottom: 30px;
    width: 800px;
    margin: 0 auto;
}
.form_box {
    width: 800px;
    margin: 0 auto;
}
.form_box dt {
    padding-bottom: 10px;
    font-size: 19px;
    font-weight: bold;
}
.form_box dd {
    padding-bottom: 30px;
}
.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: 25%;
}
button {
    -webkit-appearance : none;
    width: 100%;
    background: #00a1e9;
    text-align: center;
    color: #FFF;
    font-size: 26px;
    border: none;
    margin-top: 10px;
    padding: 20px 0;
    border-radius: 40px;
}
.gray_btn {
    -webkit-appearance : none;
    width: 100%;
    background: #ccc;
    text-align: center;
    color: #666;
    font-size: 26px;
    font-weight: bold;
    border: none;
    margin-top: 10px;
    padding: 20px 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: 14px;
    padding: 1px 4px;
    border-radius: 4px;
    margin-left: 10px;
}

/* 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;
}
input::placeholder {
    color: #ffb9b3;
}
.recaptcha_policy {
  color: #999;
  padding-top: 5px;
  text-align: center;
}
.recaptcha_policy a:link, a:visited, a:hover, a:active {
  color: #00f;
}
/* footer
*********************************************************************************/
.p-mark {
    width: 7%;
    margin: 50px auto 45px auto;
}
#form_area > .inner > p.p-txt {
    text-align: center;
    font-size: 20px;
    letter-spacing: 3px;
    padding: 5px 0 50px 0;
}
footer {
    background: #f72a58;
}
small {
    display: block;
    text-align: center;
    padding: 60px 0 20px 0;
    color: #FFF;
    font-size: 14px;
    font-style: italic;
}
.floating {
    position: fixed;
    right: 10px;
    bottom: 10px;
    display: none;
    width: 60px;
    z-index: 10;
}
/* Thanksモーダル
*********************************************************************************/
#thanks {
    z-index: 30;
}
.inner_thanks {
    padding: 50px 22% 0 22%;
}
.inner_thanks p {
    text-align: center;
    font-size: 28px;
    padding-bottom: 15px;
}
.inner_thanks .inner_thanks02 {
    text-align: left;
    font-size: 24px;
    padding-bottom: 15px;
}
.inner_thanks .txt {
    text-align: left;
    font-size: 24px;
}
.closeBtn {
    border: 2px solid #FFF;
    border-radius: 5px;
    text-align: center;
    padding: 8px 0;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 40px;
    cursor: pointer;
}
.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); }
}