@charset "UTF-8";
:root {
  --font-primary: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  --color-link: #DC3700;
  --color-text: #000;
  --color-primary: #1763AA;
  --color-white: #FFF;
  --color-black: #000;
  --color-highlight: #FFFF00;
  --bg-pink: #89157F;
  --color-pink: #89117F;
  --color-pastel: #F8F1E6;
  --color-grey: #646464;
  --color-blue: #024a78;
  --color-title: #992600;
  --color-focus: #DC3700;
}

/* stylelint-disable */
/* ******************************************************************

    --common.css--

    0. BoxModel change

    1. Common setting
        1-1. Reset styles
        1-2. Font styles
        1-3. General styles

****************************************************************** */
/*==================================================================
    0. BoxModel change
===================================================================*/
/*==================================================================
    1. Common setting
===================================================================*/
/* ------------------------------------------------------------------
    1-1. Reset styles
-------------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

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

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul,
ol,
menu {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
object,
embed {
  max-width: 100%;
  height: auto;
}

object,
embed {
  height: 100%;
}

img {
  -ms-interpolation-mode: bicubic;
}

/* Font styles
-------------------------------------------------------------------*/
select,
input,
button,
textarea,
button {
  font-size: inherit;
}

table {
  font-size: inherit;
  font: 100%;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/* General styles
-------------------------------------------------------------------*/
table {
  empty-cells: show;
}

input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

label {
  margin-right: 5px;
}

legend {
  display: none;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  padding: 3px 4px 0 3px;
  border: 1px solid #999;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  font-size: 1.3rem;
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  overflow-x: hidden;
  background: #FFF;
  font-size: 10px;
  scroll-behavior: smooth;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

/**
 * Basic styles for links
 */
a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover {
  color: var(--color-link);
  text-decoration: underline;
}

body {
  color: var(--color-text);
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.231;
  font-family: var(--font-primary);
}

/**
 * Helpers class for general use
 */
.sp-display {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc-display {
    display: none !important;
  }
  .sp-display {
    display: block !important;
  }
}
/* ------------------------------------------------------------------
    1-2. VisualFormattingModel styles
-------------------------------------------------------------------*/
.noDisplay {
  display: none;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

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

.clear {
  clear: both !important;
}

a.hover:hover,
input.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/* ------------------------------------------------------------------
    1-3. BoxModel styles
-------------------------------------------------------------------*/
.auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mt0,
.mv0,
.ma0 {
  margin-top: 0 !important;
}

.mr0,
.mh0,
.ma0 {
  margin-right: 0 !important;
}

.mb0,
.mv0,
.ma0 {
  margin-bottom: 0 !important;
}

.ml0,
.mh0,
.ma0 {
  margin-left: 0 !important;
}

.pt0,
.pv0,
.pa0 {
  padding-top: 0 !important;
}

.pr0,
.ph0,
.pa0 {
  padding-right: 0 !important;
}

.pb0,
.pv0,
.pa0 {
  padding-bottom: 0 !important;
}

.pl0,
.ph0,
.pa0 {
  padding-left: 0 !important;
}

.mt5,
.mv5,
.ma5 {
  margin-top: 5px !important;
}

.mr5,
.mh5,
.ma5 {
  margin-right: 5px !important;
}

.mb5,
.mv5,
.ma5 {
  margin-bottom: 5px !important;
}

.ml5,
.mh5,
.ma5 {
  margin-left: 5px !important;
}

.pt5,
.pv5,
.pa5 {
  padding-top: 5px !important;
}

.pr5,
.ph5,
.pa5 {
  padding-right: 5px !important;
}

.pb5,
.pv5,
.pa5 {
  padding-bottom: 5px !important;
}

.pl5,
.ph5,
.pa5 {
  padding-left: 5px !important;
}

.mt10,
.mv10,
.ma10 {
  margin-top: 10px !important;
}

.mr10,
.mh10,
.ma10 {
  margin-right: 10px !important;
}

.mb10,
.mv10,
.ma10 {
  margin-bottom: 10px !important;
}

.ml10,
.mh10,
.ma10 {
  margin-left: 10px !important;
}

.pt10,
.pv10,
.pa10 {
  padding-top: 10px !important;
}

.pr10,
.ph10,
.pa10 {
  padding-right: 10px !important;
}

.pb10,
.pv10,
.pa10 {
  padding-bottom: 10px !important;
}

.pl10,
.ph10,
.pa10 {
  padding-left: 10px !important;
}

.mt20,
.mv20,
.ma20 {
  margin-top: 20px !important;
}

.mr20,
.mh20,
.ma20 {
  margin-right: 20px !important;
}

.mb20,
.mv20,
.ma20 {
  margin-bottom: 20px !important;
}

.ml20,
.mh20,
.ma20 {
  margin-left: 20px !important;
}

.pt20,
.pv20,
.pa20 {
  padding-top: 20px !important;
}

.pr20,
.ph20,
.pa20 {
  padding-right: 20px !important;
}

.pb20,
.pv20,
.pa20 {
  padding-bottom: 20px !important;
}

.pl20,
.ph20,
.pa20 {
  padding-left: 20px !important;
}

.mt30,
.mv30,
.ma30 {
  margin-top: 30px !important;
}

.mr30,
.mh30,
.ma30 {
  margin-right: 30px !important;
}

.mb30,
.mv30,
.ma30 {
  margin-bottom: 30px !important;
}

.ml30,
.mh30,
.ma30 {
  margin-left: 30px !important;
}

.pt30,
.pv30,
.pa30 {
  padding-top: 30px !important;
}

.pr30,
.ph30,
.pa30 {
  padding-right: 30px !important;
}

.pb30,
.pv30,
.pa30 {
  padding-bottom: 30px !important;
}

.pl30,
.ph30,
.pa30 {
  padding-left: 30px !important;
}

.mt40,
.mv40,
.ma40 {
  margin-top: 40px !important;
}

.mr40,
.mh40,
.ma40 {
  margin-right: 40px !important;
}

.mb40,
.mv40,
.ma40 {
  margin-bottom: 40px !important;
}

.ml40,
.mh40,
.ma40 {
  margin-left: 40px !important;
}

.pt40,
.pv40,
.pa40 {
  padding-top: 40px !important;
}

.pr40,
.ph40,
.pa40 {
  padding-right: 40px !important;
}

.pb40,
.pv40,
.pa40 {
  padding-bottom: 40px !important;
}

.pl40,
.ph40,
.pa40 {
  padding-left: 40px !important;
}

.bt0,
.ba0 {
  border-top: none !important;
}

.br0,
.ba0 {
  border-right: none !important;
}

.bb0,
.ba0 {
  border-bottom: none !important;
}

.bl0,
.ba0 {
  border-left: none !important;
}

/* ------------------------------------------------------------------
    1-4. Text styles
-------------------------------------------------------------------*/
strong,
.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.note {
  margin-left: 1em;
  text-indent: -1em;
}

.f10 {
  font-size: 77%;
}

.f11 {
  font-size: 85%;
}

.f12 {
  font-size: 93%;
}

.f14 {
  font-size: 108%;
}

.f15 {
  font-size: 116%;
}

.f16 {
  font-size: 123.1%;
}

.f17 {
  font-size: 131%;
}

.f18 {
  font-size: 138.5%;
}

.f19 {
  font-size: 146.5%;
}

.f20 {
  font-size: 153.9%;
}

.f21 {
  font-size: 161.6%;
}

.f22 {
  font-size: 167%;
}

.f23 {
  font-size: 174%;
}

.f24 {
  font-size: 182%;
}

.f25 {
  font-size: 189%;
}

.f26 {
  font-size: 197%;
}

.red {
  color: #C00;
}

.white {
  color: #FFF;
}

.grayC {
  color: #CCC;
}

.gray9 {
  color: #999;
}

.gray6 {
  color: #666;
}

.gray3 {
  color: #333;
}

.black {
  color: #000;
}

.middle {
  vertical-align: middle !important;
}

.center {
  text-align: center !important;
}

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

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

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

/* ------------------------------------------------------------------
    1-5. List styles
-------------------------------------------------------------------*/
.disc {
  padding-left: 2em;
  list-style: disc;
}

.circle {
  padding-left: 2em;
  list-style: circle;
}

.decimal {
  padding-left: 2.4em;
  list-style: decimal;
}

/* ------------------------------------------------------------------
    1-6. CSS3 common styles
-------------------------------------------------------------------*/
.boxShadow {
  box-shadow: 0 0 5px #DDD;
}

.textShadowW {
  text-shadow: 0 1px 0 #E7E7E7;
}

.textShadowB {
  text-shadow: 0 1px 0 #111;
}

.radius5 {
  border-radius: 5px;
}

.radius10 {
  border-radius: 10px;
}

a:hover,
a:active,
a:focus {
  outline: 1px solid var(--color-focus);
}

.header {
  align-items: center;
  background-color: var(--color-white);
  display: flex;
  height: 170px;
  justify-content: center;
}
.header__logo {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  margin: 8px 0 0 3px;
}
.header__logo img {
  height: 97px;
  width: auto;
}
@media only screen and (min-width: 1025px) {
  .header__logo {
    transition: opacity 0.3s;
  }
  .header__logo:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 1200px) {
  .header {
    height: 56px;
  }
  .header__logo img {
    height: 36px;
  }
}

#contents, .inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  #contents, .inner {
    padding: 0 20px;
  }
}

#contents {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  #contents {
    display: block;
  }
}

.wrapper {
  overflow: hidden;
}

.footer {
  border: 1px solid #eee;
  color: var(--color-black);
  padding-bottom: 35px;
  padding-top: 50px;
  text-align: center;
}
.footer__row {
  display: flex;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.footer__col:last-child {
  flex: 1;
  padding-left: 35px;
}
.footer__head {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer__head span {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.4px;
  margin-top: 10px;
}
.footer__txt {
  font-size: 1.6rem;
  letter-spacing: 0.6px;
  line-height: 1.55;
}
.footer__txt dt {
  float: left;
  padding-right: 10px;
}
.footer__txt dd {
  display: table-row;
}
.footer__link {
  color: var(--color-blue);
  text-decoration: underline;
}
.footer__copy {
  font-size: 1.55rem;
  margin-top: 30px;
}
@media only screen and (min-width: 1025px) {
  .footer__link {
    transition: opacity 0.3s;
  }
  .footer__link:hover {
    color: var(--color-blue);
    opacity: 0.9;
    text-decoration: none;
  }
}
@media only screen and (max-width: 768px) {
  .footer {
    padding-top: 30px;
  }
  .footer__row {
    display: block;
  }
  .footer__col:last-child {
    padding-left: 0;
  }
  .footer__head {
    align-items: flex-end;
    display: flex;
    margin-bottom: 10px;
  }
  .footer__head span {
    margin-left: 10px;
    margin-top: 0;
  }
  .footer__txt {
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 576px) {
  .footer__head {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .footer__head span {
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-left: 5px;
  }
  .footer__txt {
    font-size: 1.2rem;
  }
  .footer__copy {
    font-size: 1.2rem;
  }
}

.keyv {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-bottom: 58px;
  padding-top: 79px;
  text-align: center;
}
.keyv__txt {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2.5px;
}
.keyv__ttl {
  display: inline-block;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: 4.8px;
  line-height: 1.5;
  margin-top: 42px;
  padding: 17px 55px 0;
  position: relative;
}
.keyv__ttl::after, .keyv__ttl::before {
  background-color: var(--color-highlight);
  content: "";
  height: 118%;
  left: 0;
  position: absolute;
  transform: rotate(-28.5deg);
  top: 0;
  width: 3px;
}
.keyv__ttl::after {
  left: inherit;
  right: 40px;
  transform: rotate(28.5deg);
}
.keyv__ttl mark {
  background-color: transparent;
  color: var(--color-highlight);
  display: inline-block;
}
.keyv__img {
  display: block;
  font-size: 0;
  line-height: 0;
  margin-top: 16px;
}
@media only screen and (max-width: 1200px) {
  .keyv__txt {
    font-size: 1.8rem;
  }
  .keyv__ttl {
    font-size: 3.5rem;
    letter-spacing: 4px;
    margin-top: 10px;
    padding: 15px 30px 0;
  }
  .keyv__ttl::after {
    right: 0;
  }
  .keyv__img {
    margin-top: 15px;
  }
  .keyv__img img {
    max-width: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .keyv {
    padding-top: 26px;
  }
  .keyv__txt {
    font-size: 2.4rem;
    letter-spacing: 0;
    line-height: 1.4;
  }
  .keyv__ttl {
    font-size: 3.9rem;
    letter-spacing: 0;
    line-height: 1.3;
    margin-top: 28px;
    padding: 0 50px;
  }
  .keyv__ttl::before, .keyv__ttl::after {
    bottom: -15px;
    height: 100px;
    top: inherit;
  }
  .keyv__img {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 576px) {
  .keyv {
    padding-bottom: 0;
  }
  .keyv__img {
    margin-left: -19px;
    margin-top: -12px;
    transform: translateY(6.6666666667vw);
    width: calc(100% + 39px);
  }
  .keyv__img img {
    max-width: inherit;
    width: 100%;
  }
  .keyv__ttl {
    padding: 0;
  }
  .keyv__ttl::before {
    left: -17px;
    transform: rotate(-27deg);
  }
  .keyv__ttl::after {
    right: -17px;
    transform: rotate(27deg);
  }
}
@media only screen and (max-width: 360px) {
  .keyv__txt {
    font-size: 2rem;
  }
  .keyv__ttl {
    font-size: 3rem;
    padding-left: 20px;
    padding-right: 20px;
  }
  .keyv__ttl::before, .keyv__ttl::after {
    bottom: -5px;
  }
}

.faq {
  max-width: 890px;
  margin: 0 auto 150px;
  font-size: 1.6rem;
  line-height: 1.65;
}
.faq__ttl {
  margin-bottom: 30px;
  text-align: center;
}
.faq__list {
  margin-bottom: 38px;
  background: url("/assets/img/common/icon_line.svg") repeat-x 0 100%;
}
.faq__list > li {
  padding: 37px 56px 34px 58px;
  box-sizing: border-box;
  background: url("/assets/img/common/icon_line.svg") repeat-x 0 0;
}
.faq__list ol {
  counter-reset: number;
}
.faq__list ol li::before {
  counter-increment: number;
  content: counter(number) ".";
}
.faq__list-ttl {
  padding-bottom: 32px;
  color: var(--color-pink);
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .faq {
    margin: 0 auto 35px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .faq__ttl {
    margin-bottom: 5px;
  }
  .faq__ttl img {
    width: 215px;
    height: auto;
  }
  .faq__list {
    margin-bottom: 30px;
  }
  .faq__list > li {
    padding: 20px 0;
  }
  .faq__list-ttl {
    padding-bottom: 13px;
    font-size: 2rem;
    line-height: 1.3;
  }
}

.btn-report {
  display: block;
  max-width: 580px;
  margin: 0 auto;
  padding: 15px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}
.btn-report span {
  color: var(--color-link);
}
@media only screen and (max-width: 768px) {
  .btn-report {
    max-width: 100%;
    padding: 13px 10px 10px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.contact {
  max-width: 850px;
  margin: 0 auto 100px;
}
.contact__ttl {
  margin-bottom: 88px;
  font-size: 3.5rem;
  font-weight: bold;
  text-align: center;
}
.contact__list {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}
.contact__list li {
  width: calc((100% - 80px) / 2);
  padding-bottom: 23px;
  border-bottom: 2px solid var(--color-pink);
  text-align: center;
}
.contact__txt1 {
  padding-bottom: 16px;
  color: var(--color-pink);
  font-size: 1.6rem;
  font-weight: bold;
}
.contact__txt2 {
  padding-bottom: 4px;
  font-size: 1.4rem;
  font-weight: bold;
}
.contact__tel {
  padding-bottom: 19px;
}
.contact__tel a {
  color: var(--color-pink);
  font-size: 3.5rem;
  font-weight: bold;
  pointer-events: none;
}
.contact__txt3, .contact__txt4 {
  font-size: 1.5rem;
  text-align: left;
  line-height: 1.4;
}
.contact__txt4 dt {
  float: left;
}
.contact__txt4 dd {
  display: table-row;
}
@media only screen and (max-width: 768px) {
  .contact {
    margin-bottom: 50px;
  }
  .contact__ttl {
    margin-bottom: 25px;
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .contact__list li {
    width: 100%;
    margin-bottom: 45px;
    padding-bottom: 8px;
  }
  .contact__list li:last-child {
    margin-bottom: 0;
  }
  .contact__txt1 {
    padding-bottom: 6px;
    color: var(--color-pink);
    font-size: 1.6rem;
    font-weight: bold;
  }
  .contact__txt2 {
    padding-bottom: 2px;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .contact__tel {
    padding-bottom: 5px;
  }
  .contact__tel a {
    font-size: 3.2rem;
    pointer-events: visible;
  }
  .contact__tel a:hover {
    text-decoration: none;
  }
  .contact__txt3, .contact__txt4 {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.4;
  }
}

.notify {
  font-size: 2.3rem;
  letter-spacing: 2px;
  line-height: 2.1;
  padding-bottom: 94px;
  padding-top: 92px;
  text-align: center;
}
.notify .under-line {
  text-decoration: underline;
}
.notify strong {
  color: var(--color-link);
}
.notify a {
  color: var(--color-link);
  display: inline-block;
  text-decoration: underline;
}
.notify a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .notify {
    font-size: 2rem;
    padding-bottom: 50px;
    padding-top: 50px;
    text-align: justify;
  }
}
@media only screen and (max-width: 576px) {
  .notify {
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.6;
    padding: 46px 0 17px;
  }
}

.recorded {
  background-color: var(--bg-pink);
  color: var(--color-white);
  padding-bottom: 100px;
  padding-top: 98px;
  text-align: center;
}
.recorded__head {
  font-size: 3rem;
  font-weight: 700;
}
.recorded__head small {
  display: inline-block;
  font-size: 2.1rem;
  transform: translateY(-3px);
}
.recorded__img {
  margin-top: 38px;
}
.recorded__img img {
  height: auto;
  max-width: 650px;
  width: 100%;
}
.recorded__ttl {
  font-size: 3.9rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-top: 31px;
}
.recorded__ttl em {
  font-size: 2.9rem;
  font-weight: 700;
}
.recorded__ttl small {
  display: inline-block;
  font-size: 2.1rem;
  letter-spacing: 0;
  text-decoration: underline;
  transform: translateY(-6px);
}
.recorded__note {
  align-items: center;
  background-color: var(--color-highlight);
  color: var(--color-black);
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  max-width: 735px;
  margin-top: 38px;
  padding: 36px 15px 31px 15px;
  width: 100%;
}
.recorded__note mark {
  background-color: transparent;
  color: var(--color-link);
  font-size: 2.7rem;
  margin-bottom: 2px;
  margin-left: 11px;
}
.recorded__txt {
  background-color: var(--color-white);
  border-radius: 10px;
  color: var(--color-black);
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  max-width: 735px;
  margin-top: 40px;
  padding: 20px 20px 19px;
  width: 100%;
}
.recorded__txt mark {
  background-color: transparent;
  color: var(--color-link);
}
.recorded__wrap {
  margin-top: 40px;
}
.recorded__btn {
  background-color: var(--color-white);
  border-radius: 100vw;
  color: var(--color-black);
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  padding: 21px 20px 20px;
  text-decoration: none;
  width: 290px;
}
.recorded__btn:hover {
  color: var(--color-black) !important;
  text-decoration: none !important;
}
@media only screen and (min-width: 1025px) {
  .recorded__btn {
    transition: opacity 0.3s;
  }
  .recorded__btn:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 992px) {
  .recorded__ttl {
    font-size: 2.8rem;
  }
  .recorded__ttl small {
    font-size: 1.8rem;
  }
  .recorded__note {
    font-size: 1.4rem;
    justify-content: center;
  }
  .recorded__note mark {
    font-size: 2.6rem;
  }
  .recorded__img {
    display: block;
    margin-top: 27px;
  }
  .recorded__img img {
    height: auto;
    margin-left: 0;
    max-width: 550px;
    width: 100%;
  }
  .recorded__img img:last-child {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .recorded {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .recorded__ttl {
    font-size: 3.9rem;
  }
  .recorded__ttl small {
    display: block;
    font-size: 2.1rem;
  }
  .recorded__note {
    display: inline-block;
    font-size: 1.4rem;
  }
  .recorded__note mark {
    display: block;
    font-size: 3.2rem;
    margin-top: 10px;
  }
}
@media only screen and (max-width: 576px) {
  .recorded {
    padding-bottom: 26px;
    padding-top: 33px;
  }
  .recorded__head {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  .recorded__head small {
    font-size: 1.6rem;
    transform: translateY(0);
  }
  .recorded__ttl {
    margin-top: 22px;
    line-height: 1.3;
  }
  .recorded__ttl small {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .recorded__note {
    margin-top: 27px;
    padding: 13px 5px 10px 5px;
  }
  .recorded__note mark {
    margin-top: 9px;
    font-size: 2.6rem;
    letter-spacing: -1px;
  }
  .recorded__txt {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 16px;
    padding: 11px 12px 11px;
  }
  .recorded__wrap {
    margin-top: 20px;
  }
  .recorded__btn {
    font-size: 1.4rem;
    letter-spacing: 0;
    padding: 7px 7px 6px;
    width: 150px;
  }
}
@media only screen and (max-width: 374px) {
  .recorded__ttl {
    font-size: 3.5rem;
  }
  .recorded__ttl em {
    font-size: 2.7rem;
  }
  .recorded__note mark {
    font-size: 2.1rem;
  }
}

.report {
  background-color: var(--bg-pink);
  color: var(--color-white);
  padding-bottom: 100px;
  padding-top: 100px;
  text-align: center;
}
.report__head {
  font-size: 5rem;
  font-weight: 700;
}
.report__head mark {
  background-color: transparent;
  color: var(--color-highlight);
}
.report__txt {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-top: 30px;
}
.report__large {
  font-size: 3rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1300px) {
  .report__txt {
    font-size: 2.3rem;
  }
  .report__large {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 992px) {
  .report__txt {
    font-size: 2rem;
  }
  .report__large {
    font-size: 2.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .report {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .report__head {
    font-size: 4rem;
  }
  .report__txt {
    font-size: 1.4rem;
    margin-top: 20px;
  }
  .report__large {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .report {
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .report__head {
    font-size: 2.4rem;
  }
  .report__txt {
    margin-top: 15px;
    line-height: 1.3;
  }
  .report__large {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 360px) {
  .report__head {
    font-size: 2.2rem;
  }
  .report__txt {
    font-size: 1.2rem;
  }
  .report__large {
    font-size: 1.4rem;
  }
}

.important {
  background-color: var(--color-white);
  color: var(--color-black);
  padding-bottom: 100px;
  padding-top: 100px;
  text-align: center;
}
.important__inner {
  display: inline-block;
  max-width: 980px;
}
.important__head {
  align-items: center;
  border-bottom: 3px solid var(--color-black);
  display: flex;
  font-size: 3.3rem;
  font-weight: 700;
  justify-content: center;
  padding-bottom: 26px;
  position: relative;
}
.important__head::before {
  background: url("/assets/img/common/icon_warning.svg") no-repeat center center/100%;
  content: "";
  display: inline-block;
  height: 47px;
  margin-right: 12px;
  width: 53px;
}
.important__box {
  background-color: var(--color-highlight);
  margin-top: 33px;
  padding-bottom: 20px;
  padding-top: 26px;
}
.important__ttl {
  color: var(--color-link);
  font-size: 2.5rem;
  font-weight: 700;
}
.important__txt {
  color: var(--color-black);
  font-size: 1.5rem;
  line-height: 1.43;
  margin-top: 16px;
}
.important__note {
  padding-top: 25px;
  text-align: left;
}
.important__item {
  color: var(--color-black);
  font-size: 1.8rem;
  line-height: 1.66;
  padding-left: 44px;
  position: relative;
}
.important__item::before {
  background-color: var(--color-pink);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 20px;
  left: 8px;
  position: absolute;
  top: 3px;
  width: 20px;
}
.important__item mark {
  background-color: transparent;
  color: var(--color-link);
}
@media only screen and (max-width: 768px) {
  .important {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .important__ttl {
    font-size: 2.4rem;
  }
  .important__txt {
    font-size: 1.4rem;
  }
  .important__item {
    font-size: 1.4rem;
    line-height: 1.66;
    padding-left: 44px;
  }
}
@media only screen and (max-width: 576px) {
  .important {
    padding-bottom: 19px;
    padding-top: 14px;
  }
  .important__head {
    border-bottom-width: 1px;
    font-size: 1.6rem;
    padding-bottom: 7px;
    line-height: 1.6;
  }
  .important__head::before {
    height: 23px;
    margin-right: 5px;
    width: 24px;
  }
  .important__box {
    margin-top: 13px;
    padding-bottom: 9px;
    padding-top: 13px;
  }
  .important__txt {
    line-height: 1.4;
    margin-top: 3px;
  }
  .important__note {
    padding-top: 19px;
  }
  .important__item {
    font-size: 1.4rem;
    line-height: 1.43;
    padding-left: 16px;
  }
  .important__item::before {
    height: 10px;
    left: 0;
    top: 2px;
    width: 10px;
  }
}
@media only screen and (max-width: 360px) {
  .important__ttl {
    font-size: 2.2rem;
  }
  .important__item {
    font-size: 1.3rem;
  }
  .important__txt {
    font-size: 1.2rem;
  }
}

.submit {
  padding-bottom: 90px;
  padding-top: 100px;
}
.submit__group {
  display: flex;
  justify-content: space-between;
}
.submit__item {
  position: relative;
  text-align: center;
  width: calc((100% - 80px) / 3);
}
.submit__input {
  font-size: 0;
  left: 0;
  line-height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.submit__input:checked ~ h3 .submit__ttl::after {
  transform: rotate(180deg);
}
.submit__input:checked ~ .submit__content {
  max-height: 5000px;
  padding-bottom: 20px;
  padding-top: 20px;
  transition: max-height 0.1s ease-in-out;
}
.submit__input:focus ~ h3 .submit__ttl {
  outline: 1px solid var(--color-focus);
}
.submit__content {
  background-color: var(--color-pastel);
  color: var(--color-black);
  font-size: 1.5rem;
  max-height: 0;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
  transition: padding 0.3s, max-height 0.15s cubic-bezier(0, 1, 0, 1);
}
.submit__ttl {
  align-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  font-size: 2.4rem;
  font-weight: 700;
  height: 80px;
  justify-content: center;
  margin-bottom: 10px;
  margin-right: 0;
  position: relative;
  text-decoration: none;
  width: calc(100% - 40px);
}
.submit__ttl::after {
  background: url("/assets/img/common/icon_arrow.svg") no-repeat center center/100%;
  content: "";
  height: 14px;
  position: absolute;
  right: 12px;
  top: calc(50% - 7px);
  transition: transform 0.3s;
  width: 20px;
}
.submit__ttl img {
  left: 18px;
  position: absolute;
  top: 24px;
}
.submit__ttl.fz20 {
  font-size: 2rem;
}
.submit__ttl:hover {
  color: var(--color-white) !important;
  cursor: pointer;
  text-decoration: none;
}
@media only screen and (min-width: 1025px) {
  .submit__ttl {
    transition: opacity 0.3s;
  }
  .submit__ttl:hover {
    opacity: 0.9;
  }
}
@media only screen and (max-width: 1200px) {
  .submit__group {
    align-items: center;
    flex-direction: column;
  }
  .submit__item {
    margin-bottom: 20px;
    width: 375px;
  }
  .submit__item:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 576px) {
  .submit {
    padding-bottom: 20px;
    padding-top: 16px;
  }
  .submit__group {
    margin-left: -20px;
    width: calc(100% + 40px);
  }
  .submit__content {
    padding-right: 20px;
    padding-left: 20px;
  }
  .submit__item {
    margin-bottom: 10px;
    width: 100%;
  }
  .submit__ttl {
    background-position: center right 10px;
    font-size: 2rem;
    height: 40px;
    margin-bottom: 0;
  }
  .submit__ttl img {
    left: 18px;
    top: 4px;
  }
  .submit__ttl.fz20 {
    font-size: 2rem;
  }
  .submit__input:checked ~ .submit__content {
    padding-bottom: 10px;
    padding-top: 10px;
  }
}
@media only screen and (max-width: 374px) {
  .submit__item {
    max-width: 100%;
  }
  .submit__ttl {
    width: 100%;
  }
  .submit__ttl img {
    left: 9px;
  }
  .submit__content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.email__ttl {
  color: var(--color-title);
  font-size: 1.6rem;
  font-weight: 700;
}
.email__txt {
  counter-reset: num;
  margin-top: 16px;
}
.email__txt li {
  display: block;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 30px;
  padding-left: 23px;
  position: relative;
}
.email__txt li:last-child {
  margin-bottom: 0;
}
.email__txt li::before {
  align-items: center;
  background-color: var(--color-pink);
  border-radius: 50%;
  counter-increment: num;
  content: counter(num);
  color: var(--color-white);
  display: inline-flex;
  font-size: 1.3rem;
  height: 15px;
  left: 0;
  line-height: 1;
  justify-content: center;
  position: absolute;
  top: 2px;
  width: 15px;
}
.email__txt li span {
  display: inline-block;
  margin-top: 8px;
}
.email__link {
  align-items: center;
  background-color: var(--color-pink);
  border-radius: 100vw;
  color: var(--color-white);
  display: flex;
  gap: 10px;
  padding: 7px 10px 6px;
  line-height: 1.2;
  font-size: 1.35rem;
  font-weight: 700;
  justify-content: center;
  max-width: 300px;
  margin-top: 14px;
  position: relative;
  text-align: center;
}
.email__link:hover {
  color: var(--color-white);
  text-decoration: none;
}
.email__icon {
  height: auto;
  position: absolute;
  right: 0;
  top: -7px;
  width: 40px;
}
.email__info {
  background-color: var(--color-pink);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 15px;
  padding-bottom: 22px;
  padding-top: 20px;
  text-align: center;
}
.email__info small {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  line-height: 1.5;
  margin-bottom: 9px;
  margin-top: 13px;
}
@media only screen and (min-width: 1025px) {
  .email__link {
    transition: opacity 0.3s;
  }
  .email__link:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 576px) {
  .email__ttl {
    margin-top: 10px;
  }
  .email__txt {
    margin-top: 10px;
  }
  .email__txt li {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  .email__link {
    padding: 5px 15px;
    font-size: 1.3rem;
    max-width: 300px;
    margin: 13px auto 0;
    transform: translateX(-10px);
  }
  .email__link img {
    right: 16px;
    width: 14px;
  }
  .email__icon {
    right: 8px;
    top: -15px;
  }
  .email__info {
    font-size: 1.6rem;
    margin-top: 18px;
    padding-bottom: 13px;
    padding-top: 13px;
  }
  .email__info small {
    margin-bottom: 5px;
    margin-top: 4px;
  }
}
@media only screen and (max-width: 374px) {
  .email__txt li {
    font-size: 1.2rem;
  }
  .email__icon {
    right: 3px;
    top: 0;
    width: 20px;
  }
  .email__info {
    font-size: 1.4rem;
  }
  .email__info small {
    font-size: 1.2rem;
  }
  .email__link {
    font-size: 1.2rem;
  }
}

.office__txt {
  color: var(--color-black);
  font-size: 1.5rem;
  line-height: 1.45;
}
.office__info {
  background-color: var(--color-pink);
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 19px;
  margin-top: 15px;
  padding: 18px 15px 18px;
  text-align: center;
}
.office__info span {
  display: inline-block;
  text-align: right;
}
.office__info mark {
  background-color: transparent;
  color: var(--color-white);
  display: block;
  font-size: 1.6rem;
  margin-bottom: 12px;
  margin-top: 15px;
}
.office__note {
  color: var(--color-title);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
}
.office__box {
  background-color: var(--color-white);
  margin-top: 16px;
  padding: 13px 10px;
  text-align: center;
}
.office__ttl {
  color: var(--color-pink);
  font-size: 1.6rem;
  font-weight: 700;
}
.office__bottom {
  background: url("/assets/img/common/icon_line.svg") no-repeat center 0;
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 7px;
  padding-top: 15px;
}
.office__bottom mark {
  background-color: transparent;
  color: var(--color-pink);
  display: block;
  font-size: 1.6rem;
  margin-bottom: 3px;
}
.office__row {
  display: flex;
  margin-top: 9px;
}
.office__col {
  width: 50%;
}
.office__col:last-child {
  background: url("/assets/img/common/img_col.svg") no-repeat 0 0;
}
.office__col:last-child .office__ribbon {
  background-color: var(--color-grey);
}
.office__icon {
  align-items: center;
  display: flex;
  height: 81px;
  justify-content: center;
  margin-top: 12px;
}
.office__icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.office__ribbon {
  align-items: center;
  border-radius: 100vw;
  background-color: var(--color-pink);
  color: var(--color-white);
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 700;
  height: 24px;
  line-height: 1;
  justify-content: center;
  width: 60px;
}
.office__des {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 10px;
}
@media only screen and (max-width: 576px) {
  .office__note {
    font-size: 1.4rem;
    margin-top: 15px;
  }
  .office__bottom {
    font-size: 1.4rem;
    margin-top: 10px;
  }
  .office__txt {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: -1px;
  }
  .office__info {
    margin-bottom: 14px;
    margin-top: 12px;
    padding: 15px 15px 11px;
  }
  .office__info mark {
    margin-bottom: 8px;
    margin-top: 4px;
  }
  .office___box {
    margin-top: 11px;
  }
  .office__des {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 374px) {
  .office__note {
    font-size: 1.3rem;
  }
  .office__des {
    font-size: 1.2rem;
  }
  .office__txt {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  .office__info {
    padding: 10px 5px;
  }
  .office__info mark {
    font-size: 1.4rem;
  }
}

.portal__head {
  color: var(--color-pink);
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
}
.portal__box {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.portal__item {
  background-color: var(--color-white);
  border: 1px solid var(--color-pink);
  border-radius: 10px;
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  padding-bottom: 10px;
  padding-top: 10px;
  text-align: center;
  width: calc((100% - 13px) / 2);
}
.portal__item:first-child {
  padding-top: 13px;
}
.portal__item:first-child .portal__icon {
  margin-bottom: 11px;
}
.portal__icon {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 45px;
  margin-bottom: 5px;
}
.portal__icon img {
  height: auto;
  width: auto;
}
.portal__txt {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -1px;
  margin-top: 20px;
}
.portal__note {
  color: var(--color-pink);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 12px;
  text-align: center;
}
.portal__link {
  background-color: var(--color-primary);
  color: var(--color-white);
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -1px;
  padding: 8px 20px 6px;
  position: relative;
  width: 240px;
}
.portal__link img {
  height: auto;
  position: absolute;
  right: 12px;
  top: 7px;
  width: 17px;
}
.portal__link:hover {
  color: var(--color-white);
  text-decoration: none;
}
@media only screen and (min-width: 1025px) {
  .portal__link {
    transition: opacity 0.3s;
  }
  .portal__link:hover {
    opacity: 0.92;
  }
}
@media only screen and (max-width: 576px) {
  .portal__head {
    font-size: 2rem;
    margin-top: 4px;
  }
  .portal__box {
    margin-top: 5px;
  }
  .portal__item {
    font-size: 1.4rem;
    line-height: 1.3;
    padding-bottom: 7px;
  }
  .portal__item:first-child {
    padding-top: 10px;
  }
  .portal__item:first-child .portal__icon {
    margin-bottom: 16px;
  }
  .portal__icon {
    margin-bottom: 7px;
  }
  .portal__txt {
    margin-top: 9px;
  }
}
@media only screen and (max-width: 374px) {
  .portal__item {
    font-size: 1.2rem;
  }
  .portal__txt {
    font-size: 1.2rem;
  }
}

.info {
  margin-top: 20px;
}
.info__item {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-pink);
  border-radius: 10px;
  display: flex;
  height: 80px;
  margin-bottom: 20px;
  padding: 10px 5px;
}
.info__item:last-child {
  margin-bottom: 0;
}
.info__item:last-child .info__ttl {
  font-size: 2rem;
}
.info__ttl {
  color: var(--color-grey);
  display: inline-block;
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-right: 5px;
}
.info__char {
  align-items: center;
  background-color: var(--color-pink);
  border-radius: 50%;
  color: var(--color-white);
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: 700;
  height: 24px;
  justify-content: center;
  line-height: 1;
  margin-right: 5px;
  width: 24px;
}
.info__txt {
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 700;
  flex: 1;
  letter-spacing: -1px;
}
.info__txt small {
  font-size: 1.3rem;
}
@media only screen and (max-width: 576px) {
  .info {
    margin-top: 7px;
  }
  .info__item {
    height: 60px;
    margin-bottom: 8px;
  }
  .info__item:last-child .info__ttl {
    width: 90px;
  }
  .info__ttl {
    letter-spacing: 1px;
  }
  .info__txt small {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 374px) {
  .info__char {
    font-size: 1.2rem;
    height: 20px;
    width: 20px;
  }
  .info__ttl {
    font-size: 2rem;
    width: 60px;
  }
  .info__txt {
    font-size: 1.2rem;
  }
  .info__item:last-child .info__ttl {
    font-size: 1.3rem;
    width: 60px;
  }
}

.list__item {
  font-size: 1.5rem;
  line-height: 1.45;
  text-indent: 14px;
  position: relative;
}
.list__item::before {
  background-color: var(--color-black);
  border-radius: 50%;
  height: 2px;
  content: "";
  left: 5px;
  position: absolute;
  top: 8px;
  width: 2px;
}
.list__item mark {
  background-color: transparent;
  color: var(--color-pink);
  font-weight: 700;
}
.list__char {
  align-items: center;
  margin: 0 0 0 2px;
  background-color: var(--color-pink);
  border-radius: 50%;
  color: var(--color-white);
  display: inline-flex;
  font-size: 1.2rem;
  font-weight: 700;
  height: 17px;
  justify-content: center;
  line-height: 1;
  text-indent: 0;
  width: 17px;
  vertical-align: top;
}
.list__txt {
  color: var(--color-black);
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 8px;
}
.list__txt mark {
  background-color: transparent;
  color: var(--color-pink);
  font-weight: 500;
}
@media only screen and (max-width: 576px) {
  .list__item {
    font-size: 1.4rem;
    line-height: 1.45;
  }
  .list__txt {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 374px) {
  .list__item {
    font-size: 1.2rem;
  }
}

.video {
  padding-top: 50px;
  text-align: center;
}
.video__txt {
  font-size: 3rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.video__box {
  display: inline-block;
  max-width: 100%;
  width: 1000px;
}
.video__content {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.video__content video,
.video__content iframe {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.video__note {
  display: inline-block;
  margin-top: 20px;
  font-size: 2rem;
  text-align: left;
  line-height: 1.6;
}
@media only screen and (max-width: 1200px) {
  .video__txt {
    font-size: 2.3rem;
  }
}
@media only screen and (max-width: 992px) {
  .video__txt {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .video .video__note {
    margin-top: 10px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 576px) {
  .video__txt {
    font-size: 1.8rem;
  }
}/*# sourceMappingURL=style.min.css.map */