@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
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, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

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

blockquote, q {
  quotes: none;
}

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

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

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

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 #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  font-family: YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-darkpink: #D77A90;
  --color-pailpink: rgba(212,62,104,0.05);
  --color-white: #fff;
  --color-black: #564F5C;
  --color-blue: #92CEF0;
  --color-gray: rgba(86,79,92,0.7);
}

@keyframes textline {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes Spin {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes rotate_center {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes fuyofuyo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
body {
  font-family: YakuHanJP, "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  color: var(--color-black);
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.l-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg/bg_pc.jpg) no-repeat center center;
  background-size: cover;
  transform: scale(1.1);
}
.is-load .l-bg::before {
  transform: scale(1);
  transition: transform 10s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .l-bg::before {
    background: url(../img/bg/bg_sp.jpg) no-repeat center center;
    background-size: cover;
  }
}

.l-wrap {
  position: relative;
}
@media screen and (max-width: 899px) {
  .l-wrap {
    overflow: hidden;
  }
}

.l-content {
  opacity: 0;
}
.is-load .l-content {
  opacity: 1;
}

.l-header {
  position: relative;
  z-index: 2;
}
.l-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 900px) {
  .l-header__content {
    min-height: 140px;
  }
}
@media screen and (max-width: 899px) {
  .l-header__content {
    margin-top: 15px;
    flex-direction: row-reverse;
  }
}
.l-header__inner {
  padding: 0 40px;
}
@media screen and (max-width: 899px) {
  .l-header__inner {
    padding: 15px 20px 23px;
    display: block;
  }
}
@media screen and (min-width: 900px) {
  .l-header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 29%;
    max-width: 400px;
  }
}
@media screen and (max-width: 1030px) {
  .l-header__logo {
    left: 45%;
  }
}
@media screen and (max-width: 899px) {
  .l-header__logo {
    width: min(250px, 66.6666666667vw);
    margin: 0 auto;
  }
}
.l-header__logo a {
  display: block;
}
@media (hover: hover) {
  .l-header__logo a:hover img {
    transform: scale(0.97);
  }
}
.l-header__logo img {
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.l-header__sns {
  display: flex;
}
.l-header__sns-item {
  width: 20px;
}
@media screen and (max-width: 899px) {
  .l-header__sns-item {
    width: min(16px, 4.2666666667vw);
  }
}
.l-header__sns-item + .l-header__sns-item {
  margin-left: 20px;
}
@media screen and (max-width: 899px) {
  .l-header__sns-item + .l-header__sns-item {
    margin-left: min(24px, 6.4vw);
  }
}
.l-header__sns-item a {
  display: block;
  position: relative;
}
.l-header__sns-item a svg {
  fill: var(--color-darkpink);
}
@media (hover: hover) {
  .l-header__sns-item a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.l-header__sns-item a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-darkpink);
  position: absolute;
  bottom: -3px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-header__menu {
  display: flex;
}
.l-header__menu-item {
  position: relative;
  padding-right: 23px;
  transform: translateY(25px);
  opacity: 0;
}
.is-load .l-header__menu-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .l-header__menu-item:nth-child(1) {
  transition-delay: 0.4s;
}
.is-load .l-header__menu-item:nth-child(2) {
  transition-delay: 0.54s;
}
.is-load .l-header__menu-item:nth-child(3) {
  transition-delay: 0.68s;
}
.is-load .l-header__menu-item:nth-child(4) {
  transition-delay: 0.82s;
}
.is-load .l-header__menu-item:nth-child(5) {
  transition-delay: 0.96s;
}
@media screen and (max-width: 899px) {
  .l-header__menu-item {
    padding-right: min(16px, 4.2666666667vw);
  }
}
.l-header__menu-item + .l-header__menu-item {
  margin-left: 30px;
}
@media screen and (max-width: 899px) {
  .l-header__menu-item + .l-header__menu-item {
    margin-left: min(32px, 8.5333333333vw);
  }
}
.l-header__menu-item::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  -webkit-mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
  mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-darkpink);
}
@media screen and (max-width: 899px) {
  .l-header__menu-item::before {
    width: min(8px, 2.1333333333vw);
    height: min(8px, 2.1333333333vw);
  }
}
.l-header__menu-item a {
  text-decoration: none;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  display: block;
  letter-spacing: 0.5px;
  color: var(--color-darkpink);
  font-size: min(16px, 4.2666666667vw);
  position: relative;
}
@media screen and (max-width: 899px) {
  .l-header__menu-item a {
    font-size: min(12px, 3.2vw);
  }
}
@media (hover: hover) {
  .l-header__menu-item a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.l-header__menu-item a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-darkpink);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-section {
  padding-top: 70px;
}
@media screen and (max-width: 899px) {
  .l-section {
    padding-top: 40px;
  }
}
.is-load .l-section:nth-child(2n) .l-section__line-box {
  animation: textline 60s linear infinite forwards reverse;
}
.l-section__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  padding-bottom: 60px;
}
@media screen and (max-width: 899px) {
  .l-section__inner {
    padding-bottom: 50px;
  }
}
.l-section__ttl {
  text-align: center;
}
.l-section__ttl h2 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-size: 70px;
  color: var(--color-darkpink);
  transform: translateY(25px);
  opacity: 0;
}
.l-section.is-active .l-section__ttl h2 {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .l-section__ttl h2 {
    font-size: 45px;
  }
}
.l-section__ttl-sub {
  font-weight: 500;
  font-size: 15px;
  color: var(--color-darkpink);
  position: relative;
  margin-top: -1px;
  transform: translateY(25px);
  opacity: 0;
}
.l-section.is-active .l-section__ttl-sub {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}
@media screen and (max-width: 899px) {
  .l-section__ttl-sub {
    font-size: 13px;
    margin-top: 0px;
  }
}
.l-section__line {
  overflow: hidden;
  display: flex;
}
.l-in .l-section__line {
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-section__line-box {
  display: flex;
  white-space: nowrap;
}
.is-load .l-section__line-box {
  animation: textline 60s linear infinite forwards;
}
.l-section__line-item {
  flex-shrink: 0;
  width: 1800px;
}
@media screen and (max-width: 899px) {
  .l-section__line-item {
    width: 880px;
  }
}

.l-footer {
  overflow: hidden;
}
.l-footer__content {
  position: relative;
  padding: 80px 30px;
}
@media screen and (max-width: 899px) {
  .l-footer__content {
    padding: 60px 20px 50px;
  }
}
.l-footer__bnr {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 90%;
  max-width: 700px;
}
@media screen and (max-width: 899px) {
  .l-footer__bnr {
    width: 100%;
    justify-content: center;
  }
}
.l-footer__bnr-item {
  width: 32%;
}
@media screen and (min-width: 900px) {
  .l-footer__bnr-item {
    margin-right: 2%;
  }
  .l-footer__bnr-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .l-footer__bnr-item {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .l-footer__bnr-item:nth-child(2n) {
    margin-right: 0;
  }
}
.l-footer__bnr-item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.l-footer__bnr-item a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(212, 62, 104, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) {
  .l-footer__bnr-item a:hover::after {
    opacity: 1;
  }
  .l-footer__bnr-item a:hover img {
    transform: scale(1.05);
  }
}
.l-footer__bnr-item a img {
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.l-footer__copy {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
}
@media screen and (max-width: 899px) {
  .l-footer__copy {
    font-size: 10px;
    margin-top: 31px;
  }
}
.l-footer__pagetop {
  position: absolute;
  bottom: 12%;
  right: 2%;
  width: 8.5%;
  max-width: 120px;
}
@media (hover: hover) {
  .l-footer__pagetop {
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .l-footer__pagetop:hover {
    transform: scale(1.1);
  }
  .l-footer__pagetop:hover .l-footer__pagetop-arrow {
    transform: scale(0.85);
  }
}
@media screen and (max-width: 899px) {
  .l-footer__pagetop {
    position: relative;
    margin: 0 auto;
    margin-top: 30px;
    bottom: 0;
    right: 0;
    width: 20.5%;
    margin-top: 40px;
  }
}
.is-load .l-footer__pagetop-base img {
  animation: rotate_loop 8s linear infinite forwards;
}
.l-footer__pagetop-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.l-in {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  padding: 118px 5%;
}
@media screen and (max-width: 899px) {
  .l-in {
    padding: 58px 5% 38px;
  }
}
.l-in__head {
  text-align: center;
  color: var(--color-darkpink);
  margin-bottom: 77px;
}
@media screen and (max-width: 899px) {
  .l-in__head {
    margin-bottom: 30px;
  }
}
.l-in__head h1 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-size: 70px;
  transform: translateY(25px);
  opacity: 0;
}
.is-load .l-in__head h1 {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 899px) {
  .l-in__head h1 {
    font-size: 45px;
  }
}
.l-in__head-sub {
  font-size: 15px;
  transform: translateY(25px);
  opacity: 0;
  font-weight: 500;
}
.is-load .l-in__head-sub {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}
@media screen and (max-width: 899px) {
  .l-in__head-sub {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 1px;
  }
}
.l-in__content {
  position: relative;
  padding-bottom: 42px;
  transform: translateY(25px);
  opacity: 0;
}
.is-load .l-in__content {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.35s;
}

@media screen and (max-height: 800px) {
  html body .m-modal .m-modal__content {
    max-width: 1000px;
  }
}
@media screen and (max-width: 899px) {
  html body .m-modal .m-modal__content {
    width: 100%;
  }
}
html body .m-modal .m-modal__bg {
  background-color: rgba(212, 62, 104, 0.4);
}
html body .m-modal .m-modal__close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 899px) {
  html body .m-modal .m-modal__close-btn {
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
  }
}
@media (hover: hover) {
  html body .m-modal .m-modal__close-btn {
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  }
  html body .m-modal .m-modal__close-btn:hover {
    transform: scale(1.1);
  }
}
html body .m-modal .m-modal__close-btn::before {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  left: 0;
  background-color: transparent;
  background: url(../img/common/btn_close_txt.png) no-repeat center center;
  background-size: contain;
}
html body .m-modal .m-modal__close-btn::after {
  width: 100%;
  height: 100%;
  transform: rotate(0);
  left: 0;
  background-color: transparent;
  background: url(../img/common/btn_close_icon.png) no-repeat center center;
  background-size: contain;
}

html body .m-modal.is-open .m-modal__close-btn::before {
  animation: rotate_loop 8s linear infinite;
}

html body .m-modal.is-close .m-modal__close-btn::before {
  animation: rotate_loop 8s linear infinite;
}

.l-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.is-load .l-loading {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.l-loading__loader {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, var(--color-darkpink) 94%, rgba(0, 0, 0, 0)) top/6px 6px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, var(--color-darkpink));
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 6px), #000 0);
  animation: Spin 1s infinite linear;
}
@media screen and (max-width: 899px) {
  .l-loading__loader {
    width: 50px;
    height: 50px;
    background: radial-gradient(farthest-side, var(--color-darkpink) 94%, rgba(0, 0, 0, 0)) top/4px 4px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, var(--color-darkpink));
    -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 4px), #000 0);
  }
}

.c-more {
  border: 1px solid var(--color-darkpink);
  width: 125px;
  border-radius: 100px;
  text-align: center;
  transition: background 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media (hover: hover) {
  .c-more:hover {
    background-color: var(--color-darkpink);
  }
  .c-more:hover .c-more__text {
    color: var(--color-white);
  }
  .c-more:hover .c-more__text::before {
    background-color: var(--color-white);
  }
}
@media screen and (max-width: 899px) {
  .c-more {
    width: 150px;
    text-align: left;
  }
}
.c-more__inner {
  display: block;
  text-decoration: none;
  padding: 9px 0 5px;
}
@media screen and (max-width: 899px) {
  .c-more__inner {
    padding: 10px 14px 11px;
  }
}
.c-more__text {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: var(--color-darkpink);
  position: relative;
  padding-right: 21px;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: color 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .c-more__text {
    margin-left: 0;
    font-size: 12px;
    width: 100%;
  }
}
.c-more__text::before {
  content: "";
  width: 11px;
  height: 100%;
  position: absolute;
  top: -1px;
  right: 0;
  -webkit-mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
  mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-darkpink);
  transition: background 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .c-more__text::before {
    width: 8px;
    top: 0px;
  }
}

.c-btn {
  background-color: var(--color-white);
  border-radius: 100px;
  transition: background 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media (hover: hover) {
  .c-btn:hover {
    background-color: var(--color-blue);
  }
  .c-btn:hover .c-btn__inner::after {
    background-color: var(--color-white);
  }
  .c-btn:hover .c-btn__text {
    color: var(--color-white);
  }
}
.c-btn__inner {
  display: block;
  text-decoration: none;
  padding: 22px 12% 26px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .c-btn__inner {
    padding: 15px 12% 17px;
  }
}
.c-btn__inner::after {
  content: "";
  width: 11px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 7%;
  -webkit-mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
  mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-blue);
  transition: background 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .c-btn__inner::after {
    width: 9px;
    right: 8%;
  }
}
.c-btn__text {
  line-height: 1.4;
  color: var(--color-blue);
  font-weight: 500;
  transition: color 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .c-btn__text {
    font-size: 13px;
  }
}

.c-back {
  text-align: right;
  border-radius: 100px;
  border: 1px solid var(--color-blue);
  margin: 0 auto;
  width: 160px;
  transition: background 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media (hover: hover) {
  .c-back:hover {
    background-color: var(--color-blue);
  }
  .c-back:hover .c-back__text {
    color: var(--color-white);
  }
  .c-back:hover .c-back__text::before {
    background-color: var(--color-white);
  }
}
@media screen and (max-width: 899px) {
  .c-back {
    width: 150px;
  }
}
.c-back__inner {
  text-decoration: none;
  display: block;
  padding: 14px 19px 10px;
}
@media screen and (max-width: 899px) {
  .c-back__inner {
    padding: 12px 14px 9px;
  }
}
.c-back__text {
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: var(--color-blue);
  position: relative;
  transition: color 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .c-back__text {
    font-size: 12px;
  }
}
.c-back__text::before {
  content: "";
  width: 10px;
  height: 100%;
  position: absolute;
  top: -2px;
  left: 0;
  -webkit-mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
  mask: url(../img/common/icon_arrow_1.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-blue);
  transform: scaleX(-1);
  transition: background 0.55s cubic-bezier(0.37, 0, 0.63, 1);
}
@media screen and (max-width: 899px) {
  .c-back__text::before {
    width: 8px;
  }
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}