@charset "UTF-8";
/*import
------------------------------------------*/
/*reset*/
*, *:after, *:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box; }

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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

html {
  font-size: 100%; }

body {
  line-height: 1; }

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

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700; }

del {
  text-decoration: line-through; }

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

dfn {
  font-weight: 400;
  font-style: normal; }

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

input, select {
  vertical-align: middle; }

li {
  list-style: none; }

/*html body and base setting*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  width: 100%; }

body {
  position: relative;
  overflow: hidden;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #fff;
  color: #141414;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  margin: auto;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures contextual;
  font-feature-settings: "kern", "liga", "clig", "calt"; }

p {
  font-size: 1.4rem; }

a {
  color: #333; }

sup {
  vertical-align: super;
  font-size: .5em; }

a:link,
a:visited {
  text-decoration: none; }

a:active,
a:hover {
  text-decoration: none; }

figure {
  position: relative; }

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

/*util*/
.ac {
  text-align: center; }

.al {
  text-align: left; }

.ar {
  text-align: right; }

/* visible or hidden
--------------------------------------------------------------------------------*/
@media only screen and (max-width: 991px) {
  .visible-pc {
    display: none !important; } }
@media only screen and (max-width: 767px) {
  .visible-pctb {
    display: none !important; }

  .visible-tb {
    display: none !important; } }
@media only screen and (min-width: 992px) {
  .visible-tbsp {
    display: none !important; }

  .visible-tb {
    display: none !important; } }
@media only screen and (min-width: 768px) {
  .visible-sp {
    display: none !important; } }
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/
/*
------------------------------------------*/
* {
  box-sizing: border-box;
  overflow-wrap: break-word; }
  *::selection {
    background: yellow; }

/* base
--------------------------------------------------*/
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700; }
  body img {
    width: 100%; }
  body h2 {
    font-size: 36px; }
    @media only screen and (max-width: 767px) {
      body h2 {
        font-size: 30px; } }
  body h3 {
    font-size: 21px; }
  body p {
    font-size: 16px;
    line-height: 2; }

/* base
--------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c3290;
  height: 90px; }
  @media only screen and (max-width: 991px) {
    header {
      justify-content: left;
      padding-left: 24px; } }
  @media only screen and (max-width: 767px) {
    header {
      justify-content: center;
      height: 72px; } }
  header .logo {
    display: flex;
    gap: 15px;
    align-items: center; }
    header .logo img {
      width: 270px; }
      @media only screen and (max-width: 767px) {
        header .logo img {
          width: 210px; } }
    header .logo span {
      color: #0c3290;
      background: #fff;
      font-size: 21px;
      padding: 3px 12px;
      border-radius: 3px; }
      @media only screen and (max-width: 767px) {
        header .logo span {
          font-size: 16px;
          padding: 3px 9px; } }
  header #btn_reserve {
    position: fixed;
    top: 40px;
    transform: translateY(-50%);
    right: 20px;
    background: #fef100;
    padding: 16px 30px 18px;
    border-radius: 40px;
    line-height: 1; }
    @media only screen and (max-width: 767px) {
      header #btn_reserve {
        background: red;
        color: #fff;
        top: auto;
        bottom: 15px;
        transform: none;
        left: 18px;
        right: 18px;
        padding: 24px 0;
        text-align: center;
        box-shadow: #565656 0px 0px 9px 0px; } }

footer {
  padding-bottom: 30px; }
  footer small {
    display: block;
    font-size: 12px;
    font-weight: 300;
    text-align: center; }

/* top
--------------------------------------------------*/
@media only screen and (max-width: 767px) {
  #top_page {
    padding-bottom: 80px; } }
#top_page section#mainv {
  position: relative;
  z-index: 1;
  margin-top: 90px;
  padding-bottom: 30px;
  background: #0c3290; }
  @media only screen and (max-width: 767px) {
    #top_page section#mainv {
      margin-top: 72px;
      padding-bottom: 20px; } }
  #top_page section#mainv h1 {
    color: #fff;
    text-align: center;
    font-size: 2.4vw;
    font-weight: 800;
    z-index: 10;
    line-height: 1.2;
    margin-top: 15px; }
    @media only screen and (max-width: 767px) {
      #top_page section#mainv h1 {
        font-size: 6vw;
        line-height: 1.4; } }
    #top_page section#mainv h1 small {
      font-size: 1.2vw; }
      @media only screen and (max-width: 767px) {
        #top_page section#mainv h1 small {
          font-size: 4vw;
          font-weight: 500; } }
  #top_page section#mainv .keeper_logo {
    max-width: 400px;
    margin: 20px auto 0; }
    @media only screen and (max-width: 767px) {
      #top_page section#mainv .keeper_logo {
        max-width: 240px; } }
#top_page section#merit {
  text-align: center;
  margin-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    #top_page section#merit {
      margin-bottom: 60px; } }
  #top_page section#merit ul {
    display: flex;
    gap: 18px;
    margin: 0 80px; }
    @media only screen and (max-width: 1280px) {
      #top_page section#merit ul {
        flex-wrap: wrap;
        margin: 30px 80px; } }
    @media only screen and (max-width: 767px) {
      #top_page section#merit ul {
        gap: 6px;
        margin: 20px; } }
    #top_page section#merit ul li {
      flex-basis: 25%;
      font-size: 18px;
      margin: 30px 0;
      padding: 15px 0;
      border-radius: 9px;
      background: #fef100; }
      @media only screen and (max-width: 1280px) {
        #top_page section#merit ul li {
          flex-basis: calc(50% - 9px);
          margin: 0; } }
      @media only screen and (max-width: 767px) {
        #top_page section#merit ul li {
          flex-basis: 100%;
          font-size: 16px;
          padding: 9px 0;
          border-radius: 6px; } }
      #top_page section#merit ul li big {
        /*color: $green;*/
        font-size: 30px; }
        @media only screen and (max-width: 767px) {
          #top_page section#merit ul li big {
            font-size: 24px; } }
  #top_page section#merit .lowprice {
    background: #efefef;
    margin: 0 80px;
    border-radius: 6px;
    padding: 36px 30px 20px; }
    @media only screen and (max-width: 767px) {
      #top_page section#merit .lowprice {
        margin: 0 20px;
        padding: 24px 15px; } }
    #top_page section#merit .lowprice p {
      font-size: 24px; }
      @media only screen and (max-width: 767px) {
        #top_page section#merit .lowprice p {
          font-size: 16px; } }
      #top_page section#merit .lowprice p:first-child {
        line-height: 1;
        margin-bottom: 12px; }
        @media only screen and (max-width: 767px) {
          #top_page section#merit .lowprice p:first-child {
            font-size: 18px;
            line-height: 1.5; } }
      #top_page section#merit .lowprice p + p {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px; }
        @media only screen and (max-width: 767px) {
          #top_page section#merit .lowprice p + p {
            display: block; } }
        #top_page section#merit .lowprice p + p big {
          color: red;
          font-weight: 800;
          font-size: 48px;
          line-height: 1; }
          @media only screen and (max-width: 767px) {
            #top_page section#merit .lowprice p + p big {
              font-size: 36px;
              line-height: 1.5; } }
        #top_page section#merit .lowprice p + p small {
          font-size: 16px;
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          line-height: 1;
          align-content: center;
          gap: 3px;
          flex-basis: 64px;
          height: 64px;
          background: #fef100;
          border-radius: 32px; }
          @media only screen and (max-width: 767px) {
            #top_page section#merit .lowprice p + p small {
              font-size: 12px;
              width: 48px;
              height: 48px;
              display: inline-block; } }
          #top_page section#merit .lowprice p + p small span {
            flex-basis: 100%; }
            @media only screen and (max-width: 767px) {
              #top_page section#merit .lowprice p + p small span {
                display: block; } }
#top_page section#sugoi {
  text-align: center;
  margin-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    #top_page section#sugoi {
      margin-bottom: 60px; } }
  #top_page section#sugoi h2 {
    width: fit-content;
    margin: 0 auto 30px;
    border-bottom: yellow 12px solid;
    line-height: 0.7; }
    #top_page section#sugoi h2 big {
      font-size: 150%; }
  #top_page section#sugoi ul {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 80px; }
    @media only screen and (max-width: 767px) {
      #top_page section#sugoi ul {
        gap: 6px;
        margin: 0 20px; } }
    #top_page section#sugoi ul li {
      flex-basis: calc(33.3333% - 8px);
      display: flex;
      flex-wrap: wrap;
      background: #0b3290;
      border-radius: 9px;
      padding: 20px 0; }
      @media only screen and (max-width: 1280px) {
        #top_page section#sugoi ul li {
          flex-basis: calc(50% - 6px); } }
      @media only screen and (max-width: 767px) {
        #top_page section#sugoi ul li {
          flex-basis: 100%;
          padding: 18px 0; } }
      #top_page section#sugoi ul li span {
        font-size: 1.8vw;
        color: #fff;
        flex-basis: 100%; }
        @media only screen and (max-width: 767px) {
          #top_page section#sugoi ul li span {
            font-size: 4.8vw;
            line-height: 1; } }
        #top_page section#sugoi ul li span:first-child {
          font-size: 1.6vw;
          color: yellow; }
          @media only screen and (max-width: 767px) {
            #top_page section#sugoi ul li span:first-child {
              font-size: 4.2vw;
              line-height: 1;
              margin-bottom: 6px; } }
#top_page section#contest {
  text-align: center;
  background: #efefef;
  position: relative;
  margin: 160px 80px 80px;
  padding: 116px 40px 40px;
  border-radius: 16px; }
  @media only screen and (max-width: 767px) {
    #top_page section#contest {
      margin: 100px 20px 60px;
      padding: 78px 30px 30px; } }
  #top_page section#contest h2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10; }
    @media only screen and (max-width: 767px) {
      #top_page section#contest h2 {
        left: -12px;
        right: -12px; } }
    #top_page section#contest h2 img {
      max-width: 600px; }
#top_page section#benefits {
  margin-bottom: 80px; }
  @media only screen and (max-width: 991px) {
    #top_page section#benefits {
      margin: 0 80px 80px; } }
  @media only screen and (max-width: 767px) {
    #top_page section#benefits {
      margin: 0 20px 60px; } }
  #top_page section#benefits figure {
    max-width: 960px;
    margin: 0 auto; }
#top_page section#store {
  margin-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    #top_page section#store {
      margin-bottom: 60px; } }
  #top_page section#store h2 {
    text-align: center;
    margin: 0 0 30px; }
  #top_page section#store .map_wrap {
    display: flex;
    gap: 30px;
    margin: 0 80px; }
    @media only screen and (max-width: 991px) {
      #top_page section#store .map_wrap {
        flex-wrap: wrap; } }
    @media only screen and (max-width: 767px) {
      #top_page section#store .map_wrap {
        margin: 0 20px; } }
    #top_page section#store .map_wrap table {
      border-collapse: collapse;
      border: solid #ccc 1px; }
      #top_page section#store .map_wrap table tr th {
        border: solid #ccc 1px;
        background: #fef100;
        text-align: center;
        padding: 8px; }
        @media only screen and (max-width: 767px) {
          #top_page section#store .map_wrap table tr th {
            width: 25%;
            font-weight: 500; } }
      #top_page section#store .map_wrap table tr td {
        border: solid #ccc 1px;
        padding: 8px; }
        @media only screen and (max-width: 767px) {
          #top_page section#store .map_wrap table tr td {
            width: 75%;
            font-weight: 500; } }
    #top_page section#store .map_wrap iframe {
      width: 100%;
      height: 540px; }
      @media only screen and (max-width: 767px) {
        #top_page section#store .map_wrap iframe {
          height: 420px; } }
@media only screen and (max-width: 767px) {
  #top_page section#btn_wrap {
    display: none; } }
#top_page section#btn_wrap a {
  display: block;
  width: 100%;
  max-width: 480px;
  padding: 30px 0;
  margin: 0 auto 60px;
  background: #fef100;
  text-align: center;
  font-size: 30px;
  border-radius: 60px; }

/* form
--------------------------------------------------*/
#form_page {
  padding-top: 120px; }
  #form_page h1 {
    text-align: center;
    font-size: 21px; }
  #form_page #form_wrap {
    max-width: 480px;
    margin: 0 auto 60px; }
    @media only screen and (max-width: 430px) {
      #form_page #form_wrap {
        margin: 0 20px 60px; } }
    #form_page #form_wrap h3 {
      font-size: 15px;
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      border-bottom: #aaa 1px solid;
      padding-top: 30px; }
      #form_page #form_wrap h3::before {
        content: '⚫︎';
        color: #fef100;
        font-size: 21px; }
    #form_page #form_wrap input[type="text"],
    #form_page #form_wrap input[type="email"],
    #form_page #form_wrap input[type="date"],
    #form_page #form_wrap textarea,
    #form_page #form_wrap select {
      width: 100%;
      min-height: 36px;
      background: #efefef;
      border-radius: 6px;
      margin: 6px 0 12px;
      padding: 0px 12px 1px; }
      #form_page #form_wrap input[type="text"]#message,
      #form_page #form_wrap input[type="email"]#message,
      #form_page #form_wrap input[type="date"]#message,
      #form_page #form_wrap textarea#message,
      #form_page #form_wrap select#message {
        min-height: 180px;
        padding: 15px 18px; }
    #form_page #form_wrap input[type="date"] {
      position: relative; }
      #form_page #form_wrap input[type="date"]::-webkit-calendar-picker-indicator {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0; }
      #form_page #form_wrap input[type="date"]::-webkit-inner-spin-button {
        -webkit-appearance: none; }
      #form_page #form_wrap input[type="date"]::-webkit-clear-button {
        -webkit-appearance: none; }
    #form_page #form_wrap input[type="submit"] {
      background: #fef100;
      padding: 16px 30px 18px;
      border-radius: 30px;
      line-height: 1;
      margin: 0 auto;
      font-size: 18px;
      display: block; }
    #form_page #form_wrap .select_wrap {
      position: relative; }
      #form_page #form_wrap .select_wrap::after {
        content: '▼';
        position: absolute;
        top: 14px;
        right: 20px;
        font-size: 12px; }
    #form_page #form_wrap .column2 {
      display: flex;
      gap: 18px; }
      #form_page #form_wrap .column2 div {
        flex-basis: calc(50% - 9px); }
    #form_page #form_wrap .course {
      margin-bottom: 12px; }
      #form_page #form_wrap .course h3 + small {
        display: block;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 20px; }
      #form_page #form_wrap .course label {
        display: flex;
        height: 36px;
        align-items: center;
        border: #ddd 2px solid;
        border-radius: 6px;
        margin: 0 0 6px;
        padding: 0px 12px 1px;
        position: relative; }
        #form_page #form_wrap .course label span {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          padding: 0 0 1px 48px;
          z-index: -1;
          display: flex;
          align-items: center; }
          @media only screen and (max-width: 430px) {
            #form_page #form_wrap .course label span {
              padding: 0 0 1px 36px; } }
      #form_page #form_wrap .course :checked + span {
        background: yellow; }
    #form_page #form_wrap .car_color_wrap {
      display: flex;
      gap: 12px;
      margin-top: 6px; }
      @media only screen and (max-width: 430px) {
        #form_page #form_wrap .car_color_wrap {
          gap: 9px; } }
      #form_page #form_wrap .car_color_wrap label {
        display: flex;
        gap: 3px;
        align-items: center; }
      #form_page #form_wrap .car_color_wrap input {
        margin: 0; }
      @media only screen and (max-width: 430px) {
        #form_page #form_wrap .car_color_wrap > input {
          width: 108px !important; } }
    #form_page #form_wrap .topic_time_wrap {
      margin-bottom: 12px; }
      #form_page #form_wrap .topic_time_wrap div {
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 6px 0 12px; }
        @media only screen and (max-width: 430px) {
          #form_page #form_wrap .topic_time_wrap div {
            flex-wrap: wrap;
            gap: 9px; } }
        #form_page #form_wrap .topic_time_wrap div label {
          display: flex;
          align-items: center;
          gap: 3px; }
          @media only screen and (max-width: 430px) {
            #form_page #form_wrap .topic_time_wrap div label {
              flex-basis: 100%; } }
        #form_page #form_wrap .topic_time_wrap div > input {
          width: 60px;
          margin: 0; }
    #form_page #form_wrap .required::after {
      content: '※必須';
      color: red;
      font-size: 11px;
      font-weight: 600;
      margin-left: 6px; }

#confirm_page {
  padding-top: 120px; }
  #confirm_page h1 {
    text-align: center;
    font-size: 21px; }
  #confirm_page #form_wrap {
    max-width: 480px;
    margin: 0 auto 60px; }
    @media only screen and (max-width: 430px) {
      #confirm_page #form_wrap {
        margin: 0 20px 60px; } }
    #confirm_page #form_wrap h3 {
      font-size: 15px;
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      border-bottom: #aaa 1px solid;
      padding-top: 30px; }
      #confirm_page #form_wrap h3::before {
        content: '⚫︎';
        color: #fef100;
        font-size: 21px; }
    #confirm_page #form_wrap p {
      font-size: inherit; }
    #confirm_page #form_wrap .box {
      width: 100%;
      min-height: 36px;
      background: #efefef;
      border-radius: 6px;
      margin: 6px 0 12px;
      padding: 0px 12px 1px;
      display: flex;
      align-items: center; }
      #confirm_page #form_wrap .box#message {
        min-height: 180px;
        padding: 15px 18px; }
    #confirm_page #form_wrap .column2 {
      display: flex;
      gap: 18px; }
      #confirm_page #form_wrap .column2 div {
        flex-basis: calc(50% - 9px); }
    #confirm_page #form_wrap .btn_wrap {
      display: flex;
      gap: 12px;
      margin-top: 60px;
      justify-content: center; }
      #confirm_page #form_wrap .btn_wrap > * {
        background: #efefef;
        padding: 16px 30px 18px;
        border-radius: 30px;
        line-height: 1;
        font-size: 18px;
        display: block; }
      #confirm_page #form_wrap .btn_wrap input[type="submit"] {
        background: #fef100; }

#thanks_page {
  padding-top: 120px;
  text-align: center; }
  #thanks_page h1 {
    font-size: 21px;
    margin-bottom: 30px; }
  #thanks_page a {
    background: #fef100;
    padding: 16px 30px 18px;
    border-radius: 30px;
    line-height: 1;
    font-size: 18px;
    display: block;
    margin: 30px auto;
    width: 96px; }
