@charset "utf-8";
/* ===================================================================
 style info : ヘッダーやフッターなどサイト内共通
=================================================================== */

/*----------------------------------------------------
	共通
----------------------------------------------------*/
body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #ffffff;
  color: #151515;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.25em;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  animation: fade-in 1s;
  -webkit-animation: fade-in 1s;
}

/*----------------------------------------------------
    fade-in
----------------------------------------------------*/
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

/*----------------------------------------------------
    リンク
----------------------------------------------------*/
a:link,
a:visited,
a:hover,
a:active {
  color: #151515;
  text-decoration: none;
}

.link_txt01 {
  color: #ea5858 !important;
}

.link_txt01:hover {
  opacity: 0.5;
}

.txt_uline {
  text-decoration: underline !important;
}

.txt_uline:hover {
  text-decoration: none !important;
}

/*----------------------------------------------------
  .mt
----------------------------------------------------*/
.mt_01 {
  margin-top: 1vw;
}

.mt_02 {
  margin-top: 2vw;
}

.mt_03 {
  margin-top: 3vw;
}

.mt_04 {
  margin-top: 4vw;
}

.mt_05 {
  margin-top: 5vw;
}

/*----------------------------------------------------
  フォント
----------------------------------------------------*/
.en_fnt {
  font-family: 'Josefin Sans', sans-serif;
}

/*----------------------------------------------------
    .sp_tel
----------------------------------------------------*/
.sp_tel {
  pointer-events: none;
}

/*----------------------------------------------------
    .br_elt
----------------------------------------------------*/
.br_elt {
  display: block;
}

/*----------------------------------------------------
    .sp_elt
----------------------------------------------------*/
.sp_elt {
  display: none;
}

/* -----------------------------------------------------------
    .note
----------------------------------------------------------- */
.note {
  display: flex;
}

.note:before {
  content: "※";
  margin-right: 0.05em;
}

/* -----------------------------------------------------------
    .bg_01
----------------------------------------------------------- */
.bg_01 {
  background-image: url(../img/common/bg_01.jpg);
  background-position: center;
  background-repeat: repeat;
}

/* -----------------------------------------------------------
    .marker
----------------------------------------------------------- */
.marker {
  xbackground: linear-gradient(transparent 72%, #ffacb6 0%);
  background-image: repeating-linear-gradient(-45deg, #ffacb6 0, #ffacb6 2px, transparent 2px, transparent 4px);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0.4em;
}

/* -----------------------------------------------------------
    .circle
----------------------------------------------------------- */
.circle {
  border-radius: 50%;
}

/* -----------------------------------------------------------
    .rounded
----------------------------------------------------------- */
.rounded {
  border-radius: 10px;
}

/* -----------------------------------------------------------
    .card_box
----------------------------------------------------------- */
.card_box {
  display: flex;
}

.card_box .card {
  background-color: #ffffff;
  border-radius: 10px;
  flex: 1 1;
  margin-left: 2.5vw;
  padding: 60px;
}

.card_box .card:first-of-type {
  margin-left: 0;
}

.card_box .card .card_head .card_ttl {
  border-bottom: 5px solid #ffacb6;
  color: #ea5858;
  font-size: 2.6rem;
  font-weight: 500;
  padding-bottom: 0.5em;
  text-align: center;
}

.card_box .card .card_pic {
  margin-top: 2.5vw;
}

.card_box .card .card_txt {
  margin-top: 2vw;
}

/* -----------------------------------------------------------
    .list
----------------------------------------------------------- */
.list {
  font-size: 1.8rem;
  font-weight: 500;
}

.list li:not(:first-of-type) {
  margin-top: 0.25em;
}

.list.square.list_02 li {
  display: flex;
  align-items: baseline;
}

.list.square li:before {
  color: #ea5858;
  content: "■";
  font-size: 115%;
  font-weight: normal;
  line-height: 1;
  margin-right: 0.05em;
}

.list_01 li span:nth-of-type(1):after {
  content: "…";
  margin: 0 0.5em;
}

.list_01 li span:nth-of-type(2) {
  font-weight: normal;
}

.list_03 {
  counter-reset: number;
}

.list_03 li {
  display: flex;
  align-items: baseline;
}

.list_03 li:not(:first-of-type) {
  margin-top: 0.5em;
}

.list_03 li:before {
  background-color: #ea5858;
  border-radius: 50%;
  color: #ffffff;
  content: counter(number);
  counter-increment: number;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 95%;
  letter-spacing: normal;
  line-height: 1;
  height: 1.5em;
  width: 1.5em;
  margin-right: 0.45em;
  padding-top: 0.2em;
}

.list_03 li span {
  flex: 1 1;
}

.list_04 {
  line-height: 1.4;
}

.list_04 li {
  display: flex;
  margin-top: 0.25vw;
}

.list_04 li:first-of-type {
  margin-top: 0
}

.list_04 li:before {
  content: "・";
  margin-right: 0.15em;
  margin-left: -0.15em;
}

/* -----------------------------------------------------------
  .btn
----------------------------------------------------------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em;
  position: relative;
  z-index: 0;
}

/* -----------------------------------------------------------
  背景色
----------------------------------------------------------- */
.bg_clr01 {
  background-color: #ea5858;
}

.bg_clr01:hover {
  background-color: #ffacb6;
}

/* -----------------------------------------------------------
  ボーダー角丸
----------------------------------------------------------- */
.brd_rd01 {
  border-radius: 3px;
}

.brd_rd02 {
  border-radius: 5px;
}

.brd_rd03 {
  border-radius: 10px;
}

.brd_rd04 {
  border-radius: 20px;
}

.brd_rd05 {
  border-radius: 30px;
}

.brd_rd06 {
  border-radius: 50px;
}

.brd_rd07 {
  border-radius: 100px;
}

.brd_rd08 {
  border-radius: 50%;
}

/* -----------------------------------------------------------
  フォント色
----------------------------------------------------------- */
.clr01 {
  color: #ffffff !important;
}

.clr01:hover {
  color: #ffffff !important;
}

/* -----------------------------------------------------------
  フォント太さ
----------------------------------------------------------- */
.fw_b00 {
  font-weight: normal;
}

.fw_b01 {
  font-weight: 100;
}

.fw_b02 {
  font-weight: 300;
}

.fw_b03 {
  font-weight: 400;
}

.fw_b04 {
  font-weight: 500;
}

.fw_b05 {
  font-weight: 700;
}

.fw_b06 {
  font-weight: 900;
}

/* -----------------------------------------------------------
  高さ
----------------------------------------------------------- */
.hit_100 {
  height: 100%;
}

.hit_00 {
  height: 40px;
}

.hit_01 {
  height: 45px;
}

.hit_02 {
  height: 50px;
}

.hit_03 {
  height: 60px;
}

.hit_04 {
  height: 70px;
}

.hit_05 {
  height: 80px;
}

.hit_06 {
  height: 90px;
}

.hit_07 {
  height: 100px;
}

/* -----------------------------------------------------------
  幅
----------------------------------------------------------- */
.wid_100 {
  width: 100%;
}

.wid_00 {
  width: 120px;
}

.wid_01 {
  width: 160px;
}

.wid_02 {
  width: 180px;
}

.wid_03 {
  width: 200px;
}

.wid_04 {
  width: 220px;
}

.wid_05 {
  width: 240px;
}

.wid_06 {
  width: 260px;
}

.wid_07 {
  width: 280px;
}

.wid_08 {
  width: 300px;
}

.wid_09 {
  width: 320px;
}

.wid_10 {
  width: 340px;
}

/* -----------------------------------------------------------
    hd
----------------------------------------------------------- */
.hd_01 span {
  display: block;
}

.hd_01 span:nth-of-type(1) {
  color: #ea5858;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.15em;
}

.hd_01 span:nth-of-type(2) {
  font-size: 1.6rem;
  font-weight: 500;
}

.hd_02 {
  font-size: 2.8rem;
  font-weight: 500;
  padding-left: 0.75em;
  position: relative;
  z-index: 0;
}

.hd_02:before,
.hd_02:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 40px;
  width: 40px;
  position: absolute;
  left: 0;
}

.hd_02:before {
  background-color: #ffbbc3;
  bottom: -0.15em;
  z-index: -1;
}

.hd_02:after {
  background-color: #ffe0e3;
  top: -0.15em;
  left: 0.5em;
  z-index: -2;
}

/* -----------------------------------------------------------
    header
----------------------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(234,88,88,0);
  height: 160px;
  width: 100%;
  padding: 0 3vw;
  position: fixed;
  z-index: 999;
}

.is-fixed header {
  background-color: rgba(234,88,88,0.3);
  height: 120px;
  padding: 0 2vw;
}

header > .site_id {
  width: 260px;
  line-height: 0;
}

.is-fixed header > .site_id {
  width: 240px;
}

header > .site_id a {
  display: block;
}

/* -----------------------------------------------------------
    #nav_box
----------------------------------------------------------- */
#nav_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1;
}

#nav_box .site_id {
  display: none;
}

#nav_box ul {
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.15em;
}

#nav_box ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

#nav_box .g_nav li a {
  background-color: #ffffff;
  padding-left: 1.5em;
  padding-right: 1.5em;
  xwidth: 120px;
}

#nav_box .g_nav li:first-of-type a {
  border-radius: 100px 0 0 100px;
  xwidth: calc(120px + 20px);
  xpadding-left: 20px;
  padding-left: calc(1.5em + 1.5em);
}

#nav_box .g_nav li a:hover,
#nav_box .g_nav li a.current {
  background-color: #ffacb6;
  color: #ffffff;
}

#nav_box .u_nav li a {
  color: #ffffff;
}

#nav_box .u_nav li.cntct_btn a {
  background-color: #ea5858;
  border-radius: 0 100px 100px 0;
  padding-left: calc(1.5em + 1em);
  padding-right: calc(1.5em + 1em);
  xwidth: 200px;
}

#nav_box .u_nav li.cntct_btn a:before {
  content: "\f0e0";
  font-family: FontAwesome;
  font-weight: normal;
  font-size: 120%;
  line-height: 1;
  margin-right: 0.25em;
}

#nav_box .u_nav li.insta_btn {
  display: none;
}

#nav_box .u_nav li a:hover {
  background-color: #ffacb6;
}

/*----------------------------------------------------
    #panel-btn
----------------------------------------------------*/
#panel-btn {
  display: none;
}

/* -----------------------------------------------------------
    inner
----------------------------------------------------------- */
.inner {
  max-width: 1280px;
  min-width: 810px;
  width: 100%;
  margin: 0 auto;
}

/* -----------------------------------------------------------
    .main
----------------------------------------------------------- */
.main {
  display: flex;
  align-items: center;
  padding: 5vw;
}

.main {
  height: 100vh;
}

.main:before {
  background-color: rgba(255,255,255,0.5);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.main .swiper-slide {
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}

/* -----------------------------------------------------------
    .slogan
----------------------------------------------------------- */
.slogan {
  position: absolute;
  top: 50%;
  left: 5vw;
  transform: translateY(-50%);
  z-index: 20;
}

.slogan span {
  display: block;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.2), 0 0 8px rgba(255, 255, 255, 0.3), 0 0 8px rgba(255, 255, 255, 0.4);
}

.slogan span:nth-of-type(1) {
  color: #ea5858;
  font-size: 5.4rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  line-height: 1.4;
}

.slogan span:nth-of-type(1) b {
  display: block;
}

.slogan span:nth-of-type(2) {
  font-size: 2.0rem;
  letter-spacing: 0.25em;
  margin-top: 1.5em;
}

.slogan span:nth-of-type(2) b {
  font-weight: 500;
}

.anim_txt01 {
  animation: fadeIn 2s ease 1s 1 normal backwards;
}

.anim_txt02 {
  animation: fadeIn 3s ease 1s 1 normal backwards;
}

.anim_txt03 {
  animation: fadeIn 4s ease 1s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -----------------------------------------------------------
    .container
----------------------------------------------------------- */
.container > section {
  padding: 7.5vw 5vw;
}

/* -----------------------------------------------------------
    .contents
----------------------------------------------------------- */
.contents {
  margin-top: 4vw;
}

/* -----------------------------------------------------------
    .wrap
----------------------------------------------------------- */
.wrap {
  margin-top: 3.5vw;
}

/* -----------------------------------------------------------
    .cmn
----------------------------------------------------------- */
.cmn {
  margin-top: 2vw;
}

/* -----------------------------------------------------------
    .lead_box
----------------------------------------------------------- */
.lead_box {
  line-height: 2;
}

/* -----------------------------------------------------------
    開講あたって
----------------------------------------------------------- */
#concept_sec {
  background-color: #ffffff;
  background-image: url(../img/common/concept_bg02.png), url(../img/common/concept_bg01.png);
  background-position: center top 15vw, center top;
  background-repeat: no-repeat;
  background-size: contain;
}

#concept_sec .contents > p {
  font-size: 2.6rem;
  line-height: 2;
  margin-top: 1.5vw;
}

#concept_sec .contents > p:first-of-type {
  margin-top: 0;
}

/* -----------------------------------------------------------
    現状の子どもたち
----------------------------------------------------------- */
#children_sec .contents .note_box > ul {
  margin-top: 2vw;
}

/* -----------------------------------------------------------
    オンライン授業
----------------------------------------------------------- */
#online_sec {
  background-image: url(../img/common/online_bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}

#online_sec:before {
  background-color: rgba(255,255,255,0.7);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

#online_sec .contents .cont_box > section:not(:first-of-type) {
  margin-top: 3.5vw;
}

/* -----------------------------------------------------------
    授業について
----------------------------------------------------------- */
#about_sec .contents .cont_box > section:not(:first-of-type) {
  margin-top: 3.5vw;
}

#about_sec .contents {
  position: relative;
  z-index: 0;
}

#about_sec .contents .pic_box {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  z-index: -1;
}

#about_sec .contents .pic_box ul li {
  position: relative;
}

#about_sec .contents .pic_box ul li:nth-of-type(1) {
  top: -4vw;
  right: 5vw;
}

#about_sec .contents .pic_box ul li:nth-of-type(2) {
  top: 1vw;
}

/* -----------------------------------------------------------
    相談フォーム
----------------------------------------------------------- */
#contact_sec {
  background-color: #ffffff;
}

.form_box {
  border-top: 1px solid #d4dce3;
  border-bottom: 1px solid #d4dce3;
  padding: 3vw 0;
}

.form_box dl {
  border-bottom: 1px dashed #d4dce3;
  padding-bottom: 2vw;
  padding-top: 2vw;
}

.form_box > dl:first-of-type {
  padding-top: 0;
}

.form_box dl:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.form_box dl dt {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
}

.form_box dl dt span.required {
  background-color: #fd6779;
  border-radius: 5px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  height: 25px;
  margin-right: 1em;
  padding: 0.25em 0.75em;
}

.form_box dl dt span.optional {
  display: none;
}

.form_box dl dd {
  margin-top: 1vw;
}

.form_box dl dd ul.horiz {
  display: flex;
}

.form_box dl dd ul.horiz li:not(:first-of-type) {
  margin-left: 1.5em;
}

.form_box dl dd ul.horiz.equal li {
  flex: 1 1;
}

.form_box dl dd ul.horiz.add li.postal {
  flex: 0 1 9em;
}

.form_box dl dd ul.horiz.add li.address {
  flex: 1 1;
}

.form_box dl dd ul.radio {
  cursor: auto;
  line-height: 1;
  padding: 0;
}

.form_box dl dd ul li label {
  cursor: pointer;
}

.radio01 label {
  display: flex;
  align-items: center;
}

.radio01 label:hover .in {
  opacity: 0.5;
  transform: scale(0.7);
}

.radio01 label input {
  display: none;
  opacity: 0;
  height: 0;
  width: 0;
}

.radio01 label input + span:after {
  content: none !important;
}

.radio01 label input:checked + .out .in {
  opacity: 1;
  transform: scale(1);
}

.radio01 label input:checked + .out {
  border: 2px solid #f2a41f;
}

.radio01 label input:focus + .out .in {
  background-color: #f2a41f;
  opacity: 1;
  transform: scale(1);
}

.radio01 label .out {
  background-color: #ffffff;
  border: 2px solid #d4dce3;
  border-radius: 50%;
  display: block;
  height: 20px;
  width: 20px;
  margin-right: 0.5em;
}

.radio01 label .in {
  background-color: #f2a41f;
  border-radius: 50%;
  display: block;
  height: 12px;
  width: 12px;
  margin: 2px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.25s ease-in-out;
}

.check01 label input[type=checkbox] {
  display: none;
}

.check01 label {
  display: inline-flex;
  align-items: center;
}

.check01 label .check_box {
  background-color: transparent;
  border: 2px solid #d4dce3;
  border-radius: 3px;
  height: 20px;
  width: 20px;
  margin-right: 0.5em;
  position: relative;
  transition: border-color ease 0.2s;
}

.check01 label .check_box:before,
.check01 label .check_box:after {
  position: absolute;
  height: 0;
  width: 3px;
  background-color: #f2a41f;
  display: inline-block;
  transform-origin: left top;
  border-radius: 5px;
  content: " ";
  transition: opacity ease 0.5;
}

.check01 label .check_box:before {
  top: 13px;
  left: 7px;
  box-shadow: 0 0 0 2px #ffffff;
  transform: rotate(-135deg);
}

.check01 label .check_box:after {
  top: 8px;
  left: 1px;
  transform: rotate(-45deg);
}

.check01 label input[type=checkbox]:checked + .check_box,
.check01 label .check_box.checked {
  border-color: #f2a41f;
}

.check01 label input[type=checkbox]:checked + .check_box:after,
.check01 label .check_box.checked:after {
  height: 30px;
  animation: checkmarkbtm 0.2s ease 0s forwards;
}

.check01 label input[type=checkbox]:checked + .check_box:before,
.check01 label .check_box.checked:before {
  height: 100px;
  animation: checkmarktop 0.4s ease 0s forwards;
}

@-moz-keyframes checkmarkbtm {
  0% {
    height: 0;
  }
  100% {
    height: 8px;
  }
}
@-webkit-keyframes checkmarkbtm {
  0% {
    height: 0;
  }
  100% {
    height: 8px;
  }
}
@keyframes checkmarkbtm {
  0% {
    height: 0;
  }
  100% {
    height: 8px;
  }
}
@keyframes checkmarktop {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 20px;
  }
}
@-webkit-keyframes checkmarktop {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 20px;
  }
}
@-moz-keyframes checkmarktop {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: 20px;
  }
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: none;
  color: #b2b2b2;
  cursor: pointer;
  height: 60px;
  width: 100%;
  padding-left: 1em;
  padding-right: 3em;
}

select::-ms-expand {
  display: none;
}

select option {
  color: #151515;
}

.select {
  position: relative;
  z-index: 0;
}

.select:after {
  background-image: url(../img/common/arr_bm.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .1s;
  transform: scale(1, 1) translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.select.is-active:after {
  transform: scale(1, -1) translateY(50%);
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select,
input[type="button"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.6;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  border: 1px solid #d4dce3;
  border-radius: 10px;
  color: #151515;
  font-size: 1.6rem;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  height: 60px;
  padding: 0 1em;
}

input[type="email"] {
  width: 100%;
}

input[type="tel"] {
  width: 100%;
}

input[type="checkbox"] {
  border-radius: 0;
  margin-right: 0.5em;
  position: relative;
  top: 0.075em;
  height: 20px;
  width: 20px;
}

input[type="radio"] {
  margin-right: 0.5em;
  height: 1.8rem;
  width: 1.8rem;
}

.form_box textarea {
  padding: 0.75em 1em;
  width: 100%;
}

::-webkit-input-placeholder {
  letter-spacing: 0.1em;
  color: #afafaf;
  opacity: 1;
}

::-moz-placeholder {
  letter-spacing: 0.1em;
  color: #afafaf;
  opacity: 1;
}

:-ms-input-placeholder {
  letter-spacing: 0.1em;
  color: #afafaf;
}

input::placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder {
  color: #afafaf;
}

.txtarea {
  width: 100%;
}

.txtarea_01 {
  width: 5em;
}

.txtarea_02 {
  width: 5.5em;
}

.txtarea_03 {
  width: 6em;
}

.txtarea_04 {
  width: 7em;
}

.txtarea_05 {
  width: 8em;
}

.txtarea_06 {
  width: 9em;
}

.txtarea_07 {
  width: 10em;
}

.txtarea_08 {
  width: 11em;
}

.txtarea_09 {
  width: 12em;
}

.txtarea_10 {
  width: 13em;
}

.txtarea_11 {
  width: 14em;
}

.txtarea_12 {
  width: 15em;
}

.txtarea_13 {
  width: 20em;
}

.txtarea_14 {
  width: 25em;
}

.txtarea_15 {
  width: 30em;
}

.txtarea_16 {
  width: 35em;
}

span.error_blank,
span.error_format,
span.error_match {
  display: block;
  color: #be1a21;
  line-height: 2.5;
}

span.error_check {
  display: none;
  color: #be1a21;
}

span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba( 255, 255, 255, 0.2 );
  border-right: 5px solid rgba( 255, 255, 255, 0.2 );
  border-bottom: 5px solid rgba( 255, 255, 255, 0.2 );
  border-left: 5px solid #ffffff;
  -webkit-transform: translateZ( 0 );
  -ms-transform: translateZ( 0 );
  transform: translateZ( 0 );
  -webkit-animation: load-circle 1.0s linear infinite;
  animation: load-circle 1.0s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}

@-webkit-keyframes load-circle {
0% {
  -webkit-transform: rotate( 0deg );
  transform: rotate( 0deg );
}
100% {
  -webkit-transform: rotate( 360deg );
  transform: rotate( 360deg );
}
}

@keyframes load-circle {
0% {
  -webkit-transform: rotate( 0deg );
  transform: rotate( 0deg );
}
100% {
  -webkit-transform: rotate( 360deg );
  transform: rotate( 360deg );
}
}

#contact_sec .btn_box {
  display: flex;
  flex-direction: column;
}

#contact_sec .btn_box .agree_wrap {
  margin: 2vw 0 2.5vw;
}

#privacy {
  overflow-y: auto;
  height: 80vh;
}

#privacy .privacy_box {
  background-color: #ffffff;
  padding: 5vw;
}

#privacy .privacy_box article {
  counter-reset: number;
}

#privacy .privacy_box article > dl:not(:first-of-type) {
  margin-top: 2.5vw;
}

#privacy .privacy_box article > dl > dt {
  color: #ea5858;
  display: flex;
  align-items: baseline;
  font-weight: 700;
}

#privacy .privacy_box article > dl > dt:before {
  content: counter(number) ".";
  counter-increment: number;
  margin-right: 0.25em;
}

#privacy .privacy_box article > dl > dd {
  margin-top: 0.75vw;
}

#privacy .privacy_box article > dl > dd .list_04 {
  margin-top: 0.75vw;
}

.complete {
  overflow: hidden;
}

.complete .complete_wrap {
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 810px;
  height: auto;
  z-index: 2000;
}

.complete .overlay {
  background-color: rgba(0,0,0,0.8);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
}

.overlay {
  display: none;
}

.complete_wrap {
  display: none;
}

.complete_wrap .complete_box {
  text-align: center;
}

.complete_wrap .complete_box h1 {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 1.5em;
}

.complete_wrap .complete_box p {
  font-size: 1.6rem;
}

.complete_wrap .complete_box p:not(:first-of-type) {
  margin-top: 1em;
}

.complete_wrap .btn_box {
  margin-top: 5em;
}

/* -----------------------------------------------------------
    footer
----------------------------------------------------------- */
footer {
  background-color: #ea5858;
  color: #ffffff;
  padding: 5vw;
}

footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .add_box address dl {
  display: flex;
  align-items: baseline;
}

footer .add_box address dl dt {
  font-weight: 700;
}

footer .add_box address dl dd {
  margin-left: 1em;
  flex: 1 1;
}

footer .add_box address dl dd span:nth-of-type(2) {
  margin-left: 0.5em;
}

footer .add_box .copyright {
  font-weight: 500;
  margin-top: 0.5em;
}

footer .sns_box dl {
  display: flex;
  align-items: center;
}

footer .sns_box dl dd {
  margin-left: 1em;
}

footer .sns_box dl dd ul {
  display: flex;
  align-items: center;
}

footer .sns_box dl dd ul li:not(:first-of-type) {
  margin-left: 0.75em;
}

footer .sns_box dl dd ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  color: #ffffff;
  letter-spacing: normal;
  line-height: normal;
  width: 40px;
  height: 40px;
}

footer .sns_box dl dd ul li.in a:hover {
  background: #5724A8;
  border: 1px solid #5724A8;
}

footer .sns_box dl dd ul li.fb a:hover {
  background: #3b5998;
  border: 1px solid #3b5998;
}

footer .sns_box dl dd ul li.tw a:hover {
  background: #1da1f2;
  border: 1px solid #1da1f2;
}