@charset "UTF-8";
/* 変数の定義
--------------------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* 色のクラス
--------------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.orange {
  color: #F15A22;
}

.blue {
  color: #1462CA;
}

/* グラデーション
--------------------------------------------------*/
/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
table,
tr,
th,
td,
a,
figure {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #000;
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}
@media screen and (max-width: 999px) {
  body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.3;
  font-weight: 700;
  color: #000;
}

.en {
  font-family: "Poppins", "Noto Sans JP", serif;
  letter-spacing: 0;
  line-height: 1;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

.mincho {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
}

.gothic {
  font-family: "Noto Sans JP", serif;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 共通
--------------------------------------------------*/
body {
  word-break: break-word;
}

a {
  transition-duration: 0.3s;
  -webkit-animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
          animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}

span {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

section {
  position: relative;
  z-index: 1;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* ヘッダー
--------------------------------------------------*/
header {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  padding: 0 20px 0 40px;
  z-index: 999;
}
@media screen and (max-width: 1199px) {
  header {
    padding-left: 3.33vw;
  }
}
@media screen and (max-width: 999px) {
  header {
    padding: 0 10px 0 15px;
    background-color: #94E2E8;
  }
}
header.scrolled .list_nav,
header.scrolled .contact {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 999px) {
  header.scrolled .list_nav,
header.scrolled .contact {
    box-shadow: none;
  }
}
header .logo {
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 35px;
}
@media screen and (max-width: 449px) {
  header .logo {
    height: 7.77vw;
  }
}
header .logo img {
  width: auto;
  height: 100%;
}
header .wrap_nav {
  display: flex;
  gap: 20px;
  height: 60px;
}
@media screen and (max-width: 1399px) {
  header .wrap_nav {
    gap: 1.42vw;
  }
}
@media screen and (max-width: 1199px) {
  header .wrap_nav {
    gap: 10px;
  }
}
header .wrap_nav_sp {
  display: contents;
  width: 100%;
  height: calc(100% - 90px);
  position: fixed;
  left: 0;
  top: 90px;
  z-index: 999;
  padding: 40px 20px;
  background-color: #EDF3F3;
  overflow-y: scroll;
}
@media screen and (max-width: 999px) {
  header .wrap_nav_sp {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  header .wrap_nav_sp > * {
    max-width: 728px;
    margin-left: auto;
    margin-right: auto;
  }
}
header .list_nav {
  transition-duration: 0.3s;
  -webkit-animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
          animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
  padding: 0 40px;
  background-color: #fff;
  border-radius: 60px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
}
@media screen and (max-width: 1399px) {
  header .list_nav {
    gap: 2.14vw;
    padding: 0 2.85vw;
  }
}
@media screen and (max-width: 1399px) {
  header .list_nav {
    padding: 0 2.5vw;
  }
}
@media screen and (max-width: 999px) {
  header .list_nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    height: auto;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border-top: 1px solid #1462CA;
  }
}
header .list_nav .lg-view {
  display: none;
}
@media screen and (max-width: 999px) {
  header .list_nav .lg-view {
    display: block;
  }
}
@media screen and (max-width: 999px) {
  header .list_nav > li {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #1462CA;
  }
}
@media screen and (max-width: 999px) {
  header .list_nav > li > a {
    position: relative;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 999px) {
  header .list_nav > li > a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(../img/icon_arrow_blue.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}
header .list_nav li,
header .list_nav a {
  color: #1462CA;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 1399px) {
  header .list_nav li,
header .list_nav a {
    font-size: clamp(1.3rem, 1.28vw, 1.28vw);
  }
}
@media screen and (max-width: 999px) {
  header .list_nav li,
header .list_nav a {
    color: #000;
  }
}
header .btn {
  display: none;
}
@media screen and (max-width: 999px) {
  header .btn {
    display: flex;
  }
}
header .list_links {
  display: none;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 60px;
}
@media screen and (max-width: 999px) {
  header .list_links {
    display: flex;
  }
}
header .list_links li,
header .list_links a {
  color: #777;
  font-size: 1.2rem;
}
header .list_links a {
  position: relative;
}
header .list_links a::after {
  content: "";
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  margin-left: 0.3em;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.228' height='14.228' viewBox='0 0 14.228 14.228'%3E%3Cpath id='arrow-up-right-from-square-solid' d='M8.892,0a.889.889,0,0,0,0,1.778h2.3L5.6,7.375A.89.89,0,0,0,6.855,8.634l5.594-5.6v2.3a.889.889,0,0,0,1.778,0V.889A.888.888,0,0,0,13.338,0ZM2.223.889A2.222,2.222,0,0,0,0,3.112V12a2.222,2.222,0,0,0,2.223,2.223h8.892A2.222,2.222,0,0,0,13.338,12V8.892a.889.889,0,0,0-1.778,0V12a.446.446,0,0,1-.445.445H2.223A.446.446,0,0,1,1.778,12V3.112a.446.446,0,0,1,.445-.445H5.335a.889.889,0,0,0,0-1.778Z' fill='%23fff'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.228' height='14.228' viewBox='0 0 14.228 14.228'%3E%3Cpath id='arrow-up-right-from-square-solid' d='M8.892,0a.889.889,0,0,0,0,1.778h2.3L5.6,7.375A.89.89,0,0,0,6.855,8.634l5.594-5.6v2.3a.889.889,0,0,0,1.778,0V.889A.888.888,0,0,0,13.338,0ZM2.223.889A2.222,2.222,0,0,0,0,3.112V12a2.222,2.222,0,0,0,2.223,2.223h8.892A2.222,2.222,0,0,0,13.338,12V8.892a.889.889,0,0,0-1.778,0V12a.446.446,0,0,1-.445.445H2.223A.446.446,0,0,1,1.778,12V3.112a.446.446,0,0,1,.445-.445H5.335a.889.889,0,0,0,0-1.778Z' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-color: #777;
}
header .contact {
  background: rgb(243, 135, 59);
  background: linear-gradient(90deg, rgb(243, 135, 59) 0%, rgb(241, 90, 34) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-radius: 60px;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0);
}
@media screen and (max-width: 1399px) {
  header .contact {
    padding: 0 2.85vw;
    font-size: clamp(1.3rem, 1.28vw, 1.28vw);
  }
}
@media screen and (max-width: 1199px) {
  header .contact {
    padding: 0 2.5vw;
  }
}
@media screen and (max-width: 999px) {
  header .contact {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 389px) {
  header .contact {
    font-size: 3.58vw;
    padding: 0 3.84vw;
    height: 15.38vw;
  }
}
header .contact::before {
  transition-duration: 0.3s;
  -webkit-animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
          animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background-color: rgb(243, 135, 59);
  opacity: 0;
  z-index: 0;
}
header .contact .icon {
  position: relative;
  width: 21px;
  margin-right: 0.6em;
}
@media screen and (max-width: 999px) {
  header .contact .icon {
    width: 16px;
  }
}
header .contact .txt {
  position: relative;
}
header .contact:hover::before {
  opacity: 1;
}
header .openbtn {
  position: relative;
  cursor: pointer;
  display: none;
  z-index: 1000;
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 999px) {
  header .openbtn {
    display: block;
  }
}
@media screen and (max-width: 389px) {
  header .openbtn {
    width: 15.38vw;
    height: 15.38vw;
  }
}
header .openbtn span {
  transition-duration: 0.3s;
  -webkit-animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
          animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
  display: inline-block;
  position: absolute;
}
header .openbtn span:nth-of-type(1), header .openbtn span:nth-of-type(2), header .openbtn span:nth-of-type(3) {
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: #1462CA;
  width: 50%;
}
header .openbtn span:nth-of-type(1) {
  top: 23px;
}
@media screen and (max-width: 389px) {
  header .openbtn span:nth-of-type(1) {
    top: 5.89vw;
  }
}
header .openbtn span:nth-of-type(2) {
  top: 29px;
  opacity: 1;
}
@media screen and (max-width: 389px) {
  header .openbtn span:nth-of-type(2) {
    top: 7.43vw;
  }
}
header .openbtn span:nth-of-type(3) {
  top: 35px;
}
@media screen and (max-width: 389px) {
  header .openbtn span:nth-of-type(3) {
    top: 8.97vw;
  }
}
header .openbtn.active span:nth-of-type(1) {
  transform: translate(-50%, 6px) rotate(-45deg);
}
@media screen and (max-width: 389px) {
  header .openbtn.active span:nth-of-type(1) {
    transform: translate(-50%, 1.53vw) rotate(-45deg);
  }
}
header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
header .openbtn.active span:nth-of-type(3) {
  transform: translate(-50%, -6px) rotate(45deg);
}
@media screen and (max-width: 389px) {
  header .openbtn.active span:nth-of-type(3) {
    transform: translate(-50%, -1.53vw) rotate(45deg);
  }
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* フッター
--------------------------------------------------*/
footer {
  background-color: #EDF3F3;
  padding: calc(60px + 2vw) 0 0;
}
@media screen and (max-width: 999px) {
  footer {
    padding: calc(50px + 2vw) 0 0;
  }
}
footer .logo_wrap {
  width: 195px;
  margin-bottom: 20px;
}
@media screen and (max-width: 999px) {
  footer .logo_wrap {
    width: 132px;
  }
}
footer .footer_link_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  padding-bottom: 50px;
}
@media screen and (max-width: 999px) {
  footer .footer_link_wrap {
    padding-bottom: 40px;
  }
}
footer .footer_link_wrap .footer_link {
  font-size: 1.4rem;
}
@media screen and (max-width: 999px) {
  footer .footer_link_wrap .footer_link {
    font-size: 1.2rem;
  }
}
footer .footer_link_wrap .footer_link a {
  position: relative;
  font-size: 1.4rem;
}
@media screen and (max-width: 999px) {
  footer .footer_link_wrap .footer_link a {
    font-size: 1.2rem;
  }
}
footer .footer_link_wrap .footer_link a::after {
  content: "";
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  margin-left: 0.5em;
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.228' height='14.228' viewBox='0 0 14.228 14.228'%3E%3Cpath id='arrow-up-right-from-square-solid' d='M8.892,0a.889.889,0,0,0,0,1.778h2.3L5.6,7.375A.89.89,0,0,0,6.855,8.634l5.594-5.6v2.3a.889.889,0,0,0,1.778,0V.889A.888.888,0,0,0,13.338,0ZM2.223.889A2.222,2.222,0,0,0,0,3.112V12a2.222,2.222,0,0,0,2.223,2.223h8.892A2.222,2.222,0,0,0,13.338,12V8.892a.889.889,0,0,0-1.778,0V12a.446.446,0,0,1-.445.445H2.223A.446.446,0,0,1,1.778,12V3.112a.446.446,0,0,1,.445-.445H5.335a.889.889,0,0,0,0-1.778Z' fill='%23fff'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.228' height='14.228' viewBox='0 0 14.228 14.228'%3E%3Cpath id='arrow-up-right-from-square-solid' d='M8.892,0a.889.889,0,0,0,0,1.778h2.3L5.6,7.375A.89.89,0,0,0,6.855,8.634l5.594-5.6v2.3a.889.889,0,0,0,1.778,0V.889A.888.888,0,0,0,13.338,0ZM2.223.889A2.222,2.222,0,0,0,0,3.112V12a2.222,2.222,0,0,0,2.223,2.223h8.892A2.222,2.222,0,0,0,13.338,12V8.892a.889.889,0,0,0-1.778,0V12a.446.446,0,0,1-.445.445H2.223A.446.446,0,0,1,1.778,12V3.112a.446.446,0,0,1,.445-.445H5.335a.889.889,0,0,0,0-1.778Z' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-color: #000;
}
footer .foot_btm {
  padding: 17px 20px;
  background-color: #000;
}
@media screen and (max-width: 999px) {
  footer .foot_btm {
    padding: 12px 20px;
  }
}
footer .copy {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.3;
}

/* 流用パーツ
--------------------------------------------------*/
.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-view {
    display: block;
  }
}

.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  .sp-view {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  br.tab {
    display: none;
  }
}
br.pc-view {
  display: none;
}
@media screen and (min-width: 769px) {
  br.pc-view {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 850px) {
  br.pc-view.blank {
    display: none;
  }
}
br.lg-view {
  display: block;
}
@media screen and (min-width: 1000px) {
  br.lg-view {
    display: none;
  }
}
br.sp-view {
  display: block;
}
@media screen and (min-width: 769px) {
  br.sp-view {
    display: none;
  }
}
br.sm-view {
  display: none;
}
@media screen and (max-width: 449px) {
  br.sm-view {
    display: block;
  }
}
br.tn-view {
  display: none;
}
@media screen and (max-width: 389px) {
  br.tn-view {
    display: block;
  }
}
@media screen and (max-width: 999px) {
  br.lg-none {
    display: none;
  }
}
@media screen and (max-width: 449px) {
  br.sm-none {
    display: none;
  }
}

.x50 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 50%;
}

.x55 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 55%;
}

.x60 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 60%;
}

.x66 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 66.66%;
}

.x70 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 70%;
}

.x80 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 80%;
}

.x85 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 85%;
}

.x90 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 90%;
}

.x40 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 40%;
}

.x120 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 120%;
}

.x130 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 130%;
}

.x140 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 140%;
}

.x150 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 150%;
}

.x160 {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 160%;
}

.mb0 {
  margin-bottom: 0;
}

.mb30 {
  margin-bottom: 30px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mt100 {
  margin-top: 100px;
}

.pt100 {
  padding-top: 100px;
}

.w90p {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w90p {
    width: 90%;
  }
}

.w70p {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w70p {
    width: 90%;
  }
}

.w60p {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w60p {
    width: 90%;
  }
}

.w50p {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w50p {
    width: 90%;
  }
}

.w1000 {
  max-width: 1000px;
  width: 71.42%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w1000 {
    width: 90%;
  }
}

.w1200 {
  max-width: 1200px;
  width: 85.71%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 999px) {
  .w1200 {
    width: 90%;
  }
}

.p-lr60 {
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 999px) {
  .p-lr60 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-lr40 {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 999px) {
  .p-lr40 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-lr20 {
  padding-left: 20px;
  padding-right: 20px;
}

.p20 {
  padding: 20px;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.tx_justify {
  text-align: justify;
}

/* 共通パーツ
--------------------------------------------------*/
.w_common {
  width: 85.71%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .w_common {
    width: calc(100% - 40px);
  }
}

.thumb {
  overflow: hidden;
}
.thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

img.zoom {
  transition-duration: 0.3s;
  -webkit-animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
          animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
}

a:hover .zoom {
  transform: scale(1.1);
}

a.a_opacity {
  opacity: 1;
}
a.a_opacity:hover {
  opacity: 0.6;
}
a.a_opacity_orange {
  color: #F15A22;
}

.a_line {
  text-decoration: underline;
  color: #F15A22;
}

.btn {
  position: relative;
}

span.word {
  display: inline-block;
}

a.tel {
  pointer-events: none;
}
@media screen and (max-width: 999px) {
  a.tel {
    pointer-events: all;
  }
}

.fadein {
  opacity: 0;
}
.fadein.action {
  -webkit-animation: 1s cubic-bezier(0.83, 0, 0.17, 1) forwards fadein;
          animation: 1s cubic-bezier(0.83, 0, 0.17, 1) forwards fadein;
}
.fadein_delay {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */