@charset "UTF-8";
/* settings
---------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@100&family=Noto+Sans+JP:wght@100;400&display=swap");
/* Base
-------------------------------- */
/*スタイル デフォルト設定*/
:root {
  /*** カラー設定 ***/
  /* 基本カラー */
  --colorAccent: #d40354;
  --colorMain-red: #e84133;
  --colorMain-yellow: #faba03;
  --colorMain-blue: #1a71eb;
  --colorMain-green: #34a853;
  --colorBase: #000000;
  --colorBase-white: #ffffff;
  --gradation-1: repeating-linear-gradient(
    0deg,
    #111 0,
    #111 20%,
    #555 50%,
    #111 80%,
    #111 100%
  );
  /*背景色*/
  --bgColor-white: #ffffff;
  --bgColor-yellow: #faba03;
  --bgColor-gray: #4f4f4f;
  --bgColor-5: #c5c5c5;
  --bgColor-6: #a5a5a5;
  /*ボタンカラー*/
  /*ボーダーカラー*/
  --bordercolor-accent: #d40354;
  /*シャドウ*/
  --shadow-box1: 1px 1px 0px rgba(0, 0, 0, 0.3);
  --shadowText-white-1: 3px 3px 3px #fff, -3px -3px 3px #ffff, -3px 3px 3px #fff,
    3px -3px 3px #fff, 3px 0px 3px #fff, -3px -0px 3px #fff, 0px 3px 3px #fff,
    0px -3px 3px #fff;
  --shadowtext-white-2: 1px 1px 0 #fff, 2px 2px 0 #fff, 3px 3px 0 #fff,
    4px 4px 0 #fff, 5px 5px 0 #fff, -1px -1px 0 #fff, -2px -2px 0 #fff,
    -3px -3px 0 #fff, -4px -4px 0 #fff, -5px -5px 0 #fff,
    6px 6px 4px rgba(0, 0, 0, 0.2);
  /*フォントサイズ*/
  --fontSize-ss: clamp(12px, 1.2vw, 14px);
  --fontSize-s: clamp(13px, 1.7vw, 18px);
  --fontSize-sl: clamp(16px, 2.2vw, 22px);
  --fontSize: clamp(18px, 2.6vw, 28px);
  --fontSize-ms: clamp(20px, 2.7vw, 32px);
  --fontSize-m: clamp(25px, 3.3vw, 36px);
  --fontSize-ml: clamp(30px, 4vw, 43px);
  --fontSize-lm: clamp(36px, 4.8vw, 52px);
  --fontSize-ls: clamp(40px, 5.5vw, 60px);
  --fontSize-l: clamp(50px, 6.2vw, 70px);
  --fontSize-ll: clamp(80px, 11vw, 125px);
  /*書体*/
  --font-jp-gothic: "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  --font-jp-gothic-2: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
}

@media (min-width: 768px) and (max-width: 969px) {
  :root {
    /*フォントサイズ*/
    --fontSize-s: clamp(12px, 1.2vw, 14px);
    --fontSize: clamp(15px, 2vw, 22px);
    --fontSize-ms: clamp(16px, 2.2vw, 24px);
    --fontSize-m: clamp(20px, 2.7vw, 30px);
    --fontSize-ml: clamp(25px, 3.3vw, 36px);
    --fontSize-lm: clamp(30px, 4vw, 43px);
    --fontSize-ls: clamp(36px, 4.8vw, 52px);
    --fontSize-l: clamp(40px, 5.5vw, 60px);
    --fontSize-ll: clamp(55px, 7.5vw, 85px);
  }
}
@media (max-width: 767px) {
  :root {
    /*フォントサイズ*/
    --fontSize-s: clamp(10px, 1vw, 12px);
    --fontSize: clamp(14px, 1.6vw, 16px);
    --fontSize-ms: clamp(13px, 1.7vw, 18px);
    --fontSize-m: clamp(16px, 2.2vw, 24px);
    --fontSize-ml: clamp(18px, 2.7vw, 30px);
    --fontSize-lm: clamp(23px, 3.3vw, 36px);
    --fontSize-ls: clamp(25px, 4vw, 43px);
    --fontSize-l: clamp(26px, 4.8vw, 52px);
    --fontSize-ll: clamp(30px, 5.5vw, 60px);
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none !important;
}

* {
  min-height: 0vw;
}

html {
  font-size: 62.5%;
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--fontColor-base);
  font-size: var(--fontSize);
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: var(--font-jp-gothic);
}
@media (max-width: 767px) {
  body {
    min-width: initial;
  }
}

header,
main,
footer {
  margin: 0 auto;
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-family: var(--font-jp-gothic);
  font-weight: 400;
}
@media (max-width: 767px) {
  p {
    line-height: 2;
    font-size: 3.7333333333vw;
  }
}

a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}

hr {
  background: none;
  border: none;
  border-bottom: 1px solid #f5f5f5;
  margin: 0;
}

time {
  font-size: 11px;
  display: block;
}

dl dt {
  line-height: 1.6;
}
@media (max-width: 767px) {
  dl dt {
    line-height: 1.6;
  }
}
dl dd {
  line-height: 1.6;
}
@media (max-width: 767px) {
  dl dd {
    line-height: 1.6;
  }
}

caption,
th {
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

input,
textarea,
select,
button {
  /*! autoprefixer: off */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*! autoprefixer: on */
  font-family: inherit;
  font-size: 1em;
}

input[type=submit] {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type=submit]:hover {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0.5em 0;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

h2 {
  margin-bottom: 3.2rem;
}

@media (max-width: 767px) {
  h2 {
    margin-bottom: 4.2666666667vw;
  }
}
iframe {
  border: none;
  overflow: hidden;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/** contents
----------------------------------*/
.l-wrapper {
  overflow: hidden;
}

.l-main {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/******* Parts
--------------------------------------------------------------------------*/
/* display
-----------------------------*/
.pc {
  display: block;
}

.tab {
  display: none;
}

.sp {
  display: none;
}

@media (min-width: 768px) and (max-width: 969px) {
  .pc {
    display: none;
  }
  .tab {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .tab {
    display: none;
  }
  .pc {
    display: none;
  }
}
/** inner
------------------------**/
.inner {
  width: 98%;
  max-width: 1100px;
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) and (max-width: 969px) {
  .inner {
    width: 96%;
    max-width: 96%;
    padding: 0 2%;
  }
}
@media (max-width: 767px) {
  .inner {
    width: 94%;
    max-width: 94%;
    padding: 0 2%;
  }
}
.inner--min {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) and (max-width: 969px) {
  .inner--min {
    width: 94%;
    max-width: 94%;
    padding: 0 2%;
  }
}
@media (max-width: 767px) {
  .inner--min {
    width: 92%;
    max-width: 92%;
    padding: 0 2%;
  }
}
.inner--max {
  width: 98%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) and (max-width: 969px) {
  .inner--max {
    width: 96%;
    max-width: 96%;
    padding: 0 2%;
  }
}
@media (max-width: 767px) {
  .inner--max {
    width: 96%;
    max-width: 96%;
    padding: 0 2%;
  }
}

/** section
------------------------**/
.section {
  position: inherit;
  padding: 4rem 0 5.5rem;
  margin-top: 0 !important;
}

@media (max-width: 767px) {
  .section {
    padding: 8vw 0 10.6666666667vw;
  }
}
/** flex
--------------------------**/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.flex--center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex--between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-order .flexContent--left {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.flex-order .flexContent--right {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.flex__item__2:not(:first-child) {
  margin-left: 2%;
}

@media (max-width: 767px) {
  .flex__item__2:not(:first-child) {
    margin-left: 0;
    margin-top: 5.3333333333vw;
  }
}
/** margin, padding
-------------------------**/
.mt-60 {
  margin-top: 6rem;
}
.mt-100 {
  margin-top: 10rem;
}

@media (max-width: 767px) {
  .mt-60 {
    margin-top: 8vw;
  }
  .mt-100 {
    margin-top: 13.3333333333vw;
  }
}
/** font
-------------------------**/
/*書体*/
.font-jp-mincho {
  font-family: var(--font-jp-mincho);
}

.font-jp-gothic {
  font-family: var(--font-jp-gothic);
}

/*フォントサイズ*/
.fs-ss {
  font-size: var(--fontSize-s);
}

.fs-s {
  font-size: var(--fontSize-ss);
}

.fs-sl {
  font-size: var(--fontSize-sl);
}

.fs-ms {
  font-size: var(--fontSize-ms);
}

.fs-m {
  font-size: var(--fontSize-m);
}

.fs-ml {
  font-size: var(--fontSize-ml);
}

.fs-lm {
  font-size: var(--fontSize-lm);
}

.fs-ls {
  font-size: var(--fontSize-ls);
}

.fs-l {
  font-size: var(--fontSize-l);
}

.fs-ll {
  font-size: var(--fontSize-ll);
}

/*ウェイト*/
.bold {
  font-weight: 700;
}

/** aligh
--------------------------*/
.text--center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/** bgColor
----------------------------*/
.bgColor--red {
  background: var(--bgColor-red);
}

.bgColor--black {
  background: var(--bgColor-black);
}

.bgColor--white {
  background: white;
}

.bgColor--gray {
  background-color: var(--bgColor-gray);
}

.bgColor--gray {
  background-color: var(--bgColor-gray);
}

.bgColor--grayLight {
  background-color: var(--bgColor-grayLight);
}

.bgColor--orangeLight {
  background-color: var(--bgColor-grayLight);
}

.bgColor--blue {
  background: var(--bgColor-blue);
}

.bgColor-grad--orange {
  background: var(--colorAccent-grad-orange);
}

.bgColor-grad--blue {
  background: var(--colorAccent-grad-blue);
}

/* bg image
------------------------------*/
.bg-plaid {
  background-image: -webkit-linear-gradient(#eee 1px, transparent 0), -webkit-linear-gradient(left, #eee 1px, transparent 0);
  background-image: linear-gradient(#eee 1px, transparent 0), linear-gradient(90deg, #eee 1px, transparent 0);
  background-size: 20px 20px;
}

.bgWagara--orange {
  background: url(../images/bg-wagara-orange.webp) no-repeat;
  background-size: cover;
}

.bgWagara--yellow {
  background: url(../images/bg-wagara-yellow.webp) no-repeat;
  background-size: cover;
}

/** color
----------------------------*/
.color--accent {
  color: var(--colorAccent);
}

.color--red {
  color: var(--fontColor-red) !important;
}

.color--gray {
  color: var(--fontColor-gray) !important;
}

.color--black {
  color: var(--fontColor-black) !important;
}

.color--blue {
  color: var(--colorAccent-blue) !important;
}

.color--orange {
  color: var(--colorAccent-orange);
}

/** marker
----------------------------*/
.marker--yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, #feee35));
  background: -webkit-linear-gradient(transparent 70%, #feee35 30%);
  background: linear-gradient(transparent 70%, #feee35 30%);
}

.marker--pink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(30%, rgba(209, 13, 86, 0.5)));
  background: -webkit-linear-gradient(transparent 70%, rgba(209, 13, 86, 0.5) 30%);
  background: linear-gradient(transparent 70%, rgba(209, 13, 86, 0.5) 30%);
}

/** stroke
------------------------------*/
.stroke--white-1 {
  text-shadow: var(--shadowText-white-1);
}

.stroke--white-2 {
  text-shadow: var(--shadowtext-white-2);
}

/** heading
---------------------------------**/
.heading {
  margin-bottom: 6rem;
  text-align: center;
  font-size: var(--fontSize-l);
  font-weight: 500;
}
.heading span {
  display: block;
  line-height: 1;
}

@media (max-width: 767px) {
  .heading {
    margin-bottom: 8vw;
    font-size: var(--fontSize-ll);
  }
  .heading span {
    font-size: var(--fontSize-ll);
  }
  .heading span img {
    width: 20%;
  }
}
/** lead
-----------------------------------**/
.lead, .lead--serif {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.lead--serif {
  font-family: var(--font-jp-serif);
}

@media (max-width: 767px) {
  .lead, .lead--serif {
    font-size: 3.7333333333vw;
    margin-bottom: 8vw;
  }
}
/** button
--------------------------------**/
/* wp ブロックボタン 上書き*/
.button {
  width: 100%;
  max-width: 328px;
}
.button__link, .button__link--blue, .button__link--white {
  color: white;
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  font-family: var(--font-jp-sans);
  letter-spacing: 0.05em;
  line-height: 1.3;
  padding: 1.6rem 3rem;
  border-radius: 5px;
}
.button__link::after, .button__link--blue::after, .button__link--white::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 1rem;
  height: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  border-top: 2px solid var(--colorAccent-blue);
  border-right: 2px solid var(--colorAccent-blue);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.button__link:hover::after, .button__link--blue:hover::after, .button__link--white:hover::after {
  right: 1rem;
}
.button__link--white {
  background-color: white;
  border: 1px solid var(--colorAccent-blue);
  color: var(--colorAccent-blue);
}
.button__link--blue {
  background-color: var(--bgColor-blue);
  border: 1px solid var(--colorAccent-blue);
  color: white;
}
.button__link--blue::after {
  border-top: 2px solid white;
  border-right: 2px solid white;
}
.button__list {
  width: 100%;
}
.button__item__2 {
  width: 48%;
}

@media (max-width: 767px) {
  /** button ***/
  .button {
    max-width: 100%;
  }
  .button__list {
    width: 100%;
  }
  .button__item__2 {
    width: 100%;
  }
  .button__item__2:not(:first-child) {
    margin-top: 5.3333333333vw;
  }
  .wp-block-button {
    width: 74.6666666667vw;
    margin: 10.6666666667vw auto 0;
  }
  .wp-block-button__link {
    font-size: 4.2666666667vw;
    padding: 4.8vw;
  }
  .wp-block-button__link::after {
    bottom: 0;
    right: 6.33333vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
  .wp-block-button__link:hover::after {
    right: 1.3333333333vw;
  }
  .wp-block-button__link--whiteTransparent::after {
    bottom: 0;
    right: 3.33333vw;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
/** img
--------------------------------**/
.img-radius {
  border-radius: 5px;
}
.img-radius img {
  border-radius: 5px;
}

/** Accordion
--------------------------------**/
.c-accordion {
  border: 1px solid var(--colorAccent);
}
.c-accordion__title {
  position: relative;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.c-accordion__title::before {
  position: absolute;
  display: block;
  content: "Q";
  font-family: var(--font-jp-gothic);
  font-weight: 700;
  color: var(--colorAccent-blue);
  left: 1.8vw;
  font-size: var(--fontSize-m);
}
.c-accordion__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  display: block;
  width: 1rem;
  height: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-top: 2px solid var(--colorBase-white);
  border-right: 2px solid var(--colorBase-white);
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.c-accordion__title.is-active::after {
  -webkit-transform: translateY(-50%) rotate(315deg);
          transform: translateY(-50%) rotate(315deg);
}
.c-accordion__body {
  display: none;
  position: relative;
}
.c-accordion__body.is-active {
  display: block;
}

@media (max-width: 767px) {
  .c-accordion__title::before {
    left: 5.3333333333vw;
  }
  .c-accordion__title::after {
    width: 3.2vw;
    height: 3.2vw;
    border-top: 2px solid var(--colorBase-white);
    border-right: 2px solid var(--colorBase-white);
    -webkit-transform: translateY(-50%) rotate(135deg);
            transform: translateY(-50%) rotate(135deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-accordion__body {
    display: none;
  }
  .c-accordion__body::before {
    left: 5.3333333333vw;
  }
}
/** attention
---------------------------------**/
.attention__list {
  display: block;
  list-style: none;
  margin-top: 4rem;
}
.attention__list li {
  display: block;
  position: relative;
  font-family: var(--font-jp-sans);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: var(--fontColor-gray);
}
.attention__list li::before {
  content: "※";
  font-family: var(--font-jp-sans);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: var(--fontColor-gray);
}

@media (max-width: 767px) {
  .attention__list {
    margin-top: 8vw;
  }
  .attention__list li {
    font-size: 3.4666666667vw;
  }
  .attention__list li::before {
    font-size: 3.4666666667vw;
  }
}
/** search
---------------------------------**/
.c-search {
  margin: auto;
  max-width: 52.2rem;
  width: 100%;
}
.c-search form {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-search input {
  width: calc(100% - 40px);
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 1.6rem 2.4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid var(--borderColor-gray);
}
.c-search button {
  /*ボタンリセット*/
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 50%;
  right: 6.4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  border-radius: 5px;
  margin: 0;
  background: transparent;
  padding: 0;
}
.c-search button svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .c-search {
    max-width: 100%;
    width: 100%;
  }
  .c-search form {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .c-search input {
    width: 100%;
    font-size: 3.7333333333vw;
    padding: 3.7333333333vw 4.2666666667vw;
  }
  .c-search button {
    right: 2.6666666667vw;
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
}
/** loading
---------------------------------**/
#loading {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f0f8fc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.p-loading__img {
  width: 18rem;
  max-width: 100%;
  -webkit-animation: loading_img;
          animation: loading_img;
}

@media (max-width: 768px) {
  .p-loading__img {
    width: 30%;
    max-width: 100%;
  }
}
.p-loading__text {
  margin-top: 1rem;
  font-size: 1.6rem;
  -webkit-animation: loading_text 1s infinite ease;
          animation: loading_text 1s infinite ease;
}

.p-loading__completed {
  opacity: 0;
  visibility: hidden;
}

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

@keyframes loading_img {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes loading_text {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loading_text {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 5;
  }
  100% {
    opacity: 1;
  }
}
/** フッター
---------------------------------**/
.footer .copyright {
  background-color: var(--colorBase);
  padding: 1rem;
  text-align: center;
  color: var(--colorBase-white);
  font-size: var(--fontSize-ss);
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  .footer .copyright {
    padding: 1.6vw;
    font-size: var(--fontSize-ss);
  }
}/*# sourceMappingURL=common.css.map */