/* =======================================
 reset
======================================= */
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio, input[type=radio], input[type=checkbox]):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

:focus-visible {
  outline: none;
}

/* =======================================
 layout
======================================= */
:root {
  --font_color: #333;
  --strong_color: #000;
  --primary_color: #501d84;
  --secondary_color: #9677b5;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body {
  overscroll-behavior: none;
}

body {
  background: #fff;
  color: var(--font_color);
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", sans-serif;
  font-weight: 400;
  line-height: 1;
  margin: auto;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 3.733vw;
  }
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 1.852vw;
  }
}
@media only screen and (min-width: 1080px) {
  body {
    font-size: 20px;
    min-width: 1080px;
  }
}

a {
  color: var(--font_color);
  text-decoration: none;
}

img {
  vertical-align: bottom;
  width: 100%;
}

.wrapper {
  width: 100%;
}
@media only screen and (min-width: 1080px) {
  .wrapper {
    margin: auto;
    max-width: 1080px;
  }
}

@media only screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

strong {
  font-weight: 700;
}

/* =======================================
 header
======================================= */
.header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
@media only screen and (max-width: 767px) {
  .header {
    height: 13.333vw;
  }
}
@media only screen and (min-width: 768px) {
  .header {
    height: 11.111vw;
  }
}
@media only screen and (min-width: 1080px) {
  .header {
    height: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .header .logo_company {
    width: 44.4vw;
  }
}
@media only screen and (min-width: 768px) {
  .header .logo_company {
    width: 30.833vw;
  }
}
@media only screen and (min-width: 1080px) {
  .header .logo_company {
    width: 333px;
  }
}
@media only screen and (max-width: 767px) {
  .header .logo_series {
    width: 31.6vw;
    margin: 2.933vw 6.667vw 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .header .logo_series {
    width: 24.352vw;
    margin: 2.315vw 5vw 0 0;
  }
}
@media only screen and (min-width: 1080px) {
  .header .logo_series {
    width: 263px;
    margin: 25px 54px 0 0;
  }
}
.header a:hover {
  opacity: 0.8;
}

.fv {
  background: url(/wp-content/themes/gekiochikun/assets/img/gekiochistrong/pc_fv_bg.jpg) no-repeat top center/100%;
}
@media only screen and (max-width: 767px) {
  .fv {
    background: url(/wp-content/themes/gekiochikun/assets/img/gekiochistrong/sp_fv_bg.jpg) no-repeat top center/100%;
  }
}
.fv .rel {
  position: relative;
}
.fv .rel .top_kome {
  letter-spacing: 0.01em;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .fv .rel .top_kome {
    font-size: 1.6vw;
    top: 14.667vw;
    right: 13.333vw;
  }
}
@media only screen and (min-width: 768px) {
  .fv .rel .top_kome {
    font-size: 1.296vw;
    top: 15.926vw;
    right: 7.87vw;
  }
}
@media only screen and (min-width: 1080px) {
  .fv .rel .top_kome {
    font-size: 14px;
    top: 172px;
    right: 85px;
  }
}

.about {
  background: url(/wp-content/themes/gekiochikun/assets/img/gekiochistrong/pc_about_bg.jpg) no-repeat top center/100%;
}
@media only screen and (max-width: 767px) {
  .about {
    background: url(/wp-content/themes/gekiochikun/assets/img/gekiochistrong/sp_about_bg.jpg) no-repeat top center/100%;
  }
}
.about .set {
  position: relative;
}
.about .set h2 {
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .about .set h2 {
    width: 69.867vw;
    top: -4.667vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .set h2 {
    width: 77.407vw;
    top: -2.685vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .set h2 {
    width: 836px;
    top: -29px;
  }
}
.about .set .text {
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .about .set .text {
    font-size: 5.867vw;
    line-height: 8.8vw;
    top: 45.333vw;
    left: 0;
    right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .about .set .text {
    font-size: 4.074vw;
    line-height: 5.926vw;
    top: 25.37vw;
    left: 12.037vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .set .text {
    font-size: 44px;
    line-height: 64px;
    top: 274px;
    left: 130px;
  }
}
.about .set .text span {
  color: #FFFF00;
  font-weight: 900;
  vertical-align: 0;
}
@media only screen and (max-width: 767px) {
  .about .set .text span {
    font-size: 7.2vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .set .text span {
    font-size: 5vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .set .text span {
    font-size: 54px;
  }
}
.about .set .kome {
  color: #fff;
  letter-spacing: 0.01em;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .about .set .kome {
    font-size: 3.2vw;
    right: 4.933vw;
    bottom: 6.667vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .set .kome {
    font-size: 1.481vw;
    right: 3.704vw;
    bottom: 3.704vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .set .kome {
    font-size: 16px;
    right: 40px;
    bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about .bfaf {
    margin-bottom: 20vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .bfaf {
    margin-bottom: 8.796vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .bfaf {
    margin-bottom: 95px;
  }
}
.about .bfaf h2 {
  color: #231815;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin: 0 auto;
  background: #AC831F;
  background: linear-gradient(90deg, rgb(172, 131, 31) 0%, rgb(220, 193, 115) 19%, rgb(243, 243, 198) 36%, rgb(243, 243, 200) 49%, rgb(211, 174, 89) 73%, rgb(181, 132, 28) 100%);
}
@media only screen and (max-width: 767px) {
  .about .bfaf h2 {
    font-size: 8vw;
    line-height: 14.4vw;
    width: 91.733vw;
    height: 14.667vw;
    border-radius: 8vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .bfaf h2 {
    font-size: 5.556vw;
    line-height: 8.333vw;
    width: 79.63vw;
    height: 8.519vw;
    border-radius: 4.63vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .bfaf h2 {
    font-size: 60px;
    line-height: 90px;
    width: 860px;
    height: 92px;
    border-radius: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .about .bfaf .bfaf_list {
    margin-top: 7.2vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .bfaf .bfaf_list {
    margin-top: 3.611vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .bfaf .bfaf_list {
    margin-top: 39px;
  }
}
.about .bfaf .bfaf_list .box {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about .bfaf .bfaf_list .box {
    margin-top: 10.667vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .bfaf .bfaf_list .box {
    margin-top: 2.778vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .bfaf .bfaf_list .box {
    margin-top: 30px;
  }
}
.about .bfaf .bfaf_list .box:first-child {
  margin-top: 0;
}
.about .bfaf .bfaf_list .box .tit {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .about .bfaf .bfaf_list .box .tit {
    width: auto;
    height: auto;
    margin: 0 auto;
    top: 6.4vw;
    left: 0;
    right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .about .bfaf .bfaf_list .box .tit {
    transform: translateY(-50%);
    top: 50%;
    width: 24.074vw;
    height: 24.074vw;
    left: 5.556vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .bfaf .bfaf_list .box .tit {
    transform: translateY(-50%);
    top: 50%;
    width: 260px;
    height: 260px;
    left: 60px;
  }
}
.about .bfaf .bfaf_list .box .tit span {
  line-height: 1.42;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #E4BA4E;
  background: linear-gradient(90deg, rgb(228, 186, 78) 0%, rgb(252, 252, 252) 25%, rgb(215, 192, 144) 61%, rgb(233, 218, 180) 87%, rgb(252, 252, 252) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 767px) {
  .about .bfaf .bfaf_list .box .tit span {
    font-size: 7.333vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .bfaf .bfaf_list .box .tit span {
    font-size: 3.889vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .bfaf .bfaf_list .box .tit span {
    font-size: 42px;
  }
}
.about .features {
  margin: 0 auto;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .about .features {
    width: 91.733vw;
    padding-top: 9.333vw;
    border-radius: 5.333vw;
    filter: drop-shadow(2.667vw 4vw 2.667vw rgba(0, 14, 81, 0.6));
  }
}
@media only screen and (min-width: 768px) {
  .about .features {
    width: 92.593vw;
    padding-top: 4.63vw;
    border-radius: 3.704vw;
    filter: drop-shadow(1.852vw 2.778vw 1.852vw rgba(0, 14, 81, 0.6));
  }
}
@media only screen and (min-width: 1080px) {
  .about .features {
    width: 1000px;
    padding-top: 50px;
    border-radius: 40px;
    filter: drop-shadow(20px 30px 20px rgba(0, 14, 81, 0.6));
  }
}
.about .features h2 {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .about .features h2 {
    margin-bottom: 6vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .features h2 {
    margin-bottom: 3.704vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features h2 {
    margin-bottom: 40px;
  }
}
.about .features h2 span {
  font-weight: 700;
  letter-spacing: 0.025em;
  background: #182987;
  background: linear-gradient(90deg, rgb(24, 41, 135) 0%, rgb(16, 27, 111) 17%, rgb(0, 70, 151) 43%, rgb(18, 30, 116) 71%, rgb(0, 12, 47) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 767px) {
  .about .features h2 span {
    font-size: 10.4vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .features h2 span {
    font-size: 7.037vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features h2 span {
    font-size: 76px;
  }
}
.about .features .features_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .about .features .features_list {
    gap: 5.333vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .features .features_list {
    gap: 1.852vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features .features_list {
    gap: 20px;
  }
}
.about .features .features_list li {
  background: #DDEAF2;
}
@media only screen and (max-width: 767px) {
  .about .features .features_list li {
    width: 81.333vw;
    padding-bottom: 7.333vw;
    border-radius: 2.667vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .features .features_list li {
    width: 42.593vw;
    padding-bottom: 3.241vw;
    border-radius: 1.852vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features .features_list li {
    width: 460px;
    padding-bottom: 35px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .about .features .features_list li:nth-child(-n+2) {
    padding-bottom: 6vw;
  }
}
.about .features .features_list li .tit_area {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .about .features .features_list li .tit_area {
    gap: 1.867vw;
    width: 26.667vw;
    height: 10.667vw;
    margin-bottom: 3.333vw;
    border-radius: 2.667vw 0;
  }
}
@media only screen and (min-width: 768px) {
  .about .features .features_list li .tit_area {
    gap: 1.111vw;
    width: 18.519vw;
    height: 7.407vw;
    margin-bottom: 3.241vw;
    border-radius: 1.852vw 0;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features .features_list li .tit_area {
    gap: 12px;
    width: 200px;
    height: 80px;
    margin-bottom: 35px;
    border-radius: 20px 0;
  }
}
.about .features .features_list li .tit_area .tit {
  color: #004F9F;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .about .features .features_list li .tit_area .tit {
    font-size: 4.8vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .features .features_list li .tit_area .tit {
    font-size: 3.333vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features .features_list li .tit_area .tit {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .about .features .features_list li .tit_area .num {
    width: 4.267vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .features .features_list li .tit_area .num {
    width: 2.963vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features .features_list li .tit_area .num {
    width: 32px;
  }
}
.about .features .features_list li .text {
  color: #E50012;
  line-height: 1.56;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 767px) {
  .about .features .features_list li .text {
    font-size: 4.8vw;
    line-height: 1.83;
    margin-left: 10vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .features .features_list li .text {
    font-size: 2.778vw;
    margin-left: 3.704vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features .features_list li .text {
    font-size: 30px;
    margin-left: 40px;
  }
}
.about .features .features_list li .text.f01 {
  line-height: 1.36;
}
@media only screen and (max-width: 767px) {
  .about .features .features_list li .text.f01 {
    font-size: 7.2vw;
    line-height: 1.62;
  }
}
@media only screen and (min-width: 768px) {
  .about .features .features_list li .text.f01 {
    font-size: 3.333vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features .features_list li .text.f01 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .about .features .features_list li .text.f02 {
    font-size: 10.133vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .features .features_list li .text.f02 {
    font-size: 3.519vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features .features_list li .text.f02 {
    font-size: 38px;
  }
}
.about .features .features_list li .kome {
  color: #606060;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 767px) {
  .about .features .features_list li .kome {
    font-size: 3.2vw;
    margin-top: 2.667vw;
    margin-left: 6.667vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .features .features_list li .kome {
    font-size: 1.481vw;
    margin-top: 1.389vw;
    margin-left: 3.704vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .features .features_list li .kome {
    font-size: 16px;
    margin-top: 15px;
    margin-left: 40px;
  }
}
.about .catch {
  padding: 73px 0 55px;
}
@media only screen and (max-width: 767px) {
  .about .catch {
    padding: 12vw 0 15.333vw;
  }
}
@media only screen and (min-width: 768px) {
  .about .catch {
    padding: 6.759vw 0 5.093vw;
  }
}
@media only screen and (min-width: 1080px) {
  .about .catch {
    padding: 73px 0 55px;
  }
}

/* =======================================
 footer
======================================= */
.footer {
  color: var(--strong_color);
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 5.333vw 4vw 6.667vw;
  }
}
@media only screen and (min-width: 768px) {
  .footer {
    padding: 2.407vw 2.778vw 5.556vw;
  }
}
@media only screen and (min-width: 1080px) {
  .footer {
    padding: 26px 30px 60px;
  }
}

.fixed {
  display: none;
  position: fixed;
  z-index: 90;
}
@media only screen and (max-width: 767px) {
  .fixed {
    bottom: 3.733vw;
    right: 3.733vw;
    width: 16.533vw;
  }
}
@media only screen and (min-width: 768px) {
  .fixed {
    bottom: 2.963vw;
    right: 2.963vw;
    width: 10.926vw;
  }
}
@media only screen and (min-width: 1080px) {
  .fixed {
    bottom: 32px;
    right: 50%;
    transform: translateX(500px);
    width: 118px;
  }
}
.fixed.is_fixed--show {
  display: block;
}
.fixed.is_fixed--scrolled {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .fixed.is_fixed--scrolled {
    bottom: 57.333vw;
  }
}
@media only screen and (min-width: 768px) {
  .fixed.is_fixed--scrolled {
    bottom: 28.704vw;
  }
}
@media only screen and (min-width: 1080px) {
  .fixed.is_fixed--scrolled {
    bottom: 310px;
  }
}
@media (any-hover: hover) {
  .fixed a:hover {
    opacity: 0.8;
  }
}

.footer__logo {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    gap: 3.467vw;
  }
}
@media only screen and (min-width: 768px) {
  .footer__logo {
    gap: 2.037vw;
  }
}
@media only screen and (min-width: 1080px) {
  .footer__logo {
    gap: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__logo__company {
    width: 33.067vw;
  }
}
@media only screen and (min-width: 768px) {
  .footer__logo__company {
    width: 20vw;
  }
}
@media only screen and (min-width: 1080px) {
  .footer__logo__company {
    width: 216px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__logo__series {
    width: 32.933vw;
  }
}
@media only screen and (min-width: 768px) {
  .footer__logo__series {
    width: 19.907vw;
  }
}
@media only screen and (min-width: 1080px) {
  .footer__logo__series {
    width: 215px;
  }
}

@media (any-hover: hover) {
  .footer__logo__link:hover {
    opacity: 0.8;
  }
}

@media only screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 7.467vw;
  }
}
@media only screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 2.778vw;
  }
}
@media only screen and (min-width: 1080px) {
  .footer__nav {
    margin-top: 30px;
  }
}

.footer__nav__list {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .footer__nav__list {
    margin-top: 5.867vw;
  }
}
@media only screen and (min-width: 768px) {
  .footer__nav__list {
    margin-top: 1.852vw;
  }
}
@media only screen and (min-width: 1080px) {
  .footer__nav__list {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__nav__item {
    font-size: 3.2vw;
    line-height: 1.667;
    padding: 0 2.933vw;
  }
}
@media only screen and (min-width: 768px) {
  .footer__nav__item {
    font-size: 2.037vw;
    line-height: 1.818;
    padding: 0 2.5vw;
  }
}
@media only screen and (min-width: 1080px) {
  .footer__nav__item {
    font-size: 22px;
    padding: 0 27px;
  }
}
.footer__nav__item:not(:last-child) {
  border-right: 1px solid var(--strong_color);
}

.footer__nav__link {
  color: var(--strong_color);
}
@media (any-hover: hover) {
  .footer__nav__link:hover {
    opacity: 0.8;
    text-decoration: underline;
  }
}

@media only screen and (max-width: 767px) {
  .license {
    font-size: 2.133vw;
    line-height: 1.75;
    margin-top: 3.333vw;
  }
}
@media only screen and (min-width: 768px) {
  .license {
    font-size: 1.481vw;
    margin-top: 4.444vw;
  }
}
@media only screen and (min-width: 1080px) {
  .license {
    font-size: 16px;
    margin-top: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .copyright {
    font-size: 2.4vw;
    margin-top: 2.667vw;
  }
}
@media only screen and (min-width: 768px) {
  .copyright {
    font-size: 1.667vw;
    margin-top: 1.852vw;
  }
}
@media only screen and (min-width: 1080px) {
  .copyright {
    font-size: 18px;
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */