@charset "UTF-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}


/* base
--------------------------------------------------*/
:root {
  --ac: #B15D5D;
  --sc: #D99191;
  --bc: #F7F7F7;
  --fc: #333;
  --tf: cubic-bezier(.3, 1, .3, 1);
  --hh: 8rem;
  --ht: 0;
}
@media (min-width: 960px) {
  :root {
    --hh: 12rem;
  }
}
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
body {
  font-family: 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, arial, sans-serif;
  color: var(--fc);
  font-size: 1.6rem;
  letter-spacing: .08em;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
}
.defs {
    display: none;
}
@media (min-width: 960px) {
  a[href*="tel"] {
    pointer-events: none;
  }
}
@media (min-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}
@media (max-width: 1600px) and (min-width: 960px) {
  html {
    font-size: .625vw;
  }
}

/* header
--------------------------------------------------*/
.admin-bar {
  --ht: 46px;
}
@media (min-width: 783px) {
  .admin-bar {
    --ht: 32px;
  }
}
.g_header.wpadminbar_less.active .logo,
.g_header.wpadminbar_less.active .h_nav,
.g_header.wpadminbar_less .h_btn {
	position: absolute;
}
@media (min-width: 960px) {
	.g_header.wpadminbar_less.active .logo,
	.g_header.wpadminbar_less.active .h_nav,
	.g_header.wpadminbar_less .h_btn {
		position: static;
	}
}

.g_header {
  position: absolute;
  top: var(--ht);
  left: 0;
  width: 100%;
}
.g_header::before {
  content: '';
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0 0 0 / 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s cubic-bezier(0.1, 0.5, 0.5, 1);
  z-index: 105;
}
.g_header.active::before {
  pointer-events: auto;
  opacity: 1;
}
.g_header .logo {
  position: relative;
  z-index: 110;
  display: flex;
  align-items: center;
  width: 100vw;
  height: var(--hh);
  background-color: #fff;
}
.g_header.active .logo {
  position: fixed;
  top: 0;
  left: 0;
}
.g_header .logo a {
  display: inline-block;
  margin-left: 3rem;
}
.g_header .logo a img {
  width: auto;
  height: 4rem;
}
.h_btn {
  position: fixed;
  top: 1.8rem;
  right: 1.4rem;
  z-index: 120;
  width: 5rem;
  height: 4.4rem;
  padding: 1rem;
  background-color: rgb(255 255 255 / 80%);
}
.h_btn__inner {
  position: relative;
  width: 3rem;
  height: 2.4rem;
}
.h_btn span {
  display: inline-block;
  position: absolute;
  left: 50%;
  width: 100%;
  height: .2rem;
  background-color: var(--ac);
  transform: translateX(-50%);
  transition: all .4s;
}
.h_btn span:nth-of-type(1) {
  top: 0;
}
.h_btn span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.h_btn span:nth-of-type(3) {
  bottom: 0;
}
.g_header.active .h_btn span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.g_header.active .h_btn span:nth-of-type(2) {
  opacity: 0;
}
.g_header.active .h_btn span:nth-of-type(3){
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.h_nav {
  position: fixed;
  top: var(--hh);
  left: 0;
  z-index: 110;
  width: 100vw;
  padding: 0 2.4rem 4.8rem;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s cubic-bezier(0.1, 0.5, 0.5, 1);
}
.g_header.active .h_nav {
  pointer-events: auto;
  opacity: 1;
}
.h_nav ul {
  margin-bottom: 3.2rem;
}
.h_nav ul li {
  border-bottom: 1px solid #d9d9d9;
}
.h_nav ul li a {
  display: block;
  padding: 1.6rem 0;
  color: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.h_nav .c_btn {
  font-size: 1.6rem;
}
.h_contact {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: fit-content;
  min-width: 27.5rem;
}
.h_contact .txt {
  width: 100%;
}
.h_contact .txt a {
  display: block;
  padding: 1rem 0;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
  border-radius: 5rem;
  background-color: var(--ac);
}
.h_contact .num svg {
  margin-right: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  fill: var(--ac);
}
.h_contact .num span {
  color: var(--ac);
  font-size: 3.6rem;
  font-family: 'Oswald', 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, arial, sans-serif;
}
@media (min-width: 960px) {
  .g_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--hh);
  }
  .g_header .logo {
    display: inline-block;
    width: auto;
    height: auto;
    background-color: inherit;
  }
  .g_header .logo a {
    margin-left: 4rem;
  }
  .g_header .logo a img {
    height: 6rem;
  }
  .h_btn {
    display: none;
  }
  .h_nav {
    display: flex;
    align-items: center;
    position: static;
    width: auto;
    height: 100%;
    padding: 0 4rem 0 0;
    background-color: inherit;
    pointer-events: auto;
    opacity: 1;
    transition: none;
  }
  .h_nav ul {
    display: flex;
    margin-bottom: 0;
  }
  .h_nav ul li {
    margin-right: 4rem;
    border-bottom: 0;
  }
  .h_nav ul li a {
    position: relative;
    padding: 1rem 0;
    font-size: inherit;
    transition: color .4s var(--tf);
  }
  .h_nav ul li a::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: .3rem;
    background-color: var(--sc);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .4s var(--tf);
  }
  .h_nav ul li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

/* main
--------------------------------------------------*/
.g_main {
  padding-top: var(--hh);
  padding-bottom: 9.6rem;
}
@media (min-width: 960px) {
  .g_main {
    padding-bottom: 12.8rem;
  }
}

.g_title {
  position: relative;
  display: flex;
  align-items: center;
  height: 21rem;
  background: url(../img/bg_title_sp.webp) center / cover;
}
.g_title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 20%);
}
.g_title .c_inner {
  flex-grow: 1;
  position: relative;
}
.g_title h1 {
  text-shadow: 0 0 1rem rgb(0 0 0 / 40%);
}
.g_title h1 .en::before {
  content: attr(data-sub-title);
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-family: 'Lato', sans-serif;
  line-height: 1.4;
  letter-spacing: .08em;
}
.g_title h1 .jp {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .08em;
}
@media (min-width: 960px) {
  .g_title {
    height: 32rem;
    background: url(../img/bg_title_pc.webp) center / cover;
  }
  .g_title h1 .en::before {
    font-size: 2.4rem;
  }
  .g_title h1 .jp {
    font-size: 4.8rem;
  }
}

.g_breadcrumb {
  display: none;
}
@media (min-width: 960px) {
  .g_breadcrumb {
    display: block;
    padding: 2.4rem 0 1.6rem;
  }
  .g_breadcrumb ul {
    display: flex;
  }
  .g_breadcrumb ul li:nth-child(n+2) {
    position: relative;
    margin-left: 1rem;
    padding-left: 2rem;
  }
  .g_breadcrumb ul li:nth-child(n+2)::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -.2rem;
    width: 8px;
    height: 8px;
    border-top: 2px solid #BCBCBC;
    border-right: 2px solid #BCBCBC;
    transform: translateY(-50%) rotate(45deg);
  }
  .g_breadcrumb a {
    color: var(--fc);
    transition: opacity .4s var(--tf);
  }
  .g_breadcrumb a:hover {
    opacity: .6;
  }
}

.g_container {
  padding-top: 4.8rem;
}
.g_container .c_inner:has(.g_side) {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media (min-width: 960px) {
  .g_container {
    padding-top: 6.4rem;
  }
  .g_container .c_inner:has(.g_side) {
    flex-direction: row;
    gap: 6.4rem;
  }
  .g_content {
    flex: 1;
  }
  .g_side {
    width: 36.8rem;
  }
}

/* footer
--------------------------------------------------*/
.g_contact {
  position: relative;
  padding: 0 0 4.8rem;
}
.g_contact header {
  position: relative;
  padding: 4.8rem 0 9.6rem;
  background: url(../img/bg_contact_sp.webp) center / cover;
  background-color:rgb(255 255 255 / 40%);
  background-blend-mode: lighten;
}
.g_contact header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(177 93 93 / 60%);
}
.g_contact header h2 {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  line-height: 2;
}
.g_contact header h2::before {
  content: attr(data-sub-title);
  display: block;
  font-size: 3.2rem;
  font-family: 'Lato', sans-serif;
  line-height: 1.4;
  letter-spacing: .08em;
}
.g_contact .inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  position: relative;
  margin: -6.4rem 2.4rem 0;
  padding: 3.2rem;
  border-radius: 1rem;
  background-color: #fff;
}
.g_contact .inner .tel {
  text-align: center;
}
.g_contact .inner .tel .num {
  margin-bottom: 1rem;
}
.g_contact .inner .tel .num svg {
  margin-right: .5rem;
  width: 2.8rem;
  height: 2.8rem;
  fill: var(--fc);
}
.g_contact .inner .tel .num span {
  font-size: 3.2rem;
  font-family: 'Oswald', 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, arial, sans-serif;
}
@media (min-width: 960px) {
  .g_contact {
    padding: 0 0 9.6rem;
  }
  .g_contact header {
    padding: 12.8rem 0 16rem;
    background-image: url(../img/bg_contact_pc.webp);
  }
  .g_contact header h2 {
    font-size: 2.4rem;
  }
  .g_contact header h2::before {
    font-size: 6.4rem;
  }
  .g_contact .inner {
    flex-direction: row;
    align-items: center;
    gap: 0;
    width: fit-content;
    margin: -10rem auto 0;
    padding: 6.4rem;
  }
  .g_contact .inner .tel {
    width: 40rem;
  }
  .g_contact .inner .tel .num {
    margin-bottom: 1.6rem;
  }
  .g_contact .inner .tel .num svg {
    margin-right: 1rem;
    width: 3.2rem;
    height: 3.2rem;
  }
  .g_contact .inner .tel .num span {
    font-size: 3.6rem;
  }
  .g_contact .inner .mail {
    width: 40rem;
  }
  .g_contact .inner .mail .c_btn {
    margin: 0 auto;
  }
}

.g_footer {
  position: relative;
  padding: 6.4rem 0;
  color: #fff;
  background-color: var(--ac);
}
.g_footer .c_inner {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.g_footer .info {
  text-align: center;
}
.g_footer .info .logo {
  margin-bottom: 1.6rem;
}
.g_footer .info .logo a {
  display: inline-block;
}
.g_footer .info .logo a img {
  width: 30rem;
  height: auto;
}
.g_footer .info address {
  font-style: normal;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.g_footer .schedule table {
  width: 100%;
  table-layout: fixed;
}
.g_footer .schedule table tr td:first-of-type {
  width: 39%;
}
.g_footer .schedule table tr td {
  padding: 1rem 0;
  text-align: center;
  border: .1rem solid #fff;
}
.g_footer .schedule table tr:nth-child(n+2) td:nth-child(n+2) {
  font-family: sans-serif;
}
.g_footer .schedule ul {
  margin-top: 1.6rem;
}
.g_footer .schedule ul li {
  line-height: 1.4;
}
.f_nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.f_nav ul li {
  border-bottom: 1px solid var(--bc);
}
.f_nav ul li a {
  position: relative;
  display: block;
  padding: 1.6rem 0;
  color: #fff;
}
.f_nav ul li a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.g_footer .meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.g_footer .meta .policy a {
  color: #fff;
  line-height: 2;
}
.g_footer .meta .copyright {
  font-size: 1.2rem;
  line-height: 2;
}
@media (min-width: 960px) {
  .g_footer .c_inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6.4rem;
  }
  .g_footer .info {
    width: 48rem;
    text-align: inherit;
  }
  .g_footer .info .logo {
    margin-bottom: 2.4rem;
  }
  .g_footer .info .logo a {
    transition: opacity .4s var(--tf);
  }
  .g_footer .info .logo a:hover {
    opacity: .6;
  }
  .g_footer .info .logo a img {
    width: 100%;
  }
  .g_footer .schedule {
    flex: 1;
  }
  .g_footer .f_nav {
    width: 100%;
  }
  .f_nav ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
  }
  .f_nav ul li a {
    transition: opacity .4s var(--tf);
  }
  .f_nav ul li a:hover {
    opacity: .6;
  }
  .f_nav ul li a::after {
    transition: right .4s var(--tf);
  }
  .f_nav ul li a:hover::after {
    right: 0;
  }
  .g_footer .meta {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .g_footer .meta .copyright {
    font-size: 1.4rem;
  }
}
.g_fixed {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: row;
  z-index: 10;
}
.g_fixed .inner {
  flex: 1;
  display: flex;
  flex-direction: row;
}
.g_fixed .inner .btn {
  flex: 1;
}
.g_fixed .inner .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  height: 100%;
  border-right: .1rem solid #fff;
  background-color: var(--sc);
}
.g_fixed .inner .btn a svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: #fff;
}
.g_fixed .inner .btn a span {
  color: #fff;
  font-weight: 600;
}
.g_fixed .pagetop a {
  position: relative;
  display: block;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  color: #fff;
  text-indent: 100%;
  white-space: nowrap;
  background-color: var(--sc);
}
.g_fixed .pagetop a::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6rem;
  height: 1.6rem;
  border-top: .3rem solid #fff;
  border-left: .3rem solid #fff;
  transform: translate(-50%, -30%) rotate(45deg);
}
@media (min-width: 960px) {
  .g_fixed {
    position: static;
  }
  .g_fixed .inner {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 2.4rem;
    z-index: 10;
  }
  .g_fixed .inner .btn a {
    flex-direction: column;
    width: 16rem;
    padding: 2.4rem 0;
    border-radius: 1rem 0 0 1rem;
    background-color: var(--ac);
    transition: background-color .4s var(--tf);
  }
  .g_fixed .inner .btn a:hover {
    background-color: var(--sc);
  }
  .g_fixed .inner .btn a svg {
    width: 4rem;
    height: 4rem;
  }
  .g_fixed .inner .btn a span {
    font-size: 2rem;
  }
  .g_fixed .pagetop {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 10;
  }
  .g_fixed .pagetop a {
    width: 8rem;
    height: 8rem;
    text-indent: 8rem;
  }
  .g_fixed .pagetop a::after {
    width: 1.6rem;
    height: 1.6rem;
    border-top: .3rem solid #fff;
    border-left: .3rem solid #fff;
    transform: translate(-50%, -30%) rotate(45deg);
  }
  .g_fixed .pagetop a::after {
    transition: top .4s var(--tf);
  }
  .g_fixed .pagetop a:hover::after {
    top: 40%;
  }
}

/* common
--------------------------------------------------*/
@media (min-width: 960px) {
  .sp {
    display: none;
  }
}

.c_inner {
  margin: 0 2.4rem;
}
@media (min-width: 520px) {
  .c_inner {
    margin: 0 8%;
  }
}
@media (min-width: 960px) {
  .c_inner {
    width: 84%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0;
  }
}

.c_link {
  color: #37a;
  text-decoration: underline;
}
@media (min-width: 960px) {
  .c_link {
    transition: opacity .4s var(--tf);
  }
  .c_link:hover {
    opacity: .6;
  }
}

.c_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 30rem;
  padding: 2.4rem;
  border-radius: 5rem;
  background-color: var(--ac);
  overflow: hidden;
}
.c_btn span {
  position: relative;
  color: #fff;
  font-weight: 700;
  z-index: 1;
}
.c_btn.arrow::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.c_btn.arrow.bottom::after {
  top: auto;
  right: auto;
  bottom: 1rem;
  transform: translate(0%, 0%) rotate(135deg);
}
.c_btn.contact svg {
  position: relative;
  width: 2.2rem;
  height: 1.6rem;
  margin-right: 1.6rem;
  fill: #fff;
  z-index: 1;
}
@media (min-width: 960px) {
  .c_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--sc);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .4s var(--tf);
  }
  .c_btn:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

.c_post_list .item {
  border-bottom: 1px solid #D9D9D9;
}
.c_post_list .item a {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: 2.4rem 0;
}
.c_post_list .item a .info {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.c_post_list .item a .info .cat {
  display: inline-block;
  padding: 0 1.6rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
  border-radius: .4rem;
  background-color: var(--ac);
}
.c_post_list .item a .info .date time {
  color: var(--fc);
  font-weight: 600;
}
.c_post_list .item a .title {
  color: var(--fc);
  line-height: 1.6;
}
@media (min-width: 960px) {
  .c_post_list .item a {
    transition: opacity .4s var(--tf);
  }
  .c_post_list .item a:hover {
    opacity: .6;
  }
}

.c_hdl_0201 {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.c_hdl_0201 .en {
  position: relative;
}
.c_hdl_0201 .en::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 6rem 4rem 6rem 4rem;
  background-color: #f7efef;
  transform: translate(-50%, -50%);
}
.c_hdl_0201 .en::after {
  content: attr(data-sub-title);
  position: relative;
  color: var(--sc);
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.c_hdl_0201 .jp {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 2;
}
@media (min-width: 960px) {
  .c_hdl_0201 .en::before {
    width: 8rem;
    height: 8rem;
  }
  .c_hdl_0201 .en::after {
    font-size: 2rem;
  }
  .c_hdl_0201 .jp {
    font-size: 3.2rem;
  }
}

.c_table {
  width: 100%;
}
.c_table tr {
  display: flex;
  flex-flow: column;
}
.c_table th {
  font-weight: 700;
  background-color: #F9F6F6;
}
.c_table th,
.c_table td {
  width: 100%;
  padding: 1rem 2rem;
  line-height: 1.6;
  vertical-align: middle;
  border: solid #D6CECE;
  border-width: 1px 1px 0 1px;
}
.c_table tr:last-of-type th:last-child,
.c_table tr:last-of-type td:last-child {
  border-width: 1px;
}
@media (min-width: 960px) {
  .c_table tr {
    display: table-row;
  }
  .c_table th {
    width: 24rem;
  }
  .c_table td {
    width: auto;
  }
  .c_table th,
  .c_table td {
    padding: 2rem 3rem;
    border-width: 1px;
  }
}

.fade {
  opacity: 0;
  transform: translateX(-4rem);
  transition: transform 1s var(--tf);
}
.fade.on {
  opacity: 1;
  transform: translateX(0);
}
.mask {
  position: relative;
}
.mask::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--sc);
  transform: scale(0,1);
}
.mask.on::before {
  animation: anim-mask 1s cubic-bezier(.86,0,.07,1) forwards;
}
@keyframes anim-mask {
  0% {
    transform: scale(0,1);
    transform-origin: left top
  }
  50% {
    transform: scale(1,1);
    transform-origin: left top
  }
  51% {
    transform: scale(1,1);
    transform-origin: right top
  }
  100% {
    transform: scale(0,1);
    transform-origin: right top
  }
}
.mask img {
  opacity: 0;
  backface-visibility: hidden;
}
.mask.on img {
  animation: anim-img 1s linear forwards;
}
@keyframes anim-img {
  0% {
    opacity: 0
  }
  50% {
    opacity: 0
  }
  51% {
    opacity: 1
  }
  100% {
    opacity: 1
  }
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* utility
--------------------------------------------------*/
.u_ta_center {
  text-align: center;
}