@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
*, ::before, ::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  html {
    font-size: 0.715vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.334vw;
  }
}

body {
  margin: 0;
  font-family: YakuHanJP, "M PLUS 1p", sans-serif;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #1E1E1E;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  body a[href^="tel:"] {
    pointer-events: none;
  }
}

main {
  display: block;
}

ul, ol, figure, p, button, input, h1, h2, h3, h4, h5, h6, p, dl, dt, dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

svg {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}

body.is-opened {
  overflow: hidden;
}

.head {
  margin-inline: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
}
@media screen and (min-width: 769px) {
  .head {
    padding: 0 5rem;
    width: 140rem;
    height: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .head {
    padding: 2rem 2.5rem 2rem 4rem;
    width: 75rem;
    height: 10rem;
    background-color: #fff;
  }
}

.head_logo {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .head_logo {
    width: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .head_logo {
    width: 38.9rem;
  }
}

@media screen and (min-width: 769px) {
  .nav {
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .nav {
    width: 100%;
    height: 0;
    background-color: #fff;
    position: fixed;
    top: 10rem;
    left: 0;
    transition: height 0.2s linear 0s;
    overflow: hidden;
  }
  .nav.is-opened {
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  .nav_wrap {
    padding: 10rem 10rem;
    height: 100vh;
    background-color: #fff;
    overflow-y: scroll;
  }
}

.nav_list {
  display: flex;
}
@media screen and (min-width: 769px) {
  .nav_list {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    align-items: center;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_list {
    flex-direction: column;
    row-gap: 7.5rem;
    font-size: 3.4rem;
    padding-bottom: 18rem;
  }
}

.nav_link {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 769px) {
  .nav_link {
    font-size: 1.5rem;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .nav_link {
    font-size: 3.4rem;
  }
}
.nav_link > p {
  font-weight: 500;
  cursor: pointer;
}
.nav_link > a {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .nav_link > a:hover {
    color: #0A64B4;
    text-decoration: underline;
    text-underline-offset: 0.5em;
  }
}

@media screen and (min-width: 769px) {
  .nav_arrow {
    width: 12.7rem;
    height: 4rem;
    display: grid;
    place-content: center;
    background-color: #0A64B4;
    border-radius: 100vmax;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  .nav_arrow:hover {
    background-color: #3b83c3;
    transition: all 0.4s ease;
  }
  .nav_arrow:hover .arrow01.col_w svg {
    fill: #3b83c3;
  }
}
@media screen and (min-width: 769px) {
  .nav_arrow .btn_wid {
    display: flex;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    color: #fff;
  }
}
@media screen and (min-width: 769px) {
  .nav_arrow .btn_wid p,
  .nav_arrow .btn_wid a {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .nav_arrow .btn_wid p,
  .nav_arrow .btn_wid a {
    font-size: 3.5rem;
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  .nav_arrow .btn_wid .arrow01 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nav_arrow .drop_nav {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .nav_btn {
    margin-left: auto;
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    background-image: url(/common/img/header/hamburger-open.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 10000;
  }
  .nav_btn.is-opened {
    background-image: url(/common/img/header/hamburger-close.jpg);
  }
}

.drop > p.active {
  color: #0A64B4;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 0.5em;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .drop_list {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.2s ease-out;
    position: absolute;
    top: 60%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .drop_list {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .drop_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 1.5rem;
    width: 95rem;
  }
}
@media screen and (max-width: 768px) {
  .drop_nav {
    margin-top: 1.5rem;
  }
}
.drop_nav a:hover .drop_img img {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}
.drop_nav a:hover .drop_ttl {
  color: #0A64B4;
  text-decoration: underline;
  transition: all 0.4s ease;
}

@media screen and (min-width: 769px) {
  .drop_list_wrap {
    padding-top: 3rem;
  }
}
@media screen and (min-width: 769px) {
  .drop_list_wrap hgroup {
    margin-top: 0.8rem;
    transition: 0.4s;
  }
}
@media screen and (max-width: 768px) {
  .drop_list_wrap hgroup {
    display: none;
  }
}
.drop_list_wrap hgroup h2 {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .drop_list_wrap hgroup h2 {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
.drop_list_wrap hgroup p {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .drop_list_wrap hgroup p {
    margin-top: 1.4rem;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .drop_list_wrap hgroup:hover {
    color: #0A64B4;
    transition: 0.4s;
  }
}

@media screen and (min-width: 769px) {
  .drop_list_inner {
    padding: 6.5rem 10rem 6.5rem;
    width: 100%;
    display: flex;
    -moz-column-gap: 8rem;
         column-gap: 8rem;
    background-color: #fff;
  }
}

@media screen and (min-width: 769px) {
  .drop_img {
    width: 21.2rem;
    height: auto;
    border-radius: 0.4rem;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .drop_img {
    display: none;
  }
}
.drop_img img {
  transition: transform 0.4s ease;
}

.drop_ttl {
  transition: all 0.4s ease;
}
@media screen and (min-width: 769px) {
  .drop_ttl {
    margin-top: 1.3rem;
    display: flex;
    align-items: center;
    -moz-column-gap: 0.7rem;
         column-gap: 0.7rem;
  }
}
@media screen and (max-width: 768px) {
  .drop_ttl {
    margin-top: 3rem;
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .drop_ttl .arrow01 {
    display: none;
  }
}

.drop_txt {
  letter-spacing: 0.03em;
}
@media screen and (min-width: 769px) {
  .drop_txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .drop_txt {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .drop_txt::before {
    content: "ー";
    margin-right: 0.5em;
    color: #0A64B4;
  }
}

@media screen and (min-width: 769px) {
  .nav_sitemap {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nav_sitemap {
    padding: 10.5rem 0 16rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_sitemap li + li {
    margin-top: 4.5rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_sitemap li {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .nav_sitemap li::before {
    content: "ー";
    margin-right: 0.5em;
    color: #0A64B4;
  }
}

.strong {
  font-weight: 500;
}

.to_top {
  position: fixed;
  z-index: 999;
  transition: all 0.15s ease-out;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 769px) {
  .to_top {
    inset: auto 5rem 11rem auto;
  }
}
@media screen and (max-width: 768px) {
  .to_top {
    inset: auto 2rem 5rem auto;
  }
}
.to_top.is-active {
  opacity: 1;
  visibility: visible;
}
.to_top > a {
  display: block;
  background-color: #0A64B4;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .to_top > a {
    width: 6rem;
    height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .to_top > a {
    width: 9rem;
    height: 9rem;
  }
}
.to_top > a svg {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) {
  .to_top > a svg {
    width: 1.6rem;
    height: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .to_top > a svg {
    width: 2.5rem;
    height: 1.8rem;
  }
}
.to_top > a:hover {
  opacity: 0.7;
}

.foot {
  margin-inline: auto;
  border-top: 1px solid #000;
}
@media screen and (min-width: 769px) {
  .foot {
    padding: 9.5rem 0 5.5rem;
    width: 127rem;
  }
}
@media screen and (max-width: 768px) {
  .foot {
    padding: 14rem 0 6rem;
    width: 65rem;
  }
}

.foot_inner {
  display: flex;
}
@media screen and (min-width: 769px) {
  .foot_inner.wid01 {
    -moz-column-gap: 18rem;
         column-gap: 18rem;
  }
}
@media screen and (min-width: 769px) {
  .foot_inner.wid03 {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 768px) {
  .foot_inner.wid03 {
    margin-top: 10rem;
  }
}
@media screen and (min-width: 769px) {
  .foot_inner.wid03 .trademark {
    font-size: 1.4rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .foot_inner.wid03 .trademark {
    font-size: 2.4rem;
    line-height: 3.9rem;
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .foot_inner.wid02 {
    margin-top: 8rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .foot_inner.wid02 {
    margin-top: 8rem;
    padding: 0 7.5rem;
    flex-direction: column;
    row-gap: 6rem;
  }
}
.foot_inner.wid02 small {
  font-family: "Outfit", sans-serif;
}
@media screen and (min-width: 769px) {
  .foot_inner.wid02 small {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .foot_inner.wid02 small {
    text-align: center;
    font-size: 1.8rem;
  }
}

.foot_logo {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) {
  .foot_logo {
    row-gap: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .foot_logo {
    margin-inline: auto;
    row-gap: 6.5rem;
  }
}
.foot_logo > h2 {
  height: auto;
}
@media screen and (min-width: 769px) {
  .foot_logo > h2 {
    width: 34rem;
  }
}
@media screen and (max-width: 768px) {
  .foot_logo > h2 {
    width: 48rem;
  }
}
.foot_logo > h3 {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .foot_logo > h3 {
    font-size: 2.6rem;
    line-height: 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .foot_logo > h3 {
    font-size: 3.8rem;
    line-height: 5.8rem;
  }
}

.foot_sitemap {
  display: grid;
}
@media screen and (min-width: 769px) {
  .foot_sitemap {
    grid-template-columns: repeat(4, auto);
    -moz-column-gap: 6.5rem;
         column-gap: 6.5rem;
    row-gap: auto;
  }
}
@media screen and (max-width: 768px) {
  .foot_sitemap {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .foot_sitemap li:first-of-type {
    grid-area: 1/1/3/2;
  }
}
@media screen and (min-width: 769px) {
  .foot_sitemap li:nth-of-type(2) {
    grid-area: 1/2/3/3;
  }
}
@media screen and (min-width: 769px) {
  .foot_sitemap li:nth-of-type(3) {
    grid-area: 1/3/2/4;
  }
}
@media screen and (min-width: 769px) {
  .foot_sitemap li:nth-of-type(4) {
    margin-top: -2.5rem;
    grid-area: 2/3/3/4;
  }
}
@media screen and (min-width: 769px) {
  .foot_sitemap li:last-of-type {
    grid-area: 1/4/3/5;
  }
}
@media screen and (min-width: 769px) {
  .foot_sitemap dt {
    font-weight: 500;
  }
}
@media screen and (min-width: 769px) {
  .foot_sitemap dt + dt {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 769px) {
  .foot_sitemap dt {
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
  }
}
.foot_sitemap dd {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .foot_sitemap dd + dd {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 769px) {
  .foot_sitemap dd {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) {
  .foot_sitemap dd::before {
    content: "ー";
    margin-right: 0.5em;
    font-size: 1.2rem;
  }
}
.foot_sitemap a {
  transition: transform 0.4s ease;
  transform: translateX(0);
}
@media (any-hover: hover) {
  .foot_sitemap a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
    color: #0A64B4;
    transition: all 0.4s ease;
  }
}

.foot_nav {
  display: flex;
}
@media screen and (min-width: 769px) {
  .foot_nav {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .foot_nav {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
.foot_nav > li {
  font-family: 500;
}
@media screen and (min-width: 769px) {
  .foot_nav > li {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .foot_nav > li {
    font-size: 2rem;
  }
}
.foot_nav > li::before {
  content: "ー";
  margin-right: 0.5em;
}
@media screen and (min-width: 769px) {
  .foot_nav > li::before {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .foot_nav > li::before {
    font-size: 2rem;
  }
}

/**
  * index
  * ・ホバー
  * ・ボタン
  * ・矢印01
  * ・矢印02
  * ・子ページの基本設定
  */
a .hov_arrow01 {
  transition: transform 0.4s ease;
  transform: translateX(0);
  transition: all 0.4s ease;
}
@media (any-hover: hover) {
  a:hover .hov_brd01 {
    text-decoration: underline;
    text-underline-offset: 0.2em;
    color: #0A64B4;
    transition: all 0.4s ease;
  }
  a:hover .hov_arrow01 {
    transition: transform 0.4s ease;
    transform: translateX(0.2em);
  }
}

.link_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 100vmax;
  position: relative;
  transition: all 0.4s ease;
}
@media screen and (min-width: 769px) {
  .link_btn {
    padding: 0 3.5rem;
    width: 30rem;
    height: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .link_btn {
    padding: 0 6rem;
    width: 47rem;
    height: 12rem;
  }
}
.link_btn.col_w {
  background-color: #fff;
}
@media (any-hover: hover) {
  .link_btn.col_w:hover {
    transition: all 0.4s ease;
    background-color: #3b83c3;
  }
  .link_btn.col_w:hover .link_btn_p.col_b {
    color: #fff;
  }
  .link_btn.col_w:hover .arrow01.col_b {
    background-color: #fff;
  }
  .link_btn.col_w:hover .arrow01.col_b svg {
    fill: #3b83c3;
  }
}
.link_btn.col_b {
  background-color: #0A64B4;
}
@media (any-hover: hover) {
  .link_btn.col_b:hover {
    transition: all 0.4s ease;
    background-color: #3b83c3;
  }
  .link_btn.col_b:hover .link_btn_p.col_w {
    color: #fff;
  }
  .link_btn.col_b:hover .arrow01.col_w {
    background-color: #fff;
  }
  .link_btn.col_b:hover .arrow01.col_w svg {
    fill: #3b83c3;
  }
}
.link_btn.bd_b {
  background-color: #fff;
  border: 1px solid #0A64B4;
}
@media (any-hover: hover) {
  .link_btn.bd_b:hover {
    transition: all 0.4s ease;
    background-color: #3b83c3;
    border: 1px solid #3b83c3;
  }
  .link_btn.bd_b:hover .link_btn_p.col_b {
    color: #fff;
  }
  .link_btn.bd_b:hover .arrow01.col_b {
    background-color: #fff;
  }
  .link_btn.bd_b:hover .arrow01.col_b svg {
    fill: #3b83c3;
  }
}

.link_btn_p {
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 769px) {
  .link_btn_p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .link_btn_p {
    font-size: 2.6rem;
  }
}
.link_btn_p.col_w {
  color: #fff;
}
.link_btn_p.col_b {
  color: #0A64B4;
}

.arrow01 {
  display: block;
  border-radius: 100vmax;
}
.arrow01.col_w {
  background-color: #fff;
}
.arrow01.col_w svg {
  fill: #0A64B4;
}
.arrow01.col_b {
  background-color: #0A64B4;
}
.arrow01.col_b svg {
  fill: #fff;
}
.arrow01.col_g {
  background-color: #5A6E6E;
}
.arrow01.col_g svg {
  fill: #fff;
}
.arrow01.col_m {
  background-color: #149678;
}
.arrow01.col_m svg {
  fill: #fff;
}
.arrow01.inversion {
  background-color: #0A64B4;
}
.arrow01.inversion svg {
  fill: #fff;
  transform: scale(-1, 1);
}
@media screen and (min-width: 769px) {
  .arrow01.wid01 {
    width: 3.8rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .arrow01.wid01 {
    width: 5.8rem;
    height: 3.7rem;
  }
}
@media screen and (min-width: 769px) {
  .arrow01.wid02 {
    width: 2.2rem;
    height: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .arrow01.wid02 {
    width: 3.2rem;
    height: 2.1rem;
  }
}
.arrow01.wid02 svg {
  transform: translateY(-0.15em);
}
@media screen and (max-width: 768px) {
  .arrow01.wid03 {
    width: 3.7rem;
    height: 2.4rem;
  }
}
@media screen and (min-width: 769px) {
  .arrow01.wid04 {
    width: 3.3rem;
    height: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .arrow01.wid04 {
    width: 4.3rem;
    height: 2.8rem;
  }
}
@media screen and (min-width: 769px) {
  .arrow01.wid05 {
    width: 2.2rem;
    height: 1.5rem;
  }
}

@media screen and (min-width: 769px) {
  .arrow02.wid01 svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .arrow02.wid01 svg {
    width: 2.9rem;
    height: 2.9rem;
  }
}
@media screen and (min-width: 769px) {
  .arrow02.wid02 svg {
    width: 1.2rem;
    height: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .arrow02.wid02 svg {
    width: 2.2rem;
    height: 2.2rem;
  }
}

@media screen and (min-width: 769px) {
  .child .container {
    margin: 2rem auto 0;
    width: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .child .container {
    margin: 7.5rem auto 0;
    width: 65rem;
  }
}

@media screen and (min-width: 769px) {
  .hero {
    padding-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 10rem;
  }
}

.hero_wrap {
  margin-inline: auto;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
@media screen and (min-width: 769px) {
  .hero_wrap {
    width: 140rem;
    height: 36rem;
  }
}
@media screen and (max-width: 768px) {
  .hero_wrap {
    width: 75rem;
    height: 40rem;
  }
}
.hero_wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.4);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}

.hero_ttl {
  text-align: center;
  color: #fff;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.hero_ttl > h2 {
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .hero_ttl > h2 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .hero_ttl > h2 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 769px) {
  .hero_ttl > p {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .hero_ttl > p {
    margin-top: 2.5rem;
    font-size: 2.4rem;
  }
}

@media screen and (min-width: 769px) {
  .breadcrumbs {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .breadcrumbs li {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 769px) {
  .breadcrumbs li + li::before {
    content: ">";
    margin: 0 0.5em;
    display: inline-block;
    transform: translateY(-0.1em);
  }
}

.p-cookie__box {
  position: fixed;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 95%;
  background: rgba(255, 255, 255, 0.9);
  visibility: hidden;
  transition: 0.5s;
  z-index: 100;
}

.p-cookie__box.is-show {
  bottom: 3rem;
  visibility: visible;
}

.p-cookie__box__inner {
  display: flex;
}
@media screen and (min-width: 769px) {
  .p-cookie__box__inner {
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem 15rem;
  }
}
@media screen and (max-width: 768px) {
  .p-cookie__box__inner {
    flex-direction: column;
    gap: 4rem;
    padding: 4rem;
  }
}

@media screen and (min-width: 769px) {
  .p-cookie__message {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-cookie__message {
    font-size: 2.4rem;
    line-height: 3.8rem;
  }
}

.link_red {
  color: #0A64B4;
  border-bottom: 1px solid #0A64B4;
}

@media screen and (min-width: 769px) {
  .p-cookie__btn {
    width: 17.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-cookie__btn {
    width: 100%;
  }
}

.p-cookie__btn:hover {
  cursor: pointer;
}

.p-cookie__btn > button {
  position: relative;
  display: block;
  width: 100%;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-align: center;
  border-radius: 100vmax;
  background: #1c1f23;
}
@media screen and (min-width: 769px) {
  .p-cookie__btn > button {
    padding: 1.5rem 2rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-cookie__btn > button {
    padding: 3rem 4rem;
    font-size: 3rem;
  }
}

.p-cookie__btn > button:hover {
  opacity: 0.7;
}

.cookie_block-hide {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}/*# sourceMappingURL=base.css.map */