@charset 'UTF-8';

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tfoot,
thead,
th,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video
{
    margin: 0;
    padding: 0;

    vertical-align: baseline;

    border: 0;
    outline: 0;
    background: transparent;
}

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

ul
{
    list-style: none;
}

blockquote,
q
{
    quotes: none;
}

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

a
{
    font-size: 100%;

    margin: 0;
    padding: 0;

    vertical-align: baseline;

    color: #00449a;
    border: 0;
    background: transparent;
}

ins
{
    text-decoration: none;

    color: #000;
    background-color: #ff9;
}

mark
{
    font-weight: bold;
    font-style: italic;

    color: #000;
    background-color: #ff9;
}

del
{
    text-decoration: line-through;
}

abbr[title],
dfn[title]
{
    cursor: help;

    border-bottom: 1px dotted #000;
}

hr
{
    display: block;

    height: 1px;
    margin: 1em 0;
    padding: 0;

    border: 0;
    border-top: 1px solid #ccc;
}

input,
select
{
    vertical-align: middle;
}

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

ol li,
ul li
{
    list-style: none;
}

*
{
    box-sizing: border-box;
}

html
{
    font-size: 62.5%;
}

body
{
    font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', 'Meiryo', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic';
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    color: #333;
    -webkit-text-size-adjust: 100%;
}

section
{
    padding: 50px 0;
}

section .inner
{
    overflow: hidden;

    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 70px;
}

section .inner figure
{
    width: 100%;
    margin: 0 auto 30px;

    text-align: center;
}

section .inner figure img
{
    max-width: 100%;
    margin: 0 auto;
}

section .inner figure:last-child
{
    margin-bottom: 0;
}

section .inner p
{
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.65em;

    margin-bottom: 1.5em;
}

section .inner p:last-child
{
    margin-bottom: 0;
}

.box_video
{
    position: relative;

    width: 100%;
    height: 56.25%;
    padding: 56.25% 0 0 0;

    text-align: center;
}

.box_video .video_wrapper
{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 100%;
    margin: 0 auto;
}

.box_video .video_wrapper iframe
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

.ripple
{
    position: relative;

    display: block;
}

.ripple img
{
    max-width: 100%;
    margin: 0 auto;
}

.ripple span
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 90%;
    height: 100%;
    margin: auto;

    -webkit-animation-name: rippleAnimation;
            animation-name: rippleAnimation;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;

    border-radius: 100px;
    background-color: #fff072;
    box-shadow: 0 0 5px white;
}

@-webkit-keyframes rippleAnimation
{
    0%
    {
        -webkit-transform: scale(1, 1);
                transform: scale(1, 1);

        opacity: .5;
    }

    100%
    {
        -webkit-transform: scale(1.1, 1.1);
                transform: scale(1.1, 1.1);

        opacity: 0;
    }
}

@keyframes rippleAnimation
{
    0%
    {
        -webkit-transform: scale(1, 1);
                transform: scale(1, 1);

        opacity: .5;
    }

    100%
    {
        -webkit-transform: scale(1.1, 1.1);
                transform: scale(1.1, 1.1);

        opacity: 0;
    }
}

.ripple2
{
    position: relative;

    display: block;
}

.ripple2 img
{
    max-width: 100%;
    margin: 0 auto;
}

.ripple2 span.clr_1,
.ripple2 span.clr_2
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 70px;
    height: 70px;
    margin: auto;

    -webkit-animation-name: rippleAnimation2;
            animation-name: rippleAnimation2;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;

    border-radius: 100%;
    box-shadow: 0 0 45px 1px #ff004a inset;
}

.ripple2 span.clr_2
{
    -webkit-animation-delay: .3s;
            animation-delay: .3s;
}

@-webkit-keyframes rippleAnimation2
{
    0%
    {
        -webkit-transform: scale(1, 1);
                transform: scale(1, 1);

        opacity: 1;
    }

    50%
    {
        opacity: .6;
    }

    80%
    {
        -webkit-transform: scale(4.5, 4.5);
                transform: scale(4.5, 4.5);

        opacity: 0;
    }

    100%
    {
        -webkit-transform: scale(4.5, 4.5);
                transform: scale(4.5, 4.5);

        opacity: 0;
    }
}

@keyframes rippleAnimation2
{
    0%
    {
        -webkit-transform: scale(1, 1);
                transform: scale(1, 1);

        opacity: 1;
    }

    50%
    {
        opacity: .6;
    }

    80%
    {
        -webkit-transform: scale(4.5, 4.5);
                transform: scale(4.5, 4.5);

        opacity: 0;
    }

    100%
    {
        -webkit-transform: scale(4.5, 4.5);
                transform: scale(4.5, 4.5);

        opacity: 0;
    }
}

.bounce
{
    position: relative;
}

.bounce::after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 100px;
    height: 50px;
    margin: 0 auto auto;

    content: '';
    -webkit-animation-name: bounce;
            animation-name: bounce;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;

    background: url(../img/down.png) no-repeat center top;
}

.t_1
{
    color: #c00;
}

.t_2
{
    color: #c00;
}

.t_3
{
    color: #c00;
}

.t_4
{
    color: #c00;
}

.t_5
{
    color: #c00;
}

.t_1_b
{
    padding: .1em;

    color: #c00;
    background-color: #ff0;
}

.t_2_b
{
    padding: .1em;

    color: #c00;
    background-color: #ff0;
}

.t_3_b
{
    padding: .1em;

    color: #c00;
    background-color: #ff0;
}

.t_4_b
{
    padding: .1em;

    color: #c00;
    background-color: #ff0;
}

.t_5_b
{
    padding: .1em;

    color: #c00;
    background-color: #ff0;
}

.t_lrg
{
    font-size: 30px;
    font-size: 3rem;
}

.t_stg
{
    font-weight: bold;
}

.t_ul
{
    text-decoration: underline;
}

.t_c
{
    text-align: center;
}

.t_r
{
    text-align: right;
}

.t_l
{
    text-align: left;
}

.mb0
{
    margin-bottom: 0 !important;
}

.mb10
{
    margin-bottom: 10px !important;
}

.mb20
{
    margin-bottom: 20px !important;
}

.mb30
{
    margin-bottom: 30px !important;
}

.mb40
{
    margin-bottom: 40px !important;
}

.mb50
{
    margin-bottom: 50px !important;
}

.mb60
{
    margin-bottom: 60px !important;
}

.mb70
{
    margin-bottom: 70px !important;
}

.mb80
{
    margin-bottom: 80px !important;
}

.mb90
{
    margin-bottom: 90px !important;
}

.mb100
{
    margin-bottom: 100px !important;
}

.mb110
{
    margin-bottom: 110px !important;
}

.mb120
{
    margin-bottom: 120px !important;
}

.mb130
{
    margin-bottom: 130px !important;
}

.mb140
{
    margin-bottom: 140px !important;
}

.mb150
{
    margin-bottom: 150px !important;
}

.mb160
{
    margin-bottom: 160px !important;
}

.mb170
{
    margin-bottom: 170px !important;
}

.mb180
{
    margin-bottom: 180px !important;
}

.mb190
{
    margin-bottom: 190px !important;
}

.mb200
{
    margin-bottom: 200px !important;
}

.mb210
{
    margin-bottom: 210px !important;
}

.mb220
{
    margin-bottom: 220px !important;
}

.mb230
{
    margin-bottom: 230px !important;
}

.mb240
{
    margin-bottom: 240px !important;
}

.mb250
{
    margin-bottom: 250px !important;
}

.mb260
{
    margin-bottom: 260px !important;
}

.mb270
{
    margin-bottom: 270px !important;
}

.mb280
{
    margin-bottom: 280px !important;
}

.mb290
{
    margin-bottom: 290px !important;
}

.mb300
{
    margin-bottom: 300px !important;
}

.pb0
{
    padding-bottom: 0 !important;
}

.pb10
{
    padding-bottom: 10px !important;
}

.pb20
{
    padding-bottom: 20px !important;
}

.pb30
{
    padding-bottom: 30px !important;
}

.pb40
{
    padding-bottom: 40px !important;
}

.pb50
{
    padding-bottom: 50px !important;
}

.pb60
{
    padding-bottom: 60px !important;
}

.pb70
{
    padding-bottom: 70px !important;
}

.pb80
{
    padding-bottom: 80px !important;
}

.pb90
{
    padding-bottom: 90px !important;
}

.pb100
{
    padding-bottom: 100px !important;
}

.pb110
{
    padding-bottom: 110px !important;
}

.pb120
{
    padding-bottom: 120px !important;
}

.pb130
{
    padding-bottom: 130px !important;
}

.pb140
{
    padding-bottom: 140px !important;
}

.pb150
{
    padding-bottom: 150px !important;
}

.pb160
{
    padding-bottom: 160px !important;
}

.pb170
{
    padding-bottom: 170px !important;
}

.pb180
{
    padding-bottom: 180px !important;
}

.pb190
{
    padding-bottom: 190px !important;
}

.pb200
{
    padding-bottom: 200px !important;
}

.pb210
{
    padding-bottom: 210px !important;
}

.pb220
{
    padding-bottom: 220px !important;
}

.pb230
{
    padding-bottom: 230px !important;
}

.pb240
{
    padding-bottom: 240px !important;
}

.pb250
{
    padding-bottom: 250px !important;
}

.pb260
{
    padding-bottom: 260px !important;
}

.pb270
{
    padding-bottom: 270px !important;
}

.pb280
{
    padding-bottom: 280px !important;
}

.pb290
{
    padding-bottom: 290px !important;
}

.pb300
{
    padding-bottom: 300px !important;
}

footer
{
    line-height: 1.65em;

    padding: 1em;

    text-align: center;

    color: #fff;
    background-color: #85705a;
}

footer .f_link a
{
    color: #fff;
}

*:focus
{
    outline: none;
}

header
{
    border-bottom: #42bff7 solid 5px;
    background-color:#fff;
}

header .inner
{
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 15px 0px;
}
header .inner figure{
    text-align: left;
    font-weight:bold;
    font-size:150%;
    line-height:1.3;
    padding-left:12px;
    padding-right:12px;
}
.contents_title{
    text-align: center;
    font-size:50px !important;
    line-height:1.3 !important;
    margin:20px auto;
    font-feature-settings: "palt" 1;
}
.contents_title_s{
    text-align: center;
    font-size:15px !important;
    line-height:1.3 !important;
    margin:20px auto;
    font-feature-settings: "palt" 1;
}

@media screen and (max-width: 767px){
	header .inner figure{ font-size:120%; text-align: center; }
	.contents_title{ font-size:30px !important; }
}
section
{
    min-height: calc(100% - 161px);
    margin: 0;

    background: #fff7e5 url(../img/bg_1.png) no-repeat center 10%;
}

section .inner .box_1 figure
{
    line-height: 0;

    margin-bottom: 0;
    padding-left: 20.5%;

    text-align: left;
}

section .inner .box_1 figure img
{
    line-height: 1;
}

section .inner .box_1 .form_wrapper
{
    position: relative;

    padding: 60px 30px 40px;

    border: #e0b95d solid 15px;
    border-radius: 25px;
    background: #fff;
}

section .inner .box_1 .form_wrapper::before
{
    position: absolute;
    top: -63px;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 168px;
    height: 78px;
    margin: 0 auto auto;

    content: '';

    background: url(../img/img_002.png) no-repeat center top;
}

section .inner .box_1 .form_wrapper p
{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.3em;

    text-align: center;
}

section .inner .box_1 .form_wrapper a.btn_next
{
    font-size: 25px;
    font-size: 2.5rem;
    font-weight: bold;

    display: block;

    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 1.2em;

    text-align: center;

    color: #fff;
    border-radius: 10px;
    background: #32b16c;
}

section .inner .box_1 .form_wrapper .err_box_1,
section .inner .box_1 .form_wrapper .err_box_2,
section .inner .box_1 .form_wrapper .err_box_3
{
    display: none;

    margin-bottom: 2em;
    padding: 1em;

    border: #f00 solid 3px;
    border-radius: 10px;
    background: #fdd;
}

section .inner .box_1 .form_wrapper .err_box_1 p,
section .inner .box_1 .form_wrapper .err_box_2 p,
section .inner .box_1 .form_wrapper .err_box_3 p
{
    font-size: 18px;
    font-size: 1.8rem;

    color: #f00;
}

section .inner .box_1 .form_wrapper .item_1,
section .inner .box_1 .form_wrapper .item_2,
section .inner .box_1 .form_wrapper .item_3,
section .inner .box_1 .form_wrapper .item_4,
section .inner .box_1 .form_wrapper .item_5
{
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;

    transition-duration: .5s;
}

section .inner .box_1 figure.item_2,
section .inner .box_1 .form_wrapper .item_2,
section .inner .box_1 .form_wrapper .item_3,
section .inner .box_1 .form_wrapper .item_4,
section .inner .box_1 .form_wrapper .item_5
{
    height: 0;

    opacity: 0;
}

section .inner .box_1 .form_wrapper .item_4 p
{
    line-height: 1.6em;
}

section .inner .box_1 .form_wrapper .item_4 p span
{
    padding-bottom: .1em;
line-height: 2em;
    color: #e71b69;
    border-bottom: #e71b69 solid 2px;
}

section .inner .box_1 .form_wrapper .item_4 p a
{
    text-decoration: none;

    color: #000;
}

section .inner .box_1 .form_wrapper .item_5 p
{
    line-height: 1.6em;

    margin-bottom: 2em;
}

section .inner .box_1 .form_wrapper .item_5 p:last-child
{
    margin-bottom: 0;
}

section .inner .box_1 .form_wrapper dl
{
    display: flex;

    margin-bottom: 1.3em;

    justify-content: space-between;
    flex-flow: wrap;
}

section .inner .box_1 .form_wrapper dl dt,
section .inner .box_1 .form_wrapper dl dd
{
    font-size: 20px;
    font-size: 2rem;

    margin-bottom: 1.5em;

    border-radius: 10px;
}

section .inner .box_1 .form_wrapper dl dt
{
    font-weight: bold;

    width: 40%;
    padding: .9em .8em .8em;

    background: #eee;
}
.modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	z-index:999;
}
.modal__bg{
	background: rgba(0,0,0,0.8);
	height: 100vh;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
.modal__content{
	position: absolute;
	background: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 80%;
	max-width: 840px;
	margin: 0;
	padding: 60px 2vw 80px;
	border: 2px solid #aaa;
	text-align: center;
	box-sizing: border-box;
}
.modal_h2{
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 55px;
}
.modal_p{ text-align:left; font-size:18px; line-height:1.4; }

.closeModal {
      position: absolute;
      top: 0;
      right:0;
      cursor: pointer;
}
.closeModal_bot {
	background: #e6e6e6;
	color: #000;
	width: 62px;
	line-height: 62px;
	display: block;
	font-size: 46px;
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	cursor: pointer;
}
@media screen and (max-width: 769px){
	.modal__content { padding: 50px 2vw 40px; }
	.closeModal_bot {
			width: 40px;
			line-height: 40px;
			font-size: 30px;
	}
	.modal_h2{ font-size: 22px; margin-bottom: 20px; }
	.modal_p{ font-size: 14px; }
}
    a.q_icon {
        color: #fff;
    font-size: 70%;
    padding: 1%;
    margin-left: 4px;
    font-weight: normal;
    text-shadow: 0 0 0;
    background-color: #333333;
    display:inline-block;
        border-radius: 50%;
}
    section .inner .box_1 .form_wrapper dl dt span::after {
  content: '必須';   
        color: #fff;
    font-size: 70%;
    padding: 1%;
    margin-left: 4px;
    font-weight: normal;
    text-shadow: 0 0 0;
    background-color: #e61a69;
    display:inline-block;
}

section .inner .box_1 .form_wrapper dl dd
{
    width: 58%;
}

section .inner .box_1 .form_wrapper dl dd span
{
    display: inline-block;

    margin-right: .5em;
    padding-top: .8em;
}

section .inner .box_1 .form_wrapper select
{
    font-size: 20px;
    font-size: 2rem;

    position: relative;

    display: block;

    width: 100%;
    padding: .6em .8em;

    color: black;
    border: #e71b69 solid 2px;
    border-radius: 10px;
    background: url(../img/arw_1.png) no-repeat 97%;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

section .inner .box_1 .form_wrapper select::-ms-expand
{
    display: none;
}

section .inner .box_1 .form_wrapper select option
{
    color: #000;
}

section .inner .box_1 .form_wrapper select option:first-child
{
    display: none;
}

section .inner .box_1 .form_wrapper input[type='text']
{
    font-size: 20px;
    font-size: 2rem;

    display: block;

    width: 100%;
    padding: .6em .8em;

    border: #e71b69 solid 2px;
    border-radius: 10px;
}

section .inner .box_1 .form_wrapper input[type='tel'],
section .inner .box_1 .form_wrapper input[type='email']
{
    font-size: 20px;
    font-size: 2rem;

    display: block;

    width: 100%;
    padding: .6em .8em;

    border: #e71b69 solid 2px;
    border-radius: 10px;
}

section .inner .box_1 .form_wrapper input[type='radio']
{
    position: absolute;

    opacity: 0;
}

section .inner .box_1 .form_wrapper input[type='radio'] + label:before
{
    position: relative;
    top: -.2em;

    display: inline-block;

    width: 1.3em;
    height: 1.3em;
    margin-right: .3em;

    content: '';
    cursor: pointer;
    transition: all 250ms ease;
    text-align: center;
    vertical-align: top;

    border: 2px solid black;
    border-radius: 100%;
    background: #fff;
}

section .inner .box_1 .form_wrapper input[type='radio']:checked + label:before
{
    background-color: #3197ee;
    box-shadow: inset 0 0 0 4px #fff;
}
    footer .f_link{
    font-size:90%;
    }

@media screen and (min-width: 480px)
{
    .sp_only
    {
        display: none !important;
    }

    .pc_only
    {
        display: block !important;
    }
}

@media screen and (max-width: 767px)
{
    header .inner
    {
        padding: 15px 0;
    }

    header .inner figure
    {
        text-align: center;
    }

    section
    {
        padding: 30px 0;

        background: #fff7e5 url(../img/bg_1.png) no-repeat center 40px;
        background-size: 300% auto;
    }

    section .inner
    {
        padding: 0 10px;
    }

    section .inner .box_1 figure
    {
        padding-left: 0;
    }
section .inner .box_1 figure img
{
    /*width:85%;*/
}

    section .inner .box_1 .form_wrapper
    {
        padding: 30px 10px 20px;

        border: #e0b95d solid 10px;
        border-radius: 20px;
    }

    section .inner .box_1 .form_wrapper::before
    {
        top: -43px;

        width: 100px;
        height: 47px;

        background: url(../img/img_002.png) no-repeat center top;
        background-size: 100% auto;
    }

    section .inner .box_1 .form_wrapper p
    {
        font-size: 15px;
        font-size: 1.5rem;
    }

    section .inner .box_1 .form_wrapper .err_box_1 p,
    section .inner .box_1 .form_wrapper .err_box_2 p,
    section .inner .box_1 .form_wrapper .err_box_3 p
    {
        font-size: 15px;
        font-size: 1.5rem;
    }

    section .inner .box_1 .form_wrapper dl
    {
        flex-flow: column;
    }

    section .inner .box_1 .form_wrapper dl dt,
    section .inner .box_1 .form_wrapper dl dd
    {
        font-size: 16px;
        font-size: 1.6rem;

        margin-bottom: 1em;
    }
    

    section .inner .box_1 .form_wrapper dl dt
    {
        width: 100%;
    }
    section .inner .box_1 .form_wrapper dl dt::after {

    /*font-size: 90%;*/

}
    section .inner .box_1 .form_wrapper dl dd
    {
        width: 100%;
    }

    section .inner .box_1 .form_wrapper select
    {
        font-size: 16px;
        font-size: 1.6rem;

        background: url(../img/arw_1.png) no-repeat 97%;
        background-size: 17px auto;
    }

    section .inner .box_1 .form_wrapper input[type='text']
    {
        font-size: 16px;
        font-size: 1.6rem;
    }
	
    section .inner .box_1 .form_wrapper input[type='tel'],
section .inner .box_1 .form_wrapper input[type='email']
    {
        font-size: 16px;
        font-size: 1.6rem;
    }

}

@media screen and (max-width: 480px)
{
    .pc_only
    {
        display: none !important;
    }

    .sp_only
    {
        display: block !important;
    }
}

.alert_email,
.alert_tel {
	display:block;
	margin-top:3px;
	padding:5px;
	font-size:12px;
	line-height:1.0em;
	color:#fff;
	background:#d71010;
	border-radius:5px;
}

@media screen and (min-width:768px){
    header .inner figure .pcNone{
        display:none;
    }
}
