@charset "utf-8";
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');

/****************************************

    /* CSS Reset

*****************************************/

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,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
    margin: 0;
    padding: 0;
}

body {
    line-height: 1;
}

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

blockquote, q {
    quotes: none;
}

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

a {
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    margin: 0;
    padding: 0;
}

ins {
    color: #000;
    text-decoration: none;
    background-color: #ff9;
}

mark {
    color: #000;
    font-style: italic;
    font-weight: bold;
    background-color: #ff9;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input, select, textarea, img, th, td {
    vertical-align: middle;
}

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

/****************************************

    /* 共通設定

*****************************************/

* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-appearance: none;
            appearance: none;
    -webkit-text-size-adjust: 100%;
            text-size-adjust: none;
}

html {
    background: #eee;
}

body {
    max-width: 800px;
    color: #333;
    font-family: 'Noto Sans Japanese', Meiryo, sans-serif;
    font-size: 28px;
    line-height: 1.8;
    background: #fff;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

@media screen and (max-width: 800px) {

body {
    font-size: 14px;
    line-height: 1.6;
}

}

h1, h2, h3, h4, h5, h6, th {
    font-weight: normal;
    line-height: 1.4;
}

a {
    color: #333;
    text-decoration: underline;
    transition-duration: .3s;
}

a:hover {
    text-decoration: none;
    transition-duration: .3s;
}

a:hover img {
    opacity: .5;
    transition-duration: .3s;
}

img, video, object {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: none;
    transition-duration: .3s;
}

table {
    table-layout:fixed;
}

table th,
table td {
    vertical-align: middle;
}

/* ■ display
----------------------------- */

.sp {
    display: none;
}


@media screen and (max-width: 800px) {

.pc {
    display: none;
}

.sp {
    display: block;
}

}

/* ■ image
----------------------------- */

img {
    display: block;
    margin: 0 auto;
}

/****************************************

    /*

*****************************************/

@media screen and (max-width: 800px) {

header {
    padding: 4% 0;
}

header h1 {
    width: 50%;
    max-width: 300px;
    margin: 0 auto;
}

}

/****************************************

    /*

*****************************************/

.cta {
    background: linear-gradient(90deg, #37c, #4ca);
    padding: 60px 0;
}

.cta a {
    display: block;
    animation: anime 1s ease 0s infinite alternate;
    transform-origin:center;
}

@keyframes anime {
    0% {transform: scale(0.98,0.98);}
    100% {transform: scale(1,1);}
}

@media screen and (max-width: 800px) {

.cta {
    padding: 30px 0;
}

@keyframes anime {
    0% {transform: scale(0.96,0.96);}
    100% {transform: scale(1,1);}
}

}

/****************************************

    /*

*****************************************/

#apply {
    padding: 20px;
}

.disnone {
    display: none;
}

#areaTab {
    display: flex;
    flex-flow: wrap;
}

#areaTab li {
    width: calc(50% - 20px);
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    background: #16e;
    margin: 10px;
    padding: 1.25em 0;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    opacity: .5;
}

#areaTab li:nth-child(2) {
    background: #e07;
}

#areaTab li:hover,
#areaTab li.select {
    opacity: 1;
}

#areaTab li.select::before {
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - 15px);
    border: 15px solid transparent;
    border-top: 15px solid #16e;
}

#areaTab li:nth-child(2).select::before {
  border-top: 15px solid #e07;
}

.areaWrap {
    padding: 20px 10px;
}

.areaWrap .box {
    background: #e5f6ff;
    margin: 20px 0;
    padding: 40px 0;
    border-radius: 10px;
}

.areaWrap .box h3 {
    margin: 0 -5px;
}

.areaWrap .box h3 span {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    background: #16e;
    padding: .25em 1.5em;
}

.areaWrap .box table {
    width: calc(100% - 40px);
    background: #fff;
    margin: 20px 20px 0;
}

.areaWrap .box table th,
.areaWrap .box table td {
    border: 1px solid #bbb;
    font-size: 24px;
    padding: 1em;
}

.areaWrap .box table th {
    width: 28%;
    background: #f6f6f6;
    padding: 1em 0;
}

.areaWrap .box table a {
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #16e;
    padding: .75em 0;
    position: relative;
    top: 0;
    border-radius: 8px;
    text-shadow: 1px 1px 0 rgba(0,0,0,.2);
    -webkit-transition-duration:0.3s;
    transition-duration: 0.3s;
}

.areaWrap .box table a::after {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 50%;
    right: 1em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-duration:0.3s;
    transition-duration: 0.3s;
}

.areaWrap .box table a:hover {
    background-color: #04c;
    -webkit-transition-duration:0.3s;
    transition-duration: 0.3s;
}

.areaWrap .box table ul {
    list-style: circle;
    margin: 0 0 0 1em;
}

.areaWrap .box a.apply-btn {
    display: block;
    width: 75%;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    background-color: #2a3;
    background: linear-gradient(to bottom, #0a0, #080);
    margin: 1em auto 0;
    padding: 1em 0;
    position: relative;
    top: 0;
    border-radius: 8px;
    text-shadow: 1px 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 8px 0 #060;
    -webkit-transition-duration:0.3s;
    transition-duration: 0.3s;
}

.areaWrap .box a.apply-btn::after {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 50%;
    right: 1em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition-duration:0.3s;
    transition-duration: 0.3s;
}

.areaWrap .box a.apply-btn:hover {
    top: 8px;
    box-shadow: 0 0 0 #060;
}

@media screen and (max-width: 800px) {

#apply {
    padding: 10px;
}

#areaTab li {
    width: calc(50% - 10px);
    font-size: 16px;
    margin: 5px;
    border-radius: 5px;
}

#areaTab li.select::before {
    left: calc(50% - 10px);
    border: 10px solid transparent;
    border-top: 12px solid #16e;
}

#areaTab li:nth-child(2).select::before {
  border-top: 12px solid #e07;
}

.areaWrap {
    padding: 10px 5px;
}

.areaWrap .box {
    padding: 20px 0;
    border-radius: 5px;
}

.areaWrap .box h3 {
    text-align: center;
}

.areaWrap .box h3 span {
    font-size: 16px;
    padding: .5em 1.5em;
    border-radius: 5px;
}

.areaWrap .box table {
    width: calc(100% - 20px);
    margin: 10px 10px 0;
}

.areaWrap .box table th,
.areaWrap .box table td {
    width: 100%;
    float: left;
    border: none;
    font-size: 14px;
    text-align: center;
}

.areaWrap .box table th {
    width: 100%;
    font-weight: 600;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.areaWrap .box table a {
    padding: 1em 0;
}

.areaWrap .box table a::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.areaWrap .box table ul {
    text-align: left;
}

.areaWrap .box a.apply-btn {
    width: 90%;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 5px 0 #060;
}

.areaWrap .box a.apply-btn::after {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.areaWrap .box a.apply-btn:hover {
    top: 5px;
}

}

/****************************************

    /*

*****************************************/

footer {
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-shadow: 2px 2px 3px rgba(0,50,100,.25);
    background: linear-gradient(90deg, #37c, #4ca);
    padding: 1em 0;
}

@media screen and (max-width: 800px) {

footer {
    font-size: 12px;
    padding: 1em 0 26%;
}

}

/****************************************

    /*

*****************************************/

nav {
    width: 100%;
    background: rgba(255,255,255,.9);
    padding: 5px 3px;
    position: fixed;
    bottom: 0;
    z-index: 999;
}

nav h2 {
    margin: 3px 0 5px;
}

nav ul {
    display: flex;
}

nav ul li {
    flex: 1;
    padding: 2px;
}

/****************************************

    /*

*****************************************/

.grecaptcha-badge {
    display: none!important;
}
