@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* PC、SPの非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

html {
  font-size: 62.5%;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  word-break: break-all;
}

img {
  width: 100%;
}

body {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.m-prof-inner h2 {
  font-family: "Noto Sans JP", sans-serif;
}

.m-ac h2 {
  font-family: "Noto Sans JP", sans-serif;
}

.google a {
  font-family: "Noto Sans JP", sans-serif;
}

/* footer */
.footer__main {
  background: rgb(175, 175, 175);
}
.footer .footer-inner {
  display: flex;
  max-width: 980px;
  margin: 0 auto;
  padding-top: min(3.7037037037vw, 40px);
}
@media (max-width: 767px) {
  .footer .footer-inner {
    flex-direction: column-reverse;
  }
}
.footer__left {
  width: 60%;
  padding: 2rem;
  position: relative;
}
@media (max-width: 767px) {
  .footer__left {
    font-size: min(0.4vw, 1.5px);
    margin: 0 auto;
    padding: 0;
    padding-bottom: 2rem;
  }
}
.footer__left .footer-comp {
  width: 60%;
  margin: 0 auto 0 0;
}
@media (max-width: 767px) {
  .footer__left .footer-comp {
    width: 100%;
  }
}
.footer__left .footer-comp h2 {
  font-size: 0.12rem;
  font-size: min(2.6666666667vw, 10px);
  text-align: center;
}
.footer__left .footer-comp p {
  font-size: 1rem;
  white-space: nowrap;
  line-height: 1.3;
  color: #333;
}
@media (max-width: 767px) {
  .footer__left .footer-comp p {
    font-size: min(2.1333333333vw, 8px);
  }
}
.footer__left::after {
  position: absolute;
  top: 10%;
  left: 80%;
  margin: 0 1rem;
  content: "";
  width: 0.5px;
  height: 80%;
  background: #666;
}
@media (max-width: 767px) {
  .footer__left::after {
    display: none;
  }
}
.footer__right {
  width: 40%;
}
@media (max-width: 767px) {
  .footer__right {
    width: 70%;
    margin: 0 auto;
  }
}
.footer__right .right {
  width: 100%;
  margin: 3rem auto;
}
.footer__right .right h2 {
  text-align: center;
  padding-bottom: min(2.7777777778vw, 30px);
  font-size: min(1.4814814815vw, 16px);
  font-family: "M PLUS Rounded 1c", sans-serif;
}
@media (max-width: 767px) {
  .footer__right .right h2 {
    font-size: min(3.7333333333vw, 14px);
  }
}
.footer__right .right .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media (max-width: 767px) {
  .footer__right .right .sns {
    -moz-column-gap: min(10.6666666667vw, 40px);
         column-gap: min(10.6666666667vw, 40px);
  }
}
.footer__right .right .sns .sns-item {
  width: 3rem;
}
@media (max-width: 767px) {
  .footer__right .right .sns .sns-item {
    width: min(8vw, 30px);
  }
}
.footer__right .right .sns .sns-item img {
  width: 100%;
}
.footer__right .right .sns .sns-item:nth-of-type(1) {
  width: 3rem;
}
@media (max-width: 767px) {
  .footer__right .right .sns .sns-item:nth-of-type(1) {
    width: min(8vw, 30px);
  }
}
.footer__right .right .sns .sns-item:nth-of-type(1) img {
  width: 100%;
}
@media (max-width: 767px) {
  .footer__right .right .sns .sns-item:nth-of-type(1) img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer__right .right .sns-info {
    margin-bottom: 1rem;
  }
}
.footer .comp {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .footer .comp {
    padding-bottom: 2rem;
    justify-content: center;
    padding-left: 0;
  }
}
.footer .comp a {
  font-size: 0.7rem;
  opacity: 0.6;
  border-right: solid 1px #333;
  padding-right: 0.5rem;
  color: #333;
}
.footer .comp .comp-perma {
  display: flex;
}
.footer .comp .comp-perma p {
  font-size: 0.8rem;
  padding-left: 1rem;
}

/* fv */
.fv {
  height: min(64.8148148148vw, 700px);
  position: relative;
}
@media (max-width: 767px) {
  .fv {
    height: min(373.3333333333vw, 1400px);
  }
}
.fv__bg-image {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .fv__bg-image {
    height: 60rem;
    display: none;
  }
}
.fv__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20% 80%;
     object-position: 20% 80%;
}
@media (max-width: 767px) {
  .fv__bg-image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 70% 50%;
       object-position: 70% 50%;
  }
}
.fv__bg-image-sp {
  height: 100%;
}
.fv__bg-image-sp img {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .fv__bg-image-sp img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 768px) {
  .fv__bg-image-sp {
    display: none;
  }
}
.fv .fv-container {
  position: absolute;
  top: min(8.3333333333vw, 90px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1100px;
  align-items: center;
}
.fv__contents {
  width: 80%;
  margin: 0 auto;
  animation: fadeIn 3s;
}
@media (max-width: 767px) {
  .fv__contents {
    width: 90%;
    padding-top: min(16vw, 60px);
    margin-bottom: min(5.3333333333vw, 20px);
  }
}
.fv__contents h2 {
  text-align: center;
  font-size: min(2.4074074074vw, 26px);
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px #000;
  font-family: "Merriweather", serif;
}
@media (max-width: 767px) {
  .fv__contents h2 {
    font-size: min(3.7333333333vw, 14px);
  }
}
.fv__contents h1 {
  text-align: center;
  font-size: min(3.7037037037vw, 40px);
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px #000;
  font-family: Zen Old Mincho;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .fv__contents h1 {
    font-size: min(9.0666666667vw, 36px);
  }
}
.fv__item-up {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .fv__item-up {
    margin-bottom: 1rem;
  }
}
.fv__item {
  display: flex;
  justify-content: center;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .fv__item {
    width: 90%;
    margin: 0 auto;
  }
}
.fv__item .js-text {
  font-family: "Merriweather", serif;
  font-style: normal;
  font-size: min(1.1111111111vw, 12px);
  line-height: 2;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 2px 2px #000;
}
@media (max-width: 767px) {
  .fv__item .js-text {
    font-size: min(3.4666666667vw, 13px);
    line-height: 1.6;
  }
}
.fv__item span {
  display: inline-block;
}
.fv .fv-works {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .fv .fv-works {
    top: 400px;
    top: min(101.3333333333vw, 380px);
  }
}
.fv .fv-works .fv-works-inner {
  width: 100%;
}
.fv .fv-works .fv-works-inner__title h2 {
  font-size: min(2.7777777778vw, 30px);
  color: #000033;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .fv .fv-works .fv-works-inner__title h2 {
    font-size: min(6.4vw, 24px);
  }
}
.fv .fv-works .fv-works-inner__container {
  display: flex;
}
@media (max-width: 767px) {
  .fv .fv-works .fv-works-inner__container {
    display: block;
  }
}
.fv .fv-works .fv-works-inner__container .btn-all-go {
  display: flex;
  justify-content: center;
  margin-bottom: min(2.7777777778vw, 30px);
}
.fv .fv-works .fv-works-inner__container .btn-all-go .reborn-go {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(11.1111111111vw, 120px);
  height: min(2.3148148148vw, 25px);
  border-radius: 1.25rem;
  background: #f2f2f2;
  background: -webkit-gradient(45deg, #fff 20%, #7a7979);
  background: linear-gradient(45deg, #fff 20%, #7a7979);
  box-shadow: #333 2px 2px;
  transition: 0.5s;
}
.fv .fv-works .fv-works-inner__container .btn-all-go .reborn-go span {
  font-weight: bold;
  font-size: min(1.0185185185vw, 11px);
}
@media (max-width: 767px) {
  .fv .fv-works .fv-works-inner__container .btn-all-go .reborn-go span {
    font-size: min(3.2vw, 12px);
  }
}
@media (max-width: 767px) {
  .fv .fv-works .fv-works-inner__container .btn-all-go .reborn-go {
    width: min(40vw, 150px);
    width: 90%;
    height: min(6.6666666667vw, 25px);
  }
}
.fv .fv-works .fv-works-inner__container .btn-all-go .reborn-go:hover {
  background: -webkit-gradient(45deg, #7a7979 20%, #fff);
  background: linear-gradient(45deg, #7a7979 20%, #fff);
  color: #fff;
}
.fv .fv-works .works-an-reborn {
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-reborn {
    width: 70%;
    height: min(26.6666666667vw, 100px);
    margin-bottom: min(13.3333333333vw, 50px);
  }
}
.fv .fv-works .works-an-reborn .btn-reborn {
  transition: 0.5s ease;
  width: min(27.7777777778vw, 300px);
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-reborn .btn-reborn {
    width: auto;
  }
}
.fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 1rem;
  -moz-column-gap: min(1.3888888889vw, 15px);
       column-gap: min(1.3888888889vw, 15px);
  transition: background-color 0.5s ease;
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    height: auto;
  }
}
.fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner__image {
  width: 30%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner__image {
    justify-content: center;
    width: min(16vw, 60px);
    height: min(16vw, 60px);
  }
}
.fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner__image img {
  width: 60px;
  width: min(5.5555555556vw, 60px);
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner__image img {
    max-width: 60px;
    width: 100%;
  }
}
.fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner__link {
  width: 50%;
}
.fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner__link h2 {
  line-height: 1;
  font-family: "Zen Maru Gothic", sans-serif;
}
.fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner__link h2 .subtitle {
  font-size: min(1.2037037037vw, 13px);
  font-weight: bold;
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner__link h2 .subtitle {
    font-size: min(3.2vw, 12px);
    white-space: nowrap;
  }
}
.fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner__link h2 .big-title {
  color: #f66;
  font-size: min(2.5925925926vw, 28px);
  font-weight: 700;
  text-shadow: #333 2px 2px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-reborn .btn-reborn .contWorks-inner__link h2 .big-title {
    font-size: min(6.9333333333vw, 26px);
  }
}
.fv .fv-works .works-an-reborn .btn-reborn-go {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  margin-bottom: min(2.7777777778vw, 30px);
}
.fv .fv-works .works-an-reborn .reborn-go {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(18.5185185185vw, 200px);
  height: min(2.3148148148vw, 25px);
  border-radius: 1.25rem;
  background: #f2f2f2;
  background: -webkit-gradient(45deg, #fff 20%, #7a7979);
  background: linear-gradient(45deg, #fff 20%, #7a7979);
  box-shadow: #333 2px 2px;
  font-weight: bold;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-reborn .reborn-go {
    width: 100%;
    height: 30px;
  }
}
.fv .fv-works .works-an-reborn .reborn-go:hover {
  background: -webkit-gradient(45deg, #7a7979 20%, #fff);
  background: linear-gradient(45deg, #7a7979 20%, #fff);
  color: #fff;
}
.fv .fv-works .vertical-bar {
  display: inline-block;
  width: 3px; /* 縦棒の太さ */
  height: min(23.1481481481vw, 250px); /* 縦棒の長さ */
  background-color: #fff; /* 縦棒の色 */
}
@media (max-width: 767px) {
  .fv .fv-works .vertical-bar {
    display: none;
  }
}
.fv .fv-works .works-an-music {
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-music {
    height: 100px;
    height: min(26.6666666667vw, 100px);
    margin-bottom: min(13.3333333333vw, 50px);
  }
}
.fv .fv-works .works-an-music .contWorks-inner {
  height: 100%;
  -moz-column-gap: min(4.6296296296vw, 50px);
       column-gap: min(4.6296296296vw, 50px);
  padding: min(0.9259259259vw, 10px) 0 min(0.9259259259vw, 10px);
  transition: background-color 0.5s ease;
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-music .contWorks-inner {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.fv .fv-works .works-an-music .contWorks-inner .cont-flex {
  display: flex;
}
@media (min-width: 768px) {
  .fv .fv-works .works-an-music .contWorks-inner .cont-flex {
    display: block;
  }
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-music .contWorks-inner .cont-flex {
    margin-bottom: 1rem;
    margin-bottom: min(3.2vw, 12px);
  }
}
.fv .fv-works .works-an-music .contWorks-inner__image {
  width: min(5.5555555556vw, 60px);
  margin: min(1.8518518519vw, 20px) auto min(1.6666666667vw, 18px);
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-music .contWorks-inner__image {
    width: 40%;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-music .contWorks-inner__image img {
    width: 100%;
    max-width: 60px;
  }
}
.fv .fv-works .works-an-music .contWorks-inner__link {
  width: 90%;
  line-height: 1;
  margin: 0 auto;
}
.fv .fv-works .works-an-music .contWorks-inner__link .sub-title {
  font-size: min(1.1111111111vw, 12px);
  text-align: center;
  white-space: nowrap;
  margin-top: min(0.9259259259vw, 10px);
  color: #fff;
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-music .contWorks-inner__link .sub-title {
    font-size: min(3.2vw, 12px);
  }
}
.fv .fv-works .works-an-music .contWorks-inner__link .big-title {
  color: #fff;
  font-size: min(1.6666666667vw, 18px);
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  margin-bottom: min(0.7407407407vw, 8px);
}
@media (max-width: 767px) {
  .fv .fv-works .works-an-music .contWorks-inner__link .big-title {
    font-size: min(4.8vw, 18px);
    white-space: nowrap;
  }
}
.fv .fv-works .works-an-music .contWorks-inner__link .big-lamer {
  margin-bottom: min(3.5185185185vw, 38px);
}
.fv .works-an-syuweb {
  width: 60%;
  max-width: 1200px;
  margin: min(1.8518518519vw, 20px) auto;
}
.fv .works-an-syuweb .contWorks-inner {
  height: 100%;
  padding: min(0.9259259259vw, 10px) 0 min(0.9259259259vw, 10px);
  -moz-column-gap: min(4.6296296296vw, 50px);
       column-gap: min(4.6296296296vw, 50px);
  transition: background-color 0.5s ease;
}
@media (max-width: 767px) {
  .fv .works-an-syuweb .contWorks-inner {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.fv .works-an-syuweb .contWorks-inner .cont-flex {
  display: flex;
}
@media (min-width: 768px) {
  .fv .works-an-syuweb .contWorks-inner .cont-flex {
    display: block;
  }
}
.fv .works-an-syuweb .contWorks-inner__image {
  width: min(5.5555555556vw, 60px);
  display: flex;
  margin: 0 auto min(1.8518518519vw, 20px);
}
@media (max-width: 767px) {
  .fv .works-an-syuweb .contWorks-inner__image {
    width: 40%;
    justify-content: center;
  }
}
.fv .works-an-syuweb .contWorks-inner__image img {
  width: 100%;
}
@media (max-width: 767px) {
  .fv .works-an-syuweb .contWorks-inner__image img {
    max-width: 60px;
  }
}
.fv .works-an-syuweb .contWorks-inner__link {
  width: 90%;
  margin: 0 auto min(2.7777777778vw, 30px);
}
.fv .works-an-syuweb .contWorks-inner__link h2 {
  line-height: 1;
  text-align: center;
}
.fv .works-an-syuweb .contWorks-inner__link h2 .subtitle {
  font-size: min(1.0185185185vw, 11px);
  color: #fff;
}
@media (max-width: 767px) {
  .fv .works-an-syuweb .contWorks-inner__link h2 .subtitle {
    font-size: min(3.4666666667vw, 13px);
  }
}
.fv .works-an-syuweb .contWorks-inner__link h2 .big-title {
  color: #fff;
  font-size: min(1.8518518519vw, 20px);
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.8em;
}
@media (max-width: 767px) {
  .fv .works-an-syuweb .contWorks-inner__link h2 .big-title {
    font-size: min(6.4vw, 24px);
  }
}
.fv .works-an-syuweb .contWorks-inner__link h2 .andoa-title {
  font-size: min(1.6666666667vw, 18px);
  line-height: 2em;
}
@media (max-width: 767px) {
  .fv .works-an-syuweb .contWorks-inner__link h2 .andoa-title {
    font-size: min(4.2666666667vw, 16px);
  }
}
.fv .works-an-syuweb .contWorks-inner__link h2 .luna-sol {
  color: #fff;
}
.fv .syuweb-sub {
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
  padding: min(1.2037037037vw, 13px) 0 min(0.9259259259vw, 10px);
}
.fv .syuweb-sub .contWorks-inner {
  height: 100%;
  -moz-column-gap: min(4.6296296296vw, 50px);
       column-gap: min(4.6296296296vw, 50px);
  transition: background-color 0.5s ease;
}
@media (max-width: 767px) {
  .fv .syuweb-sub .contWorks-inner {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.fv .syuweb-sub .contWorks-inner .cont-flex {
  display: flex;
}
@media (min-width: 768px) {
  .fv .syuweb-sub .contWorks-inner .cont-flex {
    display: block;
    margin-bottom: min(3.0555555556vw, 33px);
  }
}
.fv .syuweb-sub .contWorks-inner__image {
  width: min(5.5555555556vw, 60px);
  margin: min(1.5740740741vw, 17px) auto;
}
@media (max-width: 767px) {
  .fv .syuweb-sub .contWorks-inner__image {
    width: 40%;
    justify-content: center;
  }
}
.fv .syuweb-sub .contWorks-inner__image img {
  width: 100%;
}
@media (max-width: 767px) {
  .fv .syuweb-sub .contWorks-inner__image img {
    max-width: 60px;
  }
}
.fv .syuweb-sub .contWorks-inner__link {
  text-align: center;
  margin: 0 auto min(2.7777777778vw, 30px);
}
.fv .syuweb-sub .contWorks-inner__link h2 {
  line-height: 2em;
}
@media (max-width: 767px) {
  .fv .syuweb-sub .contWorks-inner__link h2 {
    line-height: 3em;
  }
}
.fv .syuweb-sub .contWorks-inner__link h2 .subtitle {
  font-size: min(1.1111111111vw, 12px);
  white-space: nowrap;
  color: #fff;
}
@media (max-width: 767px) {
  .fv .syuweb-sub .contWorks-inner__link h2 .subtitle {
    font-size: min(3.4666666667vw, 13px);
  }
}
.fv .syuweb-sub .contWorks-inner__link h2 .big-title {
  color: #fff;
  font-size: min(1.8518518519vw, 20px);
  font-weight: bold;
  font-family: sans-serif;
}
@media (max-width: 767px) {
  .fv .syuweb-sub .contWorks-inner__link h2 .big-title {
    font-size: min(6.4vw, 24px);
  }
}
.fv .syuweb-sub .btn-syuweb:hover .contWorks-inner {
  background-color: rgba(255, 255, 255, 0.6);
}
.fv .flex-andoa {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.fv .flex-andoa__logo {
  width: 50%;
}
.fv .flex-andoa__logo .andoa-img {
  width: 100% !important;
}
/* アニメーション用の基本スタイル */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

/* 表示時のスタイル */
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* 各要素の遅延時間 */
.fv-works-inner__title.fade-up {
  transition-delay: 0.2s;
  margin-top: 3rem;
}

.works-an-reborn.fade-up {
  transition-delay: 0.4s;
}
@media (max-width: 767px) {
  .works-an-reborn.fade-up {
    height: min(32vw, 120px);
  }
}

.works-an-music.fade-up {
  transition-delay: 0.6s;
}
@media (max-width: 767px) {
  .works-an-music.fade-up {
    height: min(32vw, 120px);
  }
}

.works-an-syuweb.fade-up {
  transition-delay: 0.8s;
}
@media (max-width: 767px) {
  .works-an-syuweb.fade-up {
    height: min(26.6666666667vw, 100px);
    margin-bottom: min(10.6666666667vw, 40px);
  }
}

.syuweb-sub.fade-up {
  transition-delay: 1s;
}
@media (max-width: 767px) {
  .syuweb-sub.fade-up {
    height: min(26.6666666667vw, 100px);
  }
}

.works-an-page {
  margin: 5rem;
}
.works-an-page .works-up {
  width: 100%;
  margin-bottom: 5rem;
}
.works-an-page .works-up .works-an-up {
  width: 40%;
  height: 20rem;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(216, 184, 248, 0.7);
  border-radius: 2rem;
  transition: 0.5s;
  box-shadow: 4px 4px rgba(51, 51, 51, 0.6);
}
.works-an-page .works-up .works-an-up a .contWorks-inner__image {
  width: 20%;
  margin: 0 auto 2rem;
}
.works-an-page .works-up .works-an-up a .contWorks-inner__image img {
  width: 100%;
  border-radius: 1rem;
}
.works-an-page .works-up .works-an-up a .contWorks-inner .cont-flex {
  display: flex;
}
.works-an-page .works-up .works-an-up a .contWorks-inner__link h2 {
  text-align: center;
}
.works-an-page .works-up .works-an-up a .contWorks-inner__link h2 .big-title {
  font-size: 5rem;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: rgb(255, 6, 139);
  line-height: 1;
}
.works-an-page .works-up .works-an-up a .contWorks-inner__link h2 .subtitle {
  font-size: 1.6rem;
}
.works-an-page .works-up .works-an-up:hover {
  background: rgb(216, 184, 248);
  box-shadow: 0 0;
  transform: translate(4px, 4px);
}
.works-an-page .works-down {
  display: flex;
}
.works-an-page .works-down .works-an-pageleft {
  width: 40%;
  height: 20rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 2rem;
  background: #f4b9c5;
  transition: 0.5s;
  box-shadow: 4px 4px rgba(51, 51, 51, 0.6);
}
.works-an-page .works-down .works-an-pageleft .contents-inner__image {
  width: 50%;
  margin: 0 auto 2rem;
}
.works-an-page .works-down .works-an-pageleft .contents-inner__link h2 {
  text-align: center;
}
.works-an-page .works-down .works-an-pageleft .contents-inner__link h2 .big-title {
  font-size: 4rem;
  font-weight: bold;
}
.works-an-page .works-down .works-an-pageleft:hover {
  box-shadow: 0 0;
  transform: translate(4px, 4px);
}
.works-an-page .works-down .works-an-pageright {
  width: 40%;
  height: 20rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 2rem;
  background: #f2f2f2;
  transition: 0.5s;
  box-shadow: 4px 4px rgba(51, 51, 51, 0.6);
}
.works-an-page .works-down .works-an-pageright a .contents-inner__link h2 {
  text-align: center;
}
.works-an-page .works-down .works-an-pageright a .contents-inner__link .subtitle {
  text-align: center;
}
.works-an-page .works-down .works-an-pageright a .contents-inner__link .subtitle .big-title {
  font-size: 4.6rem;
  font-weight: bold;
}
.works-an-page .works-down .works-an-pageright a .contents-inner__link .subtitle .reg-title {
  font-size: 3rem;
}
.works-an-page .works-down .works-an-pageright:hover {
  background: rgb(216, 184, 248);
  box-shadow: 0 0;
  transform: translate(4px, 4px);
}

@keyframes gradation-bg {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.header {
  width: 100%;
  height: 6rem;
  background: #aaf;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 4rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media (max-width: 767px) {
  .header {
    height: 6rem;
    padding-left: 2rem;
  }
}
.header__logo a {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header__logo a .logo01 {
  width: min(18.5185185185vw, 200px);
}
@media (max-width: 767px) {
  .header__logo a .logo01 {
    width: min(80vw, 300px);
  }
}
.header__logo a .logo02 {
  width: 22rem;
  width: min(20.3703703704vw, 220px);
  height: 60px;
  height: min(5.5555555556vw, 60px);
}
.header__logo a .logo02 img {
  height: 100%;
}
@media (max-width: 767px) {
  .header__logo a {
    width: 15rem;
  }
}
.header__logo a:hover svg {
  fill: #66f;
}
.header__right {
  display: flex;
  height: 100%;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.header__hb-btn {
  width: 4rem;
  height: 2.6rem;
  position: relative;
}
.header__hb-btn span {
  display: block;
  width: 100%;
  height: 0.2rem;
  background: #79A4D1;
  position: absolute;
  left: 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .header__hb-btn span {
    background: #fff;
  }
}
.header__hb-btn span:nth-of-type(1) {
  top: 0;
}
.header__hb-btn span:nth-of-type(2) {
  top: 1.2rem;
}
.header__hb-btn span:nth-of-type(3) {
  top: 2.4rem;
}
.header__hb-btn.active span:nth-of-type(1) {
  top: 1.2rem;
  transform: rotate(45deg);
}
.header__hb-btn.active span:nth-of-type(2) {
  display: none;
}
.header__hb-btn.active span:nth-of-type(3) {
  top: 1.2rem;
  transform: rotate(-45deg);
}
.header__nav {
  display: flex;
}
@media (max-width: 767px) {
  .header__nav {
    display: block;
    width: 100%;
    height: calc(100% - 6rem);
    background: #79A4D1;
    position: fixed;
    top: 6rem;
    left: 120%;
    padding: 5rem 3rem;
    transition: all 1s;
  }
}
@media (max-width: 767px) {
  .header__nav li:first-of-type {
    border-top: 0.1rem solid #fff;
  }
}
.header__nav li a {
  font-size: 1.6rem;
  font-size: min(1.4814814815vw, 16px);
  padding: 2rem;
  font-weight: 700;
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 767px) {
  .header__nav li a {
    padding: 0;
    width: 100%;
    height: 5rem;
    /* background: #fff; */
    display: flex;
    align-items: center;
    padding: 0 1rem;
    border-bottom: 0.1rem solid #fff;
    font-size: 1.6rem;
    color: #fff;
  }
}
.header__nav li a::before {
  content: "";
  width: calc(100% - 2rem);
  height: 0.4rem;
  background: #333;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  border-radius: 0.2rem;
  transform: scaleX(0);
  transition: all 0.4s;
  transform-origin: left center;
}
.header__nav li a:hover::before {
  transform: scaleX(1);
}
.header__nav.active {
  left: 0;
}
.header__contact {
  width: 12rem;
  height: 100%;
  background: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  transition: all 0.4s;
}
.header__contact:hover {
  background: #377bc3;
}
@media (max-width: 767px) {
  .header__contact {
    display: none;
  }
}

.f-header {
  color: rgb(253, 193, 124);
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .header_inner {
    height: auto;
  }
}
@media (min-width: 768px) {
  .header_inner {
    display: none;
  }
}
.header_inner h1 {
  width: 50px;
}
@media (max-width: 767px) {
  .header_inner h1 {
    width: 50px;
    margin-left: 1rem;
  }
}

.hamburger-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 6rem;
  background-color: #fff;
  cursor: pointer;
  z-index: 999999;
}

.hamburger-menu_line {
  display: block;
  width: 44%;
  height: 0.4rem;
  border-radius: 0.4rem;
  background-color: #080855;
  position: relative;
  transition: all 0.5s;
}

.hamburger-menu_line::before,
.hamburger-menu_line::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.4rem;
  border-radius: 0.4rem;
  background-color: #080855;
  position: absolute;
  transition: all 0.5s;
}

.hamburger-menu_line::before {
  transform: translateY(-10px);
}

.hamburger-menu_line::after {
  transform: translateY(10px);
}

/*ハンバーガーメニュークリック時×の表示*/
.hamburger-menu.open .hamburger-menu_line {
  background-color: transparent;
}

.hamburger-menu.open .hamburger-menu_line::before {
  transform: rotate(45deg);
}

.hamburger-menu.open .hamburger-menu_line::after {
  transform: rotate(-45deg);
}

.nav-sp {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: -30rem;
  width: 30rem;
  height: 100vh;
  padding: 3rem 2rem 5rem;
  background-color: #f0f0f0;
  text-align: left;
  transition: right 0.5s;
}
.nav-sp .nav-line, .nav-sp .nav-x, .nav-sp .nav-insta, .nav-sp .nav-17 {
  width: 60px;
}

.nav-sp li:hover {
  background: #000;
}

.nav-sp a {
  display: inline-block;
  padding: 3rem 0 1rem 2rem;
  text-decoration: none;
  color: #080855;
  font-weight: bold;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 767px) {
  .nav-sp a {
    font-size: min(4.2666666667vw, 16px);
  }
}

.nav-sp a:hover {
  color: #fff;
}

.nav-sp.open {
  right: 0;
}

/* top-sec01 ABOUT */
.top-sec01 {
  padding: 5rem 3rem 10rem;
}
@media (max-width: 767px) {
  .top-sec01 {
    padding: 3rem 3rem;
  }
}
.top-sec01 .pro-inner {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .top-sec01 .pro-inner {
    max-width: 400px;
  }
}
.top-sec01__title {
  margin-bottom: 3rem;
}
.top-sec01__block {
  width: 100%;
  max-width: 1000px;
  height: 30rem;
  height: min(27.7777777778vw, 300px);
  margin: 0 auto min(2.7777777778vw, 30px);
  display: flex;
  justify-content: center;
  -moz-column-gap: min(4.6296296296vw, 50px);
       column-gap: min(4.6296296296vw, 50px);
}
@media (max-width: 767px) {
  .top-sec01__block {
    height: 100%;
    flex-direction: column;
    row-gap: 2rem;
  }
}
.top-sec01__item {
  width: 35%;
  height: 100%;
  background: lightgray;
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .top-sec01__item {
    width: 90%;
    margin: 0 auto 2rem;
  }
}
.top-sec01__item h3 {
  font-size: min(2.037037037vw, 22px);
  padding: min(0.9259259259vw, 10px);
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .top-sec01__item h3 {
    font-size: min(4.2666666667vw, 16px);
    padding: 1rem;
  }
}
.top-sec01__item h3 .masa {
  font-size: 1.6rem;
}
.top-sec01__item h3 .ann {
  font-size: 1.6rem;
}
.top-sec01__item .image {
  width: 45%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .top-sec01__item .image {
    width: 60%;
  }
}
.top-sec01__btn {
  background: #377bc3;
  background: linear-gradient(#38affc, #0174e7);
  color: white;
  width: 60%;
  height: 4rem;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.5s;
}
@media (max-width: 767px) {
  .top-sec01__btn {
    width: 80%;
  }
}
.top-sec01__btn a {
  font-size: min(1.6666666667vw, 18px);
  font-weight: bold;
}
@media (max-width: 767px) {
  .top-sec01__btn a {
    font-size: min(4.2666666667vw, 16px);
  }
}
.top-sec01__btn:hover {
  background: #fff;
  color: #377bc3;
}
.top-sec01__text {
  width: 50%;
}
@media (max-width: 767px) {
  .top-sec01__text {
    width: 100%;
  }
}
.top-sec01__text dl {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.top-sec01__text dl dt {
  width: 11.1rem;
  text-align: right;
}
@media (max-width: 767px) {
  .top-sec01__text dl dt {
    width: 10.1rem;
  }
}
.top-sec01__text dl dd {
  flex: 1;
}
.top-sec01__link {
  margin-top: 6rem;
}
.top-sec01__block02 {
  display: none;
}
.top-sec01__block02 .card {
  display: flex;
  justify-content: space-around;
  max-width: 1000px;
}
.top-sec01__block02 .card .card-item {
  width: 40rem;
  height: 30rem;
  background: #c9c9c9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  --image-width: 20rem;
  cursor: pointer;
}
.top-sec01__block02 .card .card-item img {
  width: var(--image-width);
  aspect-ratio: 1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  margin-bottom: 1rem;
}
.top-sec01__block02 .card .card-item .item-inner h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
/* parallax-sec */
.parallax-sec {
  width: 100%;
  opacity: 0.6;
  /* height: calc(300 / 1366 * 100vw); */
  aspect-ratio: 1366/400;
  clip-path: inset(0);
}
@media (max-width: 767px) {
  .parallax-sec {
    width: 100%;
    aspect-ratio: 375/200;
    overflow: hidden;
  }
}
.parallax-sec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
  position: fixed;
  top: 0;
  left: 0;
}

/*あんちゃんNEWS、BLOG*/
#blog {
  padding-bottom: min(9.2592592593vw, 100px);
  background: #f2f2f2;
  position: relative;
  z-index: 1;
}
#blog .web-newstop-image {
  width: 100%;
  position: absolute;
}
#blog .web-newstop-image img {
  width: 100%;
}
#blog .content-area-blog {
  width: 100%;
  padding: min(7.4074074074vw, 80px) min(1.8518518519vw, 20px) min(2.7777777778vw, 30px);
  margin-bottom: min(2.7777777778vw, 30px);
}
#blog .content-area-blog .info-area {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: min(4.6296296296vw, 50px);
       column-gap: min(4.6296296296vw, 50px);
  margin-bottom: min(2.7777777778vw, 30px);
}
@media (max-width: 767px) {
  #blog .content-area-blog .info-area {
    margin-top: -20px;
    margin-bottom: 0;
  }
}
#blog .content-area-blog .info-area__left {
  width: 10rem;
}
#blog .content-area-blog .info-area__left img {
  width: 100%;
}
#blog .content-area-blog .info-area__right {
  width: min(9.2592592593vw, 100px);
}
#blog .content-area-blog .info-area__right img {
  width: 100%;
}
#blog .content-area-blog .c-blog-item {
  margin-bottom: min(1.8518518519vw, 20px);
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-blog-item {
    margin-bottom: min(8vw, 30px);
  }
}
#blog .content-area-blog .c-blog-block__flex:nth-last-of-type(1) .area01 {
  border-bottom: #333 solid 1px;
}
#blog .content-area-blog .c-blog-block__info-area {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: min(1.8518518519vw, 20px);
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-blog-block__info-area {
    width: 100%;
    max-width: 450px;
    padding: 10px;
  }
}
#blog .content-area-blog .c-blog-block__info-area .area-left {
  width: 40%;
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-blog-block__info-area .area-left {
    width: 35%;
  }
}
#blog .content-area-blog .c-blog-block__info-area .area-left p {
  width: min(20.3703703704vw, 220px);
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-blog-block__info-area .area-left p {
    width: min(26.6666666667vw, 100px);
  }
}
#blog .content-area-blog .c-blog-block__info-area .area-left p img {
  width: 100%;
  height: 50%;
  aspect-ratio: 8/5;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-blog-block__info-area .area-left p img {
    aspect-ratio: 8/6;
  }
}
#blog .content-area-blog .c-blog-block__info-area .area-right {
  flex: 1;
  padding: 1rem 0;
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-blog-block__info-area .area-right {
    padding: 0;
  }
}
#blog .content-area-blog .c-blog-block__info-area .area-right__title {
  font-size: min(1.6666666667vw, 18px);
  font-weight: bold;
  margin-bottom: min(1.8518518519vw, 20px);
  color: #333;
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-blog-block__info-area .area-right__title {
    font-size: min(3.2vw, 12px);
    padding: 0;
  }
}
#blog .content-area-blog .c-blog-block__info-area .area-right__date {
  font-size: min(1.4814814815vw, 16px);
  color: #333;
  margin-bottom: min(1.8518518519vw, 20px);
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-blog-block__info-area .area-right__date {
    font-size: 12px;
    line-height: 1;
  }
}
#blog .content-area-blog .c-blog-block__info-area .area-right__sentens {
  font-size: min(1.2962962963vw, 14px);
  line-height: 1.5;
  color: #333;
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-blog-block__info-area .area-right__sentens {
    font-size: 10px;
    line-height: 1;
  }
}
#blog .content-area-blog .c-blog-block__info-area:hover {
  background: #99ccff;
  transition: all 0.5s;
}
#blog .content-area-blog .c-blog-block .area01 {
  border-top: solid #666 1px;
}
#blog .content-area-blog .c-head-middle {
  text-align: center;
  font-size: min(3.7037037037vw, 40px);
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #000033;
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-head-middle {
    font-size: min(6.9333333333vw, 26px);
    margin-bottom: min(8vw, 30px);
  }
}
#blog .content-area-blog .blog-info-area {
  transform: translate(0, 6rem);
  transition: all 3000ms;
  transition-delay: 0.5s;
}
#blog .content-area-blog .blog-info-area-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
#blog .content-area-blog .c-blog-item-pc {
  margin-bottom: min(3.7037037037vw, 40px);
  transform: translate(0, 6rem);
  transition: all 3000ms;
  transition-delay: 1s;
}
@media (max-width: 767px) {
  #blog .content-area-blog .c-blog-item-pc {
    margin-bottom: min(10.6666666667vw, 40px);
  }
}
#blog .content-area-blog .c-blog-item-pc-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
#blog .content-area-blog .blog-anchor::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  left: 0;
  transform: translate(-50%);
  height: 0.2rem;
  background: #333;
  border-radius: 0.1rem;
  bottom: -3px;
  transform: scaleX(0);
  transition: all 0.4s;
  transform-origin: left center;
}
#blog .content-area-blog .blog-anchor:hover::after {
  transform: scaleX(1);
}
#blog .content-area-blog .blog-anchor:hover {
  font-weight: bold;
}
#blog .content-area-blog .swich input[type=checkbox] {
  visibility: hidden;
  position: absolute;
}
#blog .content-area-blog .swich input[type=checkbox]:checked + label::before {
  flex: 1 1 auto;
}
#blog .content-area-blog .swich label {
  display: flex;
  width: 8rem;
  height: 1rem;
  border: 2px solid #abc;
}
#blog .content-area-blog .swich::before {
  content: "";
  flex: 0;
}
#blog .content-area-blog .swich::after {
  content: "";
  display: block;
  width: 1.5rem;
  aspect-ratio: 1;
  background: #abc;
  border-radius: 50%;
}
#blog .web-news-image {
  width: 100%;
  position: absolute;
  bottom: -1%;
}
#blog .web-news-image img {
  width: 100%;
}
#blog .blog-click {
  display: block;
  width: min(24.0740740741vw, 260px);
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #blog .blog-click {
    width: 60%;
    margin-top: min(8vw, 30px);
    margin-bottom: min(5.3333333333vw, 20px);
  }
}
#blog .blog-click .blog-anchor {
  font-size: min(2.2222222222vw, 24px);
  color: #333;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  #blog .blog-click .blog-anchor {
    width: 100%;
    font-size: min(4.2666666667vw, 16px);
    justify-content: center;
    border-bottom: 1px;
  }
}
#blog .blog-click .blog-anchor .click-img {
  width: min(2.7777777778vw, 30px);
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  #blog .blog-click .blog-anchor .click-img {
    width: min(6.4vw, 24px);
    margin-right: min(2.6666666667vw, 10px);
  }
}
#blog .blog-click .blog-anchor .click-img img {
  width: 100%;
}
#blog .blog-click .blog-anchor .b-info {
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}
#blog .blog-click .blog-anchor::before {
  content: "";
  width: calc(100% - 2rem);
  height: 0.2rem;
  background: #333;
  position: absolute;
  bottom: 0rem;
  left: 1rem;
  border-radius: 0.2rem;
  transform: scaleX(0);
  transition: all 0.4s;
  transform-origin: left center;
}
#blog .blog-click .blog-anchor:hover::before {
  transform: scaleX(1);
}

/*#blog*/
/* top-sec02 */
#ACCESS .top-sec02 {
  padding: 4rem 3rem;
  background: #f2f2f2;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02 .access-title {
    margin-bottom: min(8vw, 30px);
  }
}
#ACCESS .top-sec02__title {
  margin-bottom: 3rem;
  margin-top: min(2.7777777778vw, 30px);
}
#ACCESS .top-sec02__items {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__items {
    flex-direction: column;
    row-gap: 3rem;
  }
}
#ACCESS .top-sec02__contents {
  position: relative;
  width: 100%;
  height: 100%;
}
#ACCESS .top-sec02__left {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto min(4.6296296296vw, 50px);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__left {
    margin-bottom: min(13.3333333333vw, 50px);
  }
}
#ACCESS .top-sec02__left .image-map-detail {
  width: min(27.7777777778vw, 300px);
  z-index: 999;
  position: absolute;
  left: 40%;
  transform: translateX(50%);
  border-radius: 10px;
  transition: all 1.5s ease-in-out;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__left .image-map-detail {
    width: min(32vw, 120px);
  }
}
#ACCESS .top-sec02__left .image-map-detail .detail-img {
  border: solid 3px #333;
  border-radius: 12px;
}
#ACCESS .top-sec02__left .image-map-detail .detail-img img {
  border-radius: 10px;
  width: 100%;
}
#ACCESS .top-sec02__left .image-map-detail p {
  width: 100%;
  text-align: right;
  font-size: min(1.2962962963vw, 14px);
}
#ACCESS .top-sec02__left .image-map-detail:hover {
  width: 80%;
  left: -29%;
}
#ACCESS .top-sec02__left .image-map-detail:hover .img {
  width: 100%;
}
#ACCESS .top-sec02__left .border {
  border: solid 1.5px #333;
  height: 120px;
  height: min(11.1111111111vw, 120px);
  transform: rotate(45deg);
  position: absolute;
  top: 305px;
  top: min(29.1666666667vw, 315px);
  left: 63%;
}
#ACCESS .top-sec02__left .map-main-mask {
  width: min(23.1481481481vw, 250px);
  height: min(23.1481481481vw, 250px);
  border-radius: 10px;
  opacity: 0.4;
  position: absolute;
  top: 300px;
  top: min(27.7777777778vw, 300px);
  left: 34.5%;
  border: solid 2px #333;
}
#ACCESS .top-sec02__left .image-map-main {
  width: 50%;
  position: absolute;
  top: 5%;
  left: 40%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__left .image-map-main {
    width: 80%;
    width: min(66.6666666667vw, 250px);
    left: 50%;
  }
}
#ACCESS .top-sec02__left .image-map-main .suc {
  width: 0rem;
  height: 0rem;
  border-style: solid;
  border-width: 20px 0 20px 100px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 50%;
  left: 83%;
  transform: rotate(135deg);
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__left .image-map-main .suc {
    border-width: 5px 0 5px 70px;
    top: 45%;
    left: 60%;
  }
}
#ACCESS .top-sec02__inner-left {
  width: 100%;
  height: 400px;
  height: min(37.037037037vw, 400px);
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__inner-left {
    height: 250px;
  }
}
#ACCESS .top-sec02__inner-left .google-contents {
  width: 60%;
  height: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__inner-left .google-contents {
    width: min(66.6666666667vw, 250px);
    height: 100%;
  }
}
#ACCESS .top-sec02__inner-left .goole-picture-left {
  width: 100%;
}
#ACCESS .top-sec02__inner-left .access-map {
  width: 100%;
  height: min(18.5185185185vw, 200px);
  height: 100%;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__inner-left .access-map {
    height: 100%;
  }
}
#ACCESS .top-sec02__inner-left .google-picture-left {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__inner-left .google-picture-left {
    height: 100%;
  }
}
#ACCESS .top-sec02__inner-right {
  display: flex;
  position: relative;
  height: 600px;
  height: min(55.5555555556vw, 600px);
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__inner-right {
    height: min(88vw, 330px);
  }
}
#ACCESS .top-sec02__right {
  width: min(74.0740740741vw, 800px);
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__right {
    width: 90%;
  }
}
#ACCESS .top-sec02__right .m-access-road, #ACCESS .top-sec02__right .m-access-bus {
  max-width: 1000px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin-bottom: min(5.5555555556vw, 60px);
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__right .m-access-road, #ACCESS .top-sec02__right .m-access-bus {
    display: block;
  }
}
#ACCESS .top-sec02__right .m-access-road__info, #ACCESS .top-sec02__right .m-access-bus__info {
  width: 50%;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__right .m-access-road__info, #ACCESS .top-sec02__right .m-access-bus__info {
    width: 100%;
  }
}
#ACCESS .top-sec02__right .m-access-road__info h3, #ACCESS .top-sec02__right .m-access-bus__info h3 {
  font-weight: bold;
  font-size: min(1.6666666667vw, 18px);
  color: #000033;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__right .m-access-road__info h3, #ACCESS .top-sec02__right .m-access-bus__info h3 {
    font-size: min(4.2666666667vw, 16px);
    margin-bottom: min(5.3333333333vw, 20px);
    text-align: center;
  }
}
#ACCESS .top-sec02__right .m-access-road__info p, #ACCESS .top-sec02__right .m-access-bus__info p {
  font-size: min(1.2962962963vw, 14px);
  line-height: 1.6;
  color: #333;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__right .m-access-road__info p, #ACCESS .top-sec02__right .m-access-bus__info p {
    font-size: min(3.2vw, 12px);
  }
}
#ACCESS .top-sec02__right .m-access-road .di, #ACCESS .top-sec02__right .m-access-bus .di {
  width: 50%;
  margin: 2rem auto 4rem;
  display: flex;
  align-items: center;
}
#ACCESS .top-sec02__right .m-access-road .di__inner p, #ACCESS .top-sec02__right .m-access-bus .di__inner p {
  font-size: 12px;
  font-size: min(1.1111111111vw, 12px);
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__right .m-access-road .di__inner p, #ACCESS .top-sec02__right .m-access-bus .di__inner p {
    font-size: min(3.2vw, 12px);
  }
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__right .m-access-road .di, #ACCESS .top-sec02__right .m-access-bus .di {
    width: 100%;
  }
}
#ACCESS .top-sec02__right .access-info {
  text-align: center;
}
#ACCESS .top-sec02__right .access-info .info-btn {
  width: 50%;
  height: min(4.6296296296vw, 50px);
  background: #377bc3;
  color: white; /* 文字色 */
  text-align: center; /* 文字のアライメント */
  text-decoration: none; /* 文字装飾 */
  display: inline-block; /* ボタンの表示方法 */
  font-size: 16px; /* フォントサイズ */
  font-weight: bold;
  font-family: Arial, sans-serif; /* フォント */
  margin: 4px 2px; /* 外側の余白 */
  cursor: pointer; /* カーソル */
  border: none; /* ボーダーなし */
  border-radius: 5px; /* ボタンの角丸 */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); /* 影 */
}
@media (max-width: 767px) {
  #ACCESS .top-sec02__right .access-info .info-btn {
    width: 100%;
    height: min(13.3333333333vw, 50px);
  }
}
#ACCESS .top-sec02__link {
  margin-top: min(5.5555555556vw, 60px);
}

/* top-sec03 */
.top-sec03 {
  padding: 8rem 3rem;
  background: #f2f2f2;
}
.top-sec03__title {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .top-sec03__title {
    margin-bottom: 4.3rem;
  }
}
.top-sec03 .top-sec03-item {
  width: 32%;
  padding: 2rem;
  background: #fff;
  margin: 0 1rem;
}
@media (max-width: 767px) {
  .top-sec03 .top-sec03-item {
    width: 100%;
    font-size: 1.6rem;
  }
}
.top-sec03 .top-sec03-item__image {
  margin-bottom: 1rem;
}
.top-sec03 .top-sec03-item__text .client {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.top-sec03__link {
  margin-top: 6rem;
}
.top-sec03 .slick-arrow {
  z-index: 10;
}
.top-sec03 .slick-arrow::before {
  color: #66f;
  font-size: 3rem;
  opacity: 1;
}
.top-sec03 .slick-next {
  z-index: 10;
}
@media (max-width: 767px) {
  .top-sec03 .slick-next {
    right: -1.5rem;
    opacity: 1;
  }
}

/* top-sec05 */
.top-sec05 {
  padding: 8rem 3rem;
}
.top-sec05__title {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .top-sec05__title {
    margin-bottom: 4.3rem;
  }
}
.top-sec05__tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.top-sec05 .top-sec05-tab {
  width: 29rem;
  height: 6rem;
  border: 0.2rem solid #66f;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #66f;
  font-weight: 700;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .top-sec05 .top-sec05-tab {
    width: 10rem;
    height: 4.5rem;
    font-size: 1.6rem;
  }
}
.top-sec05 .top-sec05-tab.current {
  background: #66f;
  color: #fff;
}
.top-sec05 .top-sec05-tab-content:not(:first-of-type) {
  display: none;
}
.top-sec05 .top-sec05-tab-content__items {
  border-top: 0.2rem solid #66f;
}
.top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item {
  padding: 2rem;
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  border-bottom: 0.2rem solid #66f;
}
@media (max-width: 767px) {
  .top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item {
    flex-direction: column;
    row-gap: 1.5rem;
  }
}
.top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item:nth-of-type(odd) {
  background: #f2f2f2;
}
.top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__image {
  width: 24rem;
  aspect-ratio: 240/180;
}
@media (max-width: 767px) {
  .top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__image {
    width: 100%;
  }
}
.top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__content {
  flex: 1;
}
.top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__category {
  margin-bottom: 1.5rem;
}
.top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__category span {
  width: 10.4rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media (max-width: 767px) {
  .top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__category span {
    font-size: 1.6rem;
  }
}
.top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__category span.news {
  background: #66f;
}
.top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__category span.blog {
  background: #f66;
}
.top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__date {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__date {
    font-size: 1.6rem;
  }
}
.top-sec05 .top-sec05-tab-content .top-sec05-tab-content-item__title {
  font-size: 2rem;
  font-weight: 700;
}
.top-sec05 .top-sec05-tab-content__link {
  margin-top: 6rem;
}

/* top-sec04 */
.top-sec04 {
  padding: 8rem 3rem;
  background: #ccc;
  background-image: url(../img/contact-bg.jpg);
  background-size: cover;
  position: relative;
}
@media (max-width: 767px) {
  .top-sec04 {
    background-image: url(../img/contact-bg-sp.jpg);
  }
}
.top-sec04::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.top-sec04 .inner {
  position: relative;
}
.top-sec04__title {
  margin-bottom: 5rem;
}
.top-sec04__please {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .top-sec04__please {
    font-size: 1.8rem;
  }
}
.top-sec04 .top-sec04-item {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.3rem;
       column-gap: 1.3rem;
}
@media (max-width: 767px) {
  .top-sec04 .top-sec04-item {
    -moz-column-gap: 0.55rem;
         column-gap: 0.55rem;
  }
}
@media (min-width: 768px) {
  .top-sec04 .top-sec04-item:first-of-type {
    pointer-events: none;
  }
}
.top-sec04 .top-sec04-item:nth-of-type(2) {
  margin-top: 1rem;
}
.top-sec04 .top-sec04-item__icon {
  width: 4rem;
}
@media (max-width: 767px) {
  .top-sec04 .top-sec04-item__icon {
    width: 2.3rem;
  }
}
.top-sec04 .top-sec04-item__icon svg {
  width: 100%;
  fill: #66f;
}
.top-sec04 .top-sec04-item__text {
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .top-sec04 .top-sec04-item__text {
    font-size: 3rem;
  }
}
.top-sec04 .top-sec04-item:hover .top-sec04-item__text {
  color: #66f;
}

#about-us .about-us-inner__back .about-us-image img {
  opacity: 0.6;
}

#works {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
#works .works-inner {
  padding: 4rem 2rem;
}
#works .works-inner__title p {
  font-size: 2.4rem;
}
#works .works-inner .works-an-page {
  margin: 5rem;
}
#works .works-inner .works-an-page .works-up {
  width: 100%;
  margin-bottom: 5rem;
}
#works .works-inner .works-an-page .works-up .works-an-up {
  width: 40%;
  height: 20rem;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(216, 184, 248, 0.7);
  border-radius: 2rem;
  transition: 0.5s;
  box-shadow: 4px 4px rgba(51, 51, 51, 0.6);
}
#works .works-inner .works-an-page .works-up .works-an-up a .contWorks-inner__image {
  width: 20%;
  margin: 0 auto 2rem;
}
#works .works-inner .works-an-page .works-up .works-an-up a .contWorks-inner__image img {
  width: 100%;
  border-radius: 1rem;
}
#works .works-inner .works-an-page .works-up .works-an-up a .contWorks-inner__link h2 {
  text-align: center;
}
#works .works-inner .works-an-page .works-up .works-an-up a .contWorks-inner__link h2 .big-title {
  font-size: 5rem;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: rgb(255, 6, 139);
  line-height: 1;
}
#works .works-inner .works-an-page .works-up .works-an-up a .contWorks-inner__link h2 .subtitle {
  font-size: 1.6rem;
}
#works .works-inner .works-an-page .works-up .works-an-up:hover {
  background: rgb(216, 184, 248);
  box-shadow: 0 0;
  transform: translate(4px, 4px);
}
#works .works-inner .works-an-page .works-down {
  display: flex;
}
#works .works-inner .works-an-page .works-down .works-an-pageleft {
  width: 40%;
  height: 20rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 2rem;
  background: #f4b9c5;
  transition: 0.5s;
  box-shadow: 4px 4px rgba(51, 51, 51, 0.6);
}
#works .works-inner .works-an-page .works-down .works-an-pageleft .contents-inner__image {
  width: 50%;
  margin: 0 auto 2rem;
}
#works .works-inner .works-an-page .works-down .works-an-pageleft .contents-inner__link h2 {
  text-align: center;
}
#works .works-inner .works-an-page .works-down .works-an-pageleft .contents-inner__link h2 .big-title {
  font-size: 4rem;
  font-weight: bold;
}
#works .works-inner .works-an-page .works-down .works-an-pageleft:hover {
  box-shadow: 0 0;
  transform: translate(4px, 4px);
}
#works .works-inner .works-an-page .works-down .works-an-pageright {
  width: 40%;
  height: 20rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 2rem;
  background: #f2f2f2;
  transition: 0.5s;
  box-shadow: 4px 4px rgba(51, 51, 51, 0.6);
}
#works .works-inner .works-an-page .works-down .works-an-pageright a .contents-inner__link h2 {
  text-align: center;
}
#works .works-inner .works-an-page .works-down .works-an-pageright a .contents-inner__link .subtitle {
  text-align: center;
}
#works .works-inner .works-an-page .works-down .works-an-pageright a .contents-inner__link .subtitle .big-title {
  font-size: 4.6rem;
  font-weight: bold;
}
#works .works-inner .works-an-page .works-down .works-an-pageright a .contents-inner__link .subtitle .reg-title {
  font-size: 3rem;
}
#works .works-inner .works-an-page .works-down .works-an-pageright:hover {
  background: rgb(216, 184, 248);
  box-shadow: 0 0;
  transform: translate(4px, 4px);
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes animationZoom {
  100% {
    transform: scale(1.1);
  }
}
#contact .contact-inner {
  padding: 2rem;
  padding: 4rem 3rem;
  width: 100%;
}
#contact .contact-inner__ttl {
  height: 9rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  #contact .contact-inner__ttl {
    height: 4rem;
  }
}
#contact .contact-inner__ttl h1 {
  font-size: min(4.6296296296vw, 50px);
  font-weight: bold;
  text-align: center;
  color: #000033;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  #contact .contact-inner__ttl h1 {
    font-size: min(9.0666666667vw, 34px);
  }
}
#contact .contact-inner__info {
  width: 40%;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  #contact .contact-inner__info {
    width: 60%;
  }
}
#contact .contact-inner__info h2 {
  text-align: center;
  font-size: min(2.2222222222vw, 24px);
  font-weight: bold;
  color: #000033;
  margin-right: 1rem;
  margin-left: 1rem;
  text-wrap: nowrap;
}
@media (max-width: 767px) {
  #contact .contact-inner__info h2 {
    font-size: min(4.2666666667vw, 16px);
  }
}
#contact .contact-inner__info svg {
  width: 2rem;
  height: 2rem;
  fill: #333;
  transform: rotate(90deg);
}
#contact .contact-inner__tel {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact .contact-inner__tel .tel-icon {
  width: 2rem;
  height: 2rem;
}
#contact .contact-inner__tel .tel-item {
  display: inline-block;
  text-align: center;
  font-size: min(3.3333333333vw, 36px);
  color: #016eac;
  font-weight: bold;
  text-wrap: nowrap;
}
@media (min-width: 768px) {
  #contact .contact-inner__tel .tel-item {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  #contact .contact-inner__tel .tel-item {
    font-size: min(9.6vw, 36px);
  }
}
#contact .contact-inner__sns {
  margin-bottom: 5rem;
}
#contact .contact-inner__sns .sns-here {
  margin-bottom: 2rem;
}
#contact .contact-inner__sns .sns-inner {
  display: flex;
  justify-content: center;
  -moz-column-gap: min(7.4074074074vw, 80px);
       column-gap: min(7.4074074074vw, 80px);
}
#contact .contact-inner__sns .sns-inner__x {
  width: 50px;
}
@media (max-width: 767px) {
  #contact .contact-inner__sns .sns-inner__x {
    width: 40px;
  }
}
#contact .contact-inner__sns .sns-inner__inst {
  width: 50px;
}
@media (max-width: 767px) {
  #contact .contact-inner__sns .sns-inner__inst {
    width: 40px;
  }
}
#contact .contact-inner__sns .sns-inner__line {
  width: 50px;
}
@media (max-width: 767px) {
  #contact .contact-inner__sns .sns-inner__line {
    width: 40px;
  }
}
#contact .contact-inner__sns .sns-inner__17 {
  width: 50px;
}
@media (max-width: 767px) {
  #contact .contact-inner__sns .sns-inner__17 {
    width: 40px;
  }
}
#contact .contact-inner *,
#contact .contact-inner *::before,
#contact .contact-inner *::after {
  box-sizing: border-box;
}
#contact .contact-inner form {
  padding: 20px 20px;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #contact .contact-inner form {
    width: 100%;
    padding-top: 0;
  }
}
#contact .contact-inner__items {
  margin-bottom: min(3.7037037037vw, 40px);
}
#contact .contact-inner .contact-contents__item, #contact .contact-inner .contact-contents__item--required {
  display: flex;
  margin-top: min(4.6296296296vw, 50px);
}
#contact .contact-inner__form-info {
  width: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  #contact .contact-inner__form-info {
    width: 100%;
  }
}
#contact .contact-inner__form-info .icon-mail {
  transform: rotate(0);
  margin-left: 1rem;
}
#contact .contact-inner__form-info h2 {
  font-size: min(2.2222222222vw, 24px);
  font-weight: bold;
  text-align: center;
  color: #000033;
  margin-right: 1rem;
  text-wrap: nowrap;
  line-height: 1;
}
@media (max-width: 767px) {
  #contact .contact-inner__form-info h2 {
    font-size: min(4.2666666667vw, 16px);
  }
}
#contact .contact-inner__form-info img {
  width: 2rem;
}
#contact .contact-inner__form-info svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: #333;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  #contact .contact-inner__form-info svg {
    display: flex;
    margin: 0 auto;
  }
}
#contact .contact-inner .contact-contents-first {
  margin-top: 0;
}
#contact .contact-inner .contact-contents__item--required .contact-contents__item-title label {
  position: relative;
  font-size: min(1.4814814815vw, 16px);
}
@media (max-width: 767px) {
  #contact .contact-inner .contact-contents__item--required .contact-contents__item-title label {
    font-size: min(3.7333333333vw, 14px);
  }
}
#contact .contact-inner .contact-contents__item--required .contact-contents__item-title label::after {
  position: absolute;
  content: "必須";
  top: 30px;
  left: 0;
  font-size: min(1.1111111111vw, 12px);
  background: #f4b9c5;
  color: #ffffff;
  width: 50px;
  width: min(4.6296296296vw, 50px);
  height: min(1.8518518519vw, 20px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  #contact .contact-inner .contact-contents__item--required .contact-contents__item-title label::after {
    font-size: min(3.2vw, 12px);
  }
}
#contact .contact-inner .contact-contents__item--required:nth-of-type(4) label::after {
  display: none;
}
#contact .contact-inner .contact-contents__item-title {
  width: 160px;
}
#contact .contact-inner .contact-contents__item-title label {
  width: auto;
}
#contact .contact-inner .contact-contents__item-input--text {
  width: calc(100% - 160px);
  margin: 0;
}
#contact .contact-inner .contact-contents__item-textarea {
  width: calc(100% - 160px);
  margin: 0;
}
@media (max-width: 767px) {
  #contact .contact-inner .contact-contents__item-textarea {
    margin-top: 10px !important;
  }
}
#contact .contact-inner .contact-contents__submit {
  margin: 40px auto 0;
  text-align: center;
}
#contact .contact-inner input[type=text], #contact .contact-inner input[type=email], #contact .contact-inner input[type=tel] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1.4rem;
  padding: 0.4em 0.8em;
  width: 75%;
}
@media (max-width: 767px) {
  #contact .contact-inner input[type=text], #contact .contact-inner input[type=email], #contact .contact-inner input[type=tel] {
    height: min(10.6666666667vw, 40px);
  }
}
#contact .contact-inner input[type=text]:focus, #contact .contact-inner input[type=text]:hover, #contact .contact-inner input[type=email]:focus, #contact .contact-inner input[type=email]:hover, #contact .contact-inner input[type=tel]:focus, #contact .contact-inner input[type=tel]:hover {
  border: 1px solid #f4b9c5;
  box-shadow: none;
  outline: none;
}
#contact .contact-inner textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1.4rem;
  height: 300px;
  padding: 0.4em 0.8em;
  width: 100%;
}
@media (max-width: 767px) {
  #contact .contact-inner textarea {
    width: 100%;
  }
}
#contact .contact-inner textarea:focus, #contact .contact-inner textarea:hover {
  border: 1px solid #f4b9c5;
  box-shadow: none;
  outline: none;
}
#contact .contact-inner input.contact-contents__btn {
  width: 60%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
  background: #377bc3;
  background: linear-gradient(#38affc, #0174e7);
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-size: min(1.6666666667vw, 18px);
  font-weight: bold;
  padding: 1rem 2rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.5s;
  cursor: pointer;
  min-width: 240px;
  font-family: inherit;
  border: 0;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  #contact .contact-inner input.contact-contents__btn {
    width: 100%;
    height: min(13.3333333333vw, 50px);
    font-size: min(4.8vw, 18px);
  }
}
#contact .contact-inner input.contact-contents__btn:hover, #contact .contact-inner input.contact-contents__btn:focus {
  outline: none;
  color: #ffffff;
  background: linear-gradient(#38affc, #0174e7);
}
#contact .contact-inner input.contact-contents__btn::-moz-focus-inner {
  border: none;
  padding: 0;
}
#contact .contact-inner input.contact-contents__btn:hover {
  color: #377bc3;
  background: #fff;
}
#contact .contact-inner .home-btn {
  text-align: center;
  padding-bottom: 3rem;
}
#contact .contact-inner .home-btn .home {
  font-size: 1.8rem;
  color: #565656;
  border-bottom: solid 1px #565656;
}
#contact .contact-inner .screen-reader-response {
  display: none;
}
#contact .contact-inner .wpcf7-response-output {
  text-align: center;
  font-size: 1.4rem;
  color: red;
}
#contact .contact-inner .wpcf7-not-valid-tip {
  color: red;
}
@media (max-width: 767px) {
  #contact .contact-inner .contact-contents__items {
    margin-top: 20px;
  }
  #contact .contact-inner .contact-contents__item, #contact .contact-inner .contact-contents__item--required {
    display: block;
  }
  #contact .contact-inner .contact-contents__item--required .contact-contents__item-title label::after {
    top: 50%;
    left: auto;
    right: -50px;
    transform: translateY(-50%);
    width: 3rem;
    width: min(8vw, 30px);
    height: 2rem;
    height: min(5.3333333333vw, 20px);
  }
  #contact .contact-inner .contact-contents__item-input--text {
    margin-top: 20px;
    width: 100%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  #contact .contact-inner .contact-contents__item-input--text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  #contact .contact-inner .contact-contents__item-textarea {
    margin-top: 20px;
    width: 100%;
  }
  #contact .contact-inner input[type=text], #contact .contact-inner input[type=email] {
    width: 100%;
  }
}


.a-main {
  width: 100%;
  height: 100vh;
  position: relative;
}
.a-main .sp-fv {
  width: 100%;
  height: 100%;
}
.a-main .sp-fv img {
  width: 100%;
  height: 200vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.a-main .a-main-inner {
  width: 100%;
  height: 200vh;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(225, 225, 225, 0.5);
  display: flex;
  flex-direction: column;
  padding: 0 4.1666666667vw;
  padding-bottom: min(4.1666666667vw, 50px);
}
@media (max-width: 767px) {
  .a-main .a-main-inner {
    padding: 0 5.3333333333vw;
    padding-bottom: min(8vw, 30px);
  }
}
.a-main .a-main-inner h2 {
  font-size: min(3vw, 36px);
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  color: #fff;
  color: rgb(99, 4, 4);
  letter-spacing: 0.1em;
  padding-top: 9rem;
}
@media (max-width: 767px) {
  .a-main .a-main-inner h2 {
    font-size: 2rem;
  }
}
.a-main .a-main-inner .s-info-inner {
  margin: 0 auto;
  margin-top: min(5vw, 60px);
  width: 100%;
  max-width: 1080px;
}
@media (max-width: 767px) {
  .a-main .a-main-inner .s-info-inner {
    margin-top: min(8vw, 40px);
  }
}
.a-main .a-main-inner .s-info-inner p {
  font-size: 1.8rem;
  font-size: min(1.5vw, 18px);
  line-height: 1.5;
  background: rgba(252, 146, 119, 0.9);
  border: 0.2rem dashed #f7f9cc;
  box-shadow: 0 0 0 0.7rem rgba(254, 170, 149, 0.7);
  border-radius: 1rem;
  color: #fff;
  padding: 2rem 2rem;
  margin-bottom: 4rem;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .a-main .a-main-inner .s-info-inner p {
    font-size: min(3.2vw, 16px);
    padding: min(2.6666666667vw, 13.3333333333px);
  }
}
.a-main .a-main-inner .s-info-inner .an-intro {
  margin-bottom: min(1.8518518519vw, 20px);
}
.a-main .a-main-inner .s-info-inner .an-intro__left {
  text-align: center;
}
.a-main .a-main-inner .s-info-inner .an-intro__left h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.a-main .a-main-inner .s-info-inner .an-intro__right {
  width: 50%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .a-main .a-main-inner .s-info-inner .an-intro__right {
    width: 100%;
    margin-bottom: min(5.3333333333vw, 20px);
  }
}
.a-main .a-main-inner .s-info-inner .an-intro__right img {
  width: 40%;
  border-radius: 50%;
}
.a-main .a-main-inner .s-info-inner .an-intro__reborn {
  margin-bottom: min(0.462962963vw, 5px);
}
.a-main .a-main-inner .s-info-inner .an-intro__reborn .btn-reborn .contWorks-inner {
  width: min(27.7777777778vw, 300px);
  background-color: rgba(255, 192, 203, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 10px;
  padding: min(0.9259259259vw, 10px);
  -moz-column-gap: min(0.9259259259vw, 10px);
       column-gap: min(0.9259259259vw, 10px);
  box-shadow: #666 2px 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 767px) {
  .a-main .a-main-inner .s-info-inner .an-intro__reborn .btn-reborn .contWorks-inner {
    width: 90%;
    height: min(13.3333333333vw, 50px);
    -moz-column-gap: min(2.6666666667vw, 10px);
         column-gap: min(2.6666666667vw, 10px);
  }
}
.a-main .a-main-inner .s-info-inner .an-intro__reborn .btn-reborn .contWorks-inner:hover {
  transform: scale(1.05);
  background-color: rgb(255, 192, 203);
}
.a-main .a-main-inner .s-info-inner .an-intro__reborn .btn-reborn .contWorks-inner__image {
  width: min(4.6296296296vw, 50px);
}
@media (max-width: 767px) {
  .a-main .a-main-inner .s-info-inner .an-intro__reborn .btn-reborn .contWorks-inner__image {
    width: min(9.3333333333vw, 35px);
  }
}
.a-main .a-main-inner .s-info-inner .an-intro__reborn .btn-reborn .contWorks-inner__link .link-h {
  padding: 0;
  font-size: min(1.2962962963vw, 14px);
  line-height: 1;
}
@media (max-width: 767px) {
  .a-main .a-main-inner .s-info-inner .an-intro__reborn .btn-reborn .contWorks-inner__link .link-h {
    font-size: min(3.7333333333vw, 14px);
  }
}
.a-main .a-main-inner .s-info-inner .an-intro__reborn .btn-reborn .contWorks-inner__link .big-title {
  font-size: min(1.8518518519vw, 20px);
  font-weight: bold;
  color: rgb(255, 6, 139);
}
@media (max-width: 767px) {
  .a-main .a-main-inner .s-info-inner .an-intro__reborn .btn-reborn .contWorks-inner__link .big-title {
    font-size: min(5.3333333333vw, 20px);
  }
}
.a-main .a-main-inner .s-info-inner .an-intro__site {
  text-align: center;
}
.a-main .a-main-inner .s-info-inner .an-intro__site .i-site {
  font-size: 14px;
}

@media (max-width: 767px) {
  .for-home {
    top: min(242.6666666667vw, 910px);
  }
}
.for-home a {
  display: block;
  text-align: center;
  font-size: min(1.6666666667vw, 18px);
  color: rgb(99, 4, 4);
  padding-top: min(2.7777777778vw, 30px);
  width: min(10.1851851852vw, 110px);
  margin: 0 auto;
  border-bottom: solid 1px rgb(99, 4, 4);
}
@media (max-width: 767px) {
  .for-home a {
    font-size: min(4.2666666667vw, 16px);
    width: min(29.3333333333vw, 110px);
    padding-top: min(8vw, 30px);
  }
}
body main .masa-style {
  padding: 2rem;
}
body main .masa-style__name {
  margin: min(4.6296296296vw, 50px) auto min(2.7777777778vw, 30px);
}
@media (max-width: 767px) {
  body main .masa-style__name {
    margin-top: min(8vw, 30px);
    margin-bottom: min(8vw, 30px);
  }
}
body main .masa-style__name h1 {
  font-size: min(3.7037037037vw, 40px);
  font-weight: bold;
  text-align: center;
  color: #000033;
}
@media (max-width: 767px) {
  body main .masa-style__name h1 {
    font-size: min(8vw, 30px);
  }
}
body main .masa-style__image {
  width: min(27.7777777778vw, 300px);
  margin: min(2.7777777778vw, 30px) auto;
}
@media (max-width: 767px) {
  body main .masa-style__image {
    width: min(53.3333333333vw, 200px);
    margin-bottom: min(8vw, 30px);
  }
}
body main .masa-style__image img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
body main .masa-style__sent {
  width: 55%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  body main .masa-style__sent {
    width: 90%;
    max-width: 320px;
    margin-bottom: min(5.3333333333vw, 20px);
  }
}
body main .masa-style__sent p {
  font-size: min(1.6666666667vw, 18px);
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  body main .masa-style__sent p {
    font-size: min(3.2vw, 12px);
    font-weight: 400;
    margin: 0 auto;
  }
}
body main .masa-style__sent .history {
  font-size: min(1.2962962963vw, 14px);
  margin: 0rem auto min(1.8518518519vw, 20px);
}
@media (max-width: 767px) {
  body main .masa-style__sent .history {
    font-size: min(2.9333333333vw, 11px);
  }
}
body main .masa-style__home {
  text-align: center;
  margin: min(1.8518518519vw, 20px) auto min(2.7777777778vw, 30px);
}
body main .masa-style__home a {
  font-size: min(1.8518518519vw, 20px);
  border-bottom: #333 solid 1px;
}

.access-title__add ul {
  width: min(46.2962962963vw, 500px);
  margin: 0 auto 2rem;
}
.access-title__add ul li {
  font-size: min(1.8518518519vw, 20px);
  line-height: 1.4;
  font-weight: bold;
}

.common-button {
  width: 26rem;
  height: 6rem;
  border: 0.2rem solid #f66;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  color: #f66;
  position: relative;
  font-weight: 700;
}
@media (max-width: 767px) {
  .common-button {
    width: 22rem;
  }
}
.common-button .arrow {
  display: block;
  width: 9rem;
  height: 0.2rem;
  background: #f66;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4.5rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .common-button .arrow {
    width: 8rem;
    right: -4rem;
  }
}
.common-button .arrow::before {
  content: "";
  width: 1.5rem;
  height: 0.2rem;
  background: #f66;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(30deg);
  transform-origin: right center;
}
.common-button:hover .arrow {
  right: -6.6rem;
}

.common-button-g {
  width: 26rem;
  height: 6rem;
  border: 0.2rem solid #f66;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: linear-gradient(90deg, #f66 0%, #66f 50%, #f66 100%);
  background-size: 200% 100%;
  background-position: 0 100%;
  color: #fff;
  position: relative;
  font-weight: 700;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .common-button-g {
    width: 22rem;
  }
}
.common-button-g:hover {
  background-position: 100% 100%;
}

/* 共通タイトル */
.common-sec-title {
  text-align: center;
  margin-top: min(1.8518518519vw, 20px);
}
.common-sec-title h2 {
  font-size: min(3.7037037037vw, 40px);
  font-weight: bold;
  color: #000033;
  display: inline-block;
  position: relative;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .common-sec-title h2 {
    font-size: min(8.5333333333vw, 32px);
  }
}

.main .music {
  margin-top: 8rem;
}
.main .music__info {
  text-align: center;
}
.main .music__info .info-chi p {
  font-size: 1.8rem;
}
.main .music__info h2 {
  font-size: 2rem;
  font-weight: bold;
}
.main .music__info h2 .m-logo {
  font-size: 5rem;
  font-weight: bold;
  color: #f66;
}
.main .music__contents {
  width: 100%;
}
.main .music__contents .music-image {
  width: 50%;
}

main .policy {
  width: 80%;
  margin: 0 auto 4rem;
  padding: 2rem;
}
@media (max-width: 767px) {
  main .policy {
    width: 90%;
  }
}
main .policy .policy-info {
  padding-top: 3rem;
  padding-bottom: 2rem;
}
main .policy .policy-info h1 {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  main .policy .policy-info h1 {
    font-size: min(5.8666666667vw, 22px);
  }
}
main .policy .policy-sent h2 {
  font-size: 1.6rem;
  text-align: center;
  padding-bottom: 2rem;
}
main .policy .policy-sent h3 {
  font-size: 16px;
  font-weight: bold;
}
main .policy .policy-sent p {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 5px;
}
main .policy .policy-sent ul {
  margin-bottom: 2rem;
}
main .policy .policy-sent ul li {
  margin-top: 1rem;
  font-size: 16px;
}
main .return {
  text-align: center;
}
main .return a {
  font-size: 1.8rem;
}

body .cookie-main {
  padding: 2rem;
}
body .cookie .cookie-inner {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
}
body .cookie__title {
  margin: 2rem auto 2rem;
}
body .cookie__title h1 {
  font-size: min(2.7777777778vw, 30px);
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  body .cookie__title h1 {
    font-size: 18px;
  }
}
body .cookie__first {
  margin-bottom: min(1.8518518519vw, 20px);
}
body .cookie__first h2 {
  font-size: 1.8rem;
  font-size: min(1.6666666667vw, 18px);
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  body .cookie__first h2 {
    font-size: 14px;
  }
}
body .cookie__first p {
  font-size: min(1.1111111111vw, 12px);
}
@media (max-width: 767px) {
  body .cookie__first p {
    font-size: min(3.2vw, 12px);
  }
}
body .cookie__what {
  margin-bottom: min(1.8518518519vw, 20px);
}
body .cookie__what h2 {
  font-size: 1.8rem;
  font-size: min(1.6666666667vw, 18px);
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  body .cookie__what h2 {
    font-size: 14px;
  }
}
body .cookie__what p {
  font-size: min(1.1111111111vw, 12px);
}
@media (max-width: 767px) {
  body .cookie__what p {
    font-size: min(3.2vw, 12px);
  }
}
body .cookie__kind {
  margin-bottom: min(1.8518518519vw, 20px);
}
body .cookie__kind h2 {
  font-size: 1.8rem;
  font-size: min(1.6666666667vw, 18px);
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  body .cookie__kind h2 {
    font-size: 14px;
  }
}
body .cookie__kind li {
  font-size: min(1.1111111111vw, 12px);
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  body .cookie__kind li {
    font-size: min(3.2vw, 12px);
  }
}
body .cookie__control {
  margin-bottom: min(1.8518518519vw, 20px);
}
body .cookie__control h2 {
  font-size: 1.8rem;
  font-size: min(1.6666666667vw, 18px);
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  body .cookie__control h2 {
    font-size: 14px;
  }
}
body .cookie__control p {
  font-size: min(1.1111111111vw, 12px);
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  body .cookie__control p {
    font-size: min(3.2vw, 12px);
  }
}
body .cookie__control li {
  font-size: min(1.1111111111vw, 12px);
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  body .cookie__control li {
    font-size: min(3.2vw, 12px);
    margin-bottom: 2rem;
  }
}
body .cookie__change {
  margin-bottom: min(1.8518518519vw, 20px);
}
body .cookie__change h2 {
  font-size: 1.8rem;
  font-size: min(1.6666666667vw, 18px);
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  body .cookie__change h2 {
    font-size: 14px;
  }
}
body .cookie__change p {
  font-size: min(1.1111111111vw, 12px);
}
@media (max-width: 767px) {
  body .cookie__change p {
    font-size: min(3.2vw, 12px);
    margin-bottom: 2rem;
  }
}
body .cookie__perma {
  margin-bottom: min(3.7037037037vw, 40px);
}
body .cookie__perma h2 {
  font-size: 1.8rem;
  font-size: min(1.6666666667vw, 18px);
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  body .cookie__perma h2 {
    font-size: 14px;
  }
}
body .cookie__perma p {
  font-size: min(1.1111111111vw, 12px);
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  body .cookie__perma p {
    font-size: 12px;
  }
}
body .cookie .blog-click {
  font-size: 2rem;
  text-align: center;
}/*# sourceMappingURL=style.css.map */